@charset "utf-8";
/* CSS Document */

:root {
  /* 基本カラー */
  --blue:   #0089D3;
  --yellow: #FBDC62;
  --green:  #0EAE51;
  --purple: #9733BE;
  --emerald:#33B0BE;
  --pink:   #E95B9C;
  --black:  #121212;
  --white:  #ffffff;
  --gray:   #cccccc;

  /* コンテンツカラー */
  --colorIct:     var(--blue);
  --colorAi:      var(--purple);
  --colorWeb:     var(--emerald);
  --colorGraphic: var(--pink);
  --colorMovie:   var(--green);

  /* あしらい用スクエア */
  --square1: url('data:image/svg+xml,<svg width="59" height="58" viewBox="0 0 59 58" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="17" y="15" width="42" height="43" fill="%23FBDC62"/><rect width="42" height="42" fill="%230089D3"/></svg>');
  --square2: url('data:image/svg+xml,<svg width="73" height="72" viewBox="0 0 73 72" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="36.8118" y="35.585" width="35.5847" height="36.8118" transform="rotate(90 36.8118 35.585)" fill="%23FBDC62"/><rect x="72.3965" width="35.5847" height="35.5847" transform="rotate(90 72.3965 0)" fill="%23E95B9C"/></svg>');
  --square3: url('data:image/svg+xml,<svg width="42" height="41" viewBox="0 0 42 41" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="42" width="41" height="42" transform="rotate(90 42 0)" fill="%23FBDC62"/></svg>');
  --square4: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="30" height="30" fill="%23E95B9C"/></svg>');
  --square5: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" fill="%230089D3"/></svg>');
  --square6: url('data:image/svg+xml,<svg width="119" height="119" viewBox="0 0 119 119" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="%23FBDC62"/><rect x="60" y="60" width="59" height="59" fill="%230089D3"/></svg>');
  --square7: url('data:image/svg+xml,<svg width="71" height="71" viewBox="0 0 71 71" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="35.7983" height="35.7983" fill="%23E95B9C"/><rect x="35.7983" y="35.7983" width="35.2017" height="35.2017" fill="%23FBDC62"/></svg>');
  --square8: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="30" height="30" fill="%23ffffff"/></svg>');
}
.colorBlue{ color: var(--blue);}
.colorPink{ color: var(--pink);}

.deco1,.deco2,.deco3,.deco4,.deco5,.deco6,.deco7,.deco8{
	display: block;
	position: absolute;	
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}
.deco1{	width: 59px;	height: 59px;	background-image: var(--square1);}
.deco2{	width: 73px;	height: 72px;	background-image: var(--square2);}
.deco3{	width: 42px;	height: 42px;	background-image: var(--square3);}
.deco4{	width: 30px;	height: 30px;	background-image: var(--square4);}
.deco5{	width: 24px;	height: 24px;	background-image: var(--square5);}
.deco6{	width: 119px;	height: 119px;	background-image: var(--square6);}
.deco7{	width: 71px;	height: 71px;	background-image: var(--square7);}
.deco8{	width: 73px;	height: 72px;	background-image: var(--square8);}


body{
	color:#212121;
    font-size: 62.5% ;   /* 1.0em = 10px  */
	font-family:"Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/* background:url(../img/bg.gif); */
}
a{
	color:#212121;
	text-decoration:none;
}
a:hover{
	color:#95684d;
}
a[href="#"]:hover{
	color:var(--blue);
}
a.overwhite{
    display:block;
}

body#subpage #primary a[href$=".pdf"]{
	padding-left:30px;
	background:url(../img/imgPDF24x24.png) no-repeat 0 0;
	text-decoration:underline;
	padding-top:3px;
}

a.overwhite:hover,
a.overwhite:hover img,
a.overwhite:hover li{
    cursor:pointer;
	filter: alpha(opacity=60);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=60)";  /* ie 8 */
	-moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.6;              /* Safari 1.x */
	opacity:0.6;
	zoom:1;

	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/*
a[href="#"],
a[href="#"].overwhite:hover{cursor: default;}

a[href="#"].overwhite:hover,
a[href="#"].overwhite:hover img,
a[href="#"].overwhite:hover li{
	filter: alpha(opacity=100); 
	-ms-filter: "alpha(opacity=100)";
	-moz-opacity:1;
	-khtml-opacity:1;
	opacity:1;
}*/

.aligncenter{	text-align:center;}
.alignleft{		text-align:left;}
.alignright{	text-align:right;}
img.aligncenter{ display:block;margin:5px auto;}
img.alignleft{	float:left;}
img.alignright{	float:right;}

.bold{ font-weight:bold;}

.float_left{	float:left;}
.float_right{	float:right;}

.clearfloat{	clear:both;}

.xxlarge{	font-size:1.8em;}
.xlarge{	font-size:1.5em;}
.large{		font-size:1.3em;}
.small{		font-size:0.75em;}
.xsmall{	font-size:0.6em;}
.xxsmall{	font-size:0.5em;}

.radius5{
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	behavior: url(./js/PIE.htc);
}

.shadow{
	box-shadow: #ccc 0px 0px 3px;
}
.noshadow{
	box-shadow:none !important;
}

br.spview{
    display: none;
}


/********************************************************/
.boxHalf{
	width: 50%;
}

.boxTwo{	width: 48.5%;}

.boxThree > li{
	float: left;
	width:32%;
	margin-right: 2%;
}
.boxThree > li:nth-child(3n){
	margin-right: 0;
}

.contentsbox{
	width:100%;
	max-width:1200px;
	margin:0 auto;
    position: relative;

	&.thin{
		max-width: 1000px;
	}
	&.wide{
		max-width: 1920px;
	}
}

.btnLink{
	color: #888;
	text-align: center;
	letter-spacing: 0.15em;
	padding: 25px;
	width: 330px;
	border-radius: 60px;
	font-size: 18px;
	font-weight: bold;
	display: block;
	position: relative;
	margin: 40px auto;

	&::before{
		content: "";
		display: block;
		width: 6px;
		height: 6px;
		transform: rotate(45deg);
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		position: absolute;
		right: 38px;
		top: 31px;
		z-index: 1;
	}

	&::after{
		content: "";
		display: block;
		width: 30px;
		height: 30px;
		background-color: #888;
		border-radius: 30px;
		position: absolute;
		right: 25px;
		top: 20px;
	}

	&.white{
		color: var(--blue);
		background-color: var(--white);
		&:after{
			background-color: var(--blue);
		}
	}

	&.blue{
		color: var(--white);
		background-color: var(--blue);
		&:after{
			background-color: var(--white);
		}
		&::before{
			border-top-color: var(--blue);
			border-right-color: var(--blue);
		}
		&:hover{
			color: var(--white);
		}
	}
}

#btnGototop{
	width: 60px;
	height: 60px;
	background-color: var(--blue);
	border-radius: 30px;
	position: absolute;
	transition: all 0.3s;
	right: 20px;

	&::before{
		content: "";
		display: block;
		width: 9px;
        height: 9px;
        transform: rotate(-45deg);
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        position: absolute;
        right: 25px;
        top: 26px;
		z-index: 1;
	}

	&:hover{
		background-color: var(--pink);
	}

}

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

header{
	position: relative;
	width: 100%;
	z-index: 20;
	padding: 15px 0 10px;

	.home &{	
		position: fixed;
	}
}

header > .contentsbox{
	position: relative;
	overflow: visible;
	display: flex;
    justify-content: space-between;
}

#logo{	
	display: block;
    width: fit-content;
	position: relative;
}
img#imgLogo {
	width: 153px;
    margin-bottom: 10px;
	margin-left: 20px;

}
#btnHeaderContact {
    padding: 0.5em 1.5em;
    border-radius: 2em;
    display: inline-block;
    background: var(--pink);
    color: #fff;
    letter-spacing: 2px;
    font-size: 1.8em;
	margin-left: 30px;

	&::after{
		content: "";
		display: inline-block;
		width: 18px;
		height: 15px;	
		background: url(../img/icoMailWhite.svg) no-repeat;
		background-size: contain;
		margin-left: 0.5em;
	}
}
/*
#spContactButtons{
	position: fixed;
    width: 100vw;
    bottom: 0;
    left: 0;

	& ul{
		display: flex;
		& li{
			width: 50%;

			& a{
				display: block;
				text-align: center;
				padding: 0.7em 0 0.5em;
				font-size: 3.5vw;
				z-index: 10;
				color: #fff;

				&::before{
					content: "";
					display: inline-block;
					width: 1.1em;
                    height: 1.1em;
                    background: no-repeat;
                    background-size: contain;
                    margin-right: 0.3em;
                    vertical-align: middle;
				}
			}
			&:nth-child(1) a{
				background: #4c1a15;
				&::before{
					background-image:url(../img/icoPhone.svg);
				}
			}
			&:nth-child(2) a{
				background: #682a0b;
				&::before{
					background-image:url(../img/icoMail.svg);
				}
			}
		}
	}
}

.main-navigation{
	margin-bottom: 30px;
    margin-top: 30px;
	@media screen and (max-width: 1300px) {
		padding-right: 50px;
	}
	
	ul{
		display: flex;
		gap: 2em;
        font-size: 1.6em;
        font-weight: 600;

		@media screen and (max-width: 1210px) {
			font-size: 1.3vw;
		}
	}

	a{
		transition: all 0.3s;
		&:hover{
			color: var(--colorOrangeShadow);
		}
	}
}

.smp-navigation{
	display: none;
}
*/

.main-navigation{
	display: inline-block;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 3em;
}

.main-navigation ul li {
	position: relative;

	&::after{
		content: "";
		display: block;
		position: relative;
		height: 1px;
		width: 0;
		bottom: -2px;
		background: var(--white);
		transition: all 0.3s;
	}
	&:hover::after{
		width: 100%;
	}
}

.main-navigation ul li a {
  display: block;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1.4em;
  font-weight: bold;

  .home &{
	  color: var(--white);
  }

  .home &:hover{
	color: var(--white);
  }
  :not(.home) &:hover{
	  color: var(--black);
  }

}

.main-navigation ul .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 1em;
	flex-direction: column;
	min-width: 200px;
	background: #99999988;
	z-index: 100;
	display: flex;
	gap: 2em;
	padding: 25px;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.main-navigation ul .sub-menu li{
	
	& > a{
	}

}

.main-navigation ul li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
}

#footCompany{
	background-color: var(--blue);
	padding: 100px 0 80px;
	position: relative;

	&::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background:url(../img/bgFootCompany.jpg) no-repeat center;
		background-size: cover;
		opacity: 0.1;
		z-index: 0;
	}

	& > div{
		position: relative;
		z-index: 1;
	}

	& h2{
		text-align: center;
		color: var(--white);
		font-size: 48px;
		margin-bottom: 1.5em;
		font-weight: bold;
		letter-spacing: 0.06em;
	}
	& p{
		text-align: center;
		color: var(--white);
		font-size: 18px;
		line-height: 2;
		margin-bottom: 60px;		
		letter-spacing: 0.05em;
	}
}

footer{
	padding: 120px 0 0;
	position: relative;
    z-index: 10;
}
.footer-contents{
	display: flex;
	justify-content: space-between;
	padding-top: 50px;
}
.footer-text{
	width: 100%;
	max-width: 573px;
	display: flex;
	justify-content: space-between;

	& > p{
		font-size: 20px;
		letter-spacing:0.05em;
		line-height:1.8;
		font-weight: bold;
		max-width: 20em;
	}

	& > a{
		width: 136px;
		height: 136px;
		display: block;
		background-color: var(--blue);
		border-radius: 136px;
		&::before{
			content: "";
			display: block;
			width: 28px;
			height: 21px;
			background-repeat: no-repeat;
			background-size: contain;
			background-image: url(../img/icoMail.svg);
			position: relative;
            top: calc((136px - 21px) / 2);
            left: calc((136px - 28px) / 2);
		}	
	}
}
.footer-navigation{
	margin-bottom: 40px;
	max-width: 285px;
	
	ul{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 0;
        font-size: 1.4em;
        font-weight: 600;
		justify-content: center;
	}

	
	a{
		transition: all 0.3s;
		&:hover{
			color: var(--pink);
		}
	}
}

.footer-info {
	border-top: 1px solid var(--black);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-media{
	width: 100%;
	max-width: 280px;

	a[class*="sns"]{
		display: inline-block;
		width: 24px;
		height: 24px;
		background-repeat: no-repeat;
		background-size: contain;
		margin-right: 24px;

	}
}
.snsX {
	background-image: url('../img/icoX.png');
}

.snsInstagram {
	background-image: url('../img/icoInstagram.png');
}

.copyright {
	margin-top: 120px;
    text-align: center;
	font-size: 1.4em;
	font-weight: bold;
    letter-spacing: 0.1em;
	padding: 1.5em 0;
	background-color: var(--blue);
	color: var(--white) ;
}

#toppage #container{
	z-index: 10;
	position: relative;
}

#mainVisual {
  width: 100%;
  height: 100vh;
  background-image: url(../img/mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/*
#mainimage{
    overflow-x: hidden;
	z-index: 2;
    position: relative;
	width: 100%;
	padding-bottom: 60px;

	& .contentsbox{
		overflow:visible;
		position: relative;
		display: flex;
		justify-content:space-between;
	}

	@media screen and (max-width: 1300px) {
		width: 96%;
	    padding: 0 2% 60px;
	}

}*/


.section-header {
	text-align: center;
	margin-bottom: 80px;
}

.section-title {
	font-size: 86px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	letter-spacing: 0.06em;
	position: relative;
	margin-bottom: 1em;

	&::before{
		content: "";
		display: block;
		position: absolute;
		top: 1.1em;
		width: 60px;
		height: 8px;
		background-color: var(--blue);
	}
}

.section-title span:not([class]) {
	display: block;
	font-size: 14px;
	letter-spacing: 0.08em;
	margin-top: 2em;
	position: absolute;
}

.TypingTextRandom span {
  animation: fadeIn 0.5s ease forwards;
}

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

/**************************************/


#mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #1a1a1a;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: calc(100% + 120px);
  left: -60px;
}

.hero__bg .mvSlide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.hero__bg .mvSlide.active { opacity: 1; }

.mvSlide{
  background: no-repeat center;
  background-size: cover;
}

.s1 { background-image: url(../img/bgMV1.jpg); }
.s2 { background-image: url(../img/bgMV2.jpg); }
.s3 { background-image: url(../img/bgMV3.jpg); }
.s4 { background-image: url(../img/bgMV4.jpg); }
.s5 { background-image: url(../img/bgMV5.jpg); }
.hero__front {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  pointer-events: none;
  z-index: 5;
}

.hero__front .fslide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items:end;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), filter 1.2s ease;
  filter: blur(12px);
  will-change: transform, opacity, filter;
}
.hero__front .fslide.active {
  opacity: 1;
  filter: blur(0px);
}
.hero__symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0.3;
}

.hero__content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%);
  color: white;
  z-index: 10;
}

.hero__content p {
  font-family: 'Hiragino Kaku Gothic Pro', 'Yu Gothic', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.hero__logo{
  margin: 0 auto;
  & h1{
    text-align: center;
  }
}

.hero__back{
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%);
    color: white;
    z-index: 0;
}

.title-line {
  display: table;
  overflow: hidden;
  margin: 15px auto;
  padding: 2px 10px;
  position: relative;
  color: #E95B9C;

  &::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
}
.title-line.bg-visible::after {
  transform: scaleY(1);
}

.title-text {
  display: block;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.title-text.visible {
  opacity: 1;
}

.hero__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex;
  gap: 8px;
  z-index: 10;
  transform: translateX(-50%);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
  transition: all 0.4s ease;
  cursor: pointer;
}
.dot.active {
  width: 24px;
  background: #E95B9C;
}


.custom-cursor {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}


/**************************************/

#top01{
	padding: 100px 0;
	h3{
		text-align: center;
		font-size:48px;
		margin-top: 1em;
		margin-bottom: 1em;
		letter-spacing: 0.06em;
		font-weight: bold;

		& + p{
			text-align: center;
			font-size: 1.6em;
			line-height: 2;
			font-weight: bold;
		}
	}


	ul{
		display: flex;
		justify-content: space-between;
		margin: 50px auto;
		
		li{
			background: #fff;
			box-shadow: 2px 2px 30px #00000010;
			width: 31%;
		}

		img {
			width: 100%;
			height: auto;
			display: block;
		}

		h4{
			margin: 1.5em 0;
			text-align: center;
			color: var(--blue);
			font-size: 1.8em;
			font-weight: bold;
		}

		& p{
			margin: 1em 1em 3em;
			line-height: 2;
			font-size: 1.6em;
		}

		a{
			display: block;
			height: 100%;
			position: relative;

			&::before{
				content: "";
				display: block;
				width: 6px;
				height: 6px;
				transform: rotate(45deg);
				border-top: 2px solid #fff;
                border-right: 2px solid #fff;
                position: absolute;
                right: 38px;
                bottom: 31px;
                z-index: 1;
			}

			&::after{
				content: "";
				display: block;
				width: 30px;
				height: 30px;
				background-color:var(--blue);
				border-radius: 30px;
				position: absolute;
				right: 25px;
				bottom: 20px;
				transition: all 0.3s;
			}
		}

		a:hover{
			color: var(--black);
			&::after{
				background-color: var(--yellow);
			}
			
		}
	}
}

#top02{
	& .section-title{
		color: var(--white);
		
		.dxSlide2 &{
			color: var(--black);
		}
	}

	#dxSlider{
		width: 100%;
		z-index: 0;
		position: relative;
	}
	.dxSlider-slide{
		padding: 100px 0;
	}

	.dxSlide1{	background-color: var(--blue);}
	.dxSlide2{	background-color: var(--yellow);}
	.dxSlide3{	background-color: var(--pink);}

	.dxSlide1 .section-title::before { background-color: var(--yellow);}
	.dxSlide2 .section-title::before { background-color: var(--pink);}
	.dxSlide3 .section-title::before { background-color: var(--yellow);}


	.dxSlider-Content{
		width: 100%;
		display: flex;
		justify-content: space-between;
		margin-top: 30px;

		& > .dxContent-text{
			width: 58.18%;
		}

		& > .dxImage{
			padding-right: 20px;
			padding-bottom: 20px;
			position: relative;
			overflow: hidden;

			& img{
				position: relative;
				z-index: 1;

			}

			&::after{
				content: "";
				display: block;
				position: absolute;
				width: 100%;
				height: 100%;
				background-color: #888;
				right: -20px;
				bottom: -20px;
				z-index: 0;

			}
			.dxSlide1 &::after{ background-color: var(--pink);}
			.dxSlide2 &::after{ background-color: var(--blue);}
			.dxSlide3 &::after{ background-color: var(--yellow);}

		}

		h3{
			font-size: 3.6em;
			line-height: 1.7;
			margin-bottom: 1em;
			font-weight: bold;
			letter-spacing: 0.05em;

			color: var(--white);
			.dxSlide2 &{
				color: var(--black);
			}

			& > span{
				font-size: 0.6em;
				display: block;
			}
		}
	}
	
	.dxDescript{
		background-color: var(--white);
		padding: 1.5em;
		line-height: 2;
		font-size: 1.6em;
	}

	.slick-dots {
		position: absolute;
		bottom: 40px;
		left: 50%;
		display: flex;
		gap: 8px;
		z-index: 10;
		transform: translateX(-50%);
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.slick-dots li button {
		width: 6px;
		height: 6px;
		border-radius: 3px;
		background: rgba(255,255,255,0.5);
		transition: all 0.4s ease;
		cursor: pointer;
		border: none;
		padding: 0;
		font-size: 0; /* ボタンのテキスト(1,2,3)を非表示 */
	}

	.slick-dots li.slick-active button {
		width: 24px;
		background: var(--green);
	}


	.dx-arrow {
		position: absolute;
		bottom: 0;
		transform: translateY(-50%);
		z-index: 10;
		background: var(--white);
		border: none;
		color: #fff;
		width: 40px;
		height: 40px;
		font-size: 16px;
		cursor: pointer;
		transition: background 0.3s ease;

		&.slick-arrow{
			display: block !important;
		}

		&::after{
			content: "";
			display: block;
			width: 11px;
			height: 11px;
			border-top: 2px solid;
			border-right: 2px solid;
			border-color: var(--blue);
			position: absolute;
			top: 13px;
		}
		&.dx-prev::after{
			transform: rotate(225deg);
			left: 16px;
		}
		&.dx-next::after{
			transform: rotate(45deg);
			right: 16px;
		}
	}

	.dx-arrow:hover {
		background: rgba(255,255,255,0.4);
	}

	.dx-prev { right: calc(50% - 600px + 60px); }
	.dx-next { right: calc(50% - 600px - 0px); }

}

#top03{
	padding: 100px 0;
	position: relative;
	&::after{
		content: "";
		display: block;
		position: absolute;
		width: clamp(320px, 70%, 770px);
		aspect-ratio: 4 / 1;
		background: url(../img/logoName.svg) no-repeat;
		background-size: contain;
		top: 100px;
		right: 0;
		opacity: 0.08;
	}

	& .deco2{	bottom: 0;	left: -50px;}
	& .deco6{	bottom: -70px;	right: -70px;}
	& .deco7{	top: -20px;	left: -50px;}

}
#top04{
	padding: 100px 0;
	background: #fafafa;

	.works-container {
		overflow: hidden;
		
		&[id$="Office"] .worksContents{border-left-color: var(--colorIct);}
		&[id$="Web"] .worksContents{border-left-color: var(--colorWeb);}
		&[id$="LP"] .worksContents{border-left-color: var(--colorAi);}
		&[id$="Graphic"] .worksContents{border-left-color: var(--colorGraphic);}
		&[id$="Movie"] .worksContents{border-left-color: var(--colorMovie);}
	}

	.worksContents{
		border-left: 8px solid #888;
		padding: 10px 20px;
		margin-top: 60px;
		margin-bottom: 20px;
		overflow: visible;

		&.contentsbox.thin{
			max-width: 952px;
		}


		& > div{
			display: flex;
			justify-content: space-between;
			gap: 50px;
		}

		& > h3{
			font-size: 36px ;
			font-weight: bold;
			margin-bottom: 0.75em;
		}

		& p{
			font-size:18px;
			font-weight: bold;
			line-height: 2;
		}
		
	}
	& a.btnWorks{
		border:2px solid #888;
		color: #888;
		text-align: center;
		letter-spacing: 0.15em;
		padding: 25px;
		width: 330px;
		border-radius: 60px;
		font-size: 18px;
		font-weight: bold;
		display: block;
		position: relative;

		&::before{
			content: "";
			display: block;
			width: 6px;
			height: 6px;
			transform: rotate(45deg);
			border-top: 2px solid #fff;
			border-right: 2px solid #fff;
			position: absolute;
			right: 38px;
			top: 31px;
			z-index: 1;
		}

		&::after{
			content: "";
			display: block;
			width: 30px;
			height: 30px;
			background-color: #888;
			border-radius: 30px;
			position: absolute;
			right: 25px;
			top: 20px;
		}

		[id$="Office"] &{
			border-color: var(--colorIct);
			color: var(--colorIct);
			&:after{
				background-color: var(--colorIct);
			}
		}
		[id$="Web"] &{
			border-color: var(--colorWeb);
			color: var(--colorWeb);
			&:after{
				background-color: var(--colorWeb);
			}
		}
		[id$="LP"] &{
			border-color: var(--colorAi);
			color: var(--colorAi);
			&:after{
				background-color: var(--colorAi);
			}
		}
		[id$="Graphic"] &{
			border-color: var(--colorGraphic);
			color: var(--colorGraphic);
			&:after{
				background-color: var(--colorGraphic);
			}
		}
		[id$="Movie"] &{
			border-color: var(--colorMovie);
			color: var(--colorMovie);
			&:after{
				background-color: var(--colorMovie);
			}
		}

	}

	.worksSlider {
		margin: 0 -15px;
		padding-left: calc(50vw - 500px);
	}

	.worksSlider .slick-list{
		overflow: visible;
	}

	.worksSlider .slick-track{
		margin-left: 0;
	}
	.worksSlider li {
		padding: 0 8px;
		width: 30%;
	}

	.worksSlider li a {
		display: block;
		text-decoration: none;
		color: inherit;
	}

	.worksSlider img {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
		object-fit: cover;
		display: block;
	}

	.worksSlider time {
		display: block;
		font-size: 14px;
		line-height: 2.5;
		color: var(--gray);
	}
	.worksSlider p {
		font-size: 16px;
	}
}

#top05{
	padding: 100px 0 50px;
	overflow: hidden;
	position: relative;
	
	&::before{
		content: "";
		display: block;
		height: 440px;
		width: 400px;
		background: url(../img/icoLogomark.svg) no-repeat top center;
		background-size: contain;
		position: absolute;
		right: 10%;
		top: 80px;
		z-index: -1;
		opacity: 0.08;
	}
	&::after{
		content: "";
		display: block;
		height: 128px;
		width: 100vw;
		background-color: var(--yellow);
		position: absolute;
		left: calc(50vw - 550px);
		bottom:130px;
		z-index: -1;
	}

	ul{
		margin-top: 60px;
		display: flex;
		gap: 3%;

		& li{
			width: 30%;
			box-shadow: 2px 2px 30px #00000010;

			& a > div{
				background: var(--white);
				padding: 20px 15px;
			}

			& img{
				width: 100%;
				aspect-ratio: 3 / 2;
				height: auto;
			}

			& time{
				color: var(--blue);
				margin-bottom: 0.8em;
				font-size: 1.6em;
				font-weight: bold;
				display: block;
			}

			& p{
				font-size: 1.6em;
				font-weight: bold;
			}
		}
	}
}


/**************************************/


.single #container h2{
	display: flex;
	flex-direction: column-reverse;
	font-size: 48px;
	font-weight: 600;
    line-height: 1.3;
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;

	& span.date{
		font-size: 0.5em;
		font-weight: 400;		
		margin-top: 0.5em;
		color: #ccc;
	}

	&:has(span){
		border: none;
		padding-bottom: 0;
		border-image: none;
	}
}

.single #entryBody{
	padding-bottom: 80px;
	clear: both;
	line-height: 2;
	font-size: 16px;

	& .thumb{
		margin-bottom: 2em;
		clear: both;
		& img{
			max-width: 100%;
			height: auto;
			margin: 0 auto;
			display: block;
            object-fit: cover;
            aspect-ratio: 3 / 2;
		}
	} 

	& strong{
		font-weight: 600;
	}

	& > p{
		margin-bottom: 1em;
	}
	& > ol{
		& li{
			list-style: decimal;
		}
	}
	& > ul{
		padding-left: 2em;
		margin-bottom: 1em;
		& li{
			list-style: disc;
		}
	}
	
	h3,h4{
        font-weight: bold;
		margin-top: 1em;
	}
}

#single-categories {
	padding: 0.5em 1em;
	border: 3px solid var(--colorPaleOrange);
	border-radius: 2em;
	width: max-content;
	float: right;
	margin-bottom: 2em;
	
	& ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: right;
		gap: 1em;

		&::before{
			content: "Category";
			font-family: "Roboto", sans-serif;
			align-self: center;
			color: var(--colorOrange);
		}

		& > li{
			display: block;
			& a{
				padding: 0.3em 0.5em 0.4em;
                background-color: var(--colorOrange);
                color: #fff;
				&:hover{
					background-color: #FFB300;
					color: #fff;
					text-decoration: none;
				}
			}
		}
	}
}


.single #container{
	margin: 100px 0;
}
.single #container > .contentsbox.hasSidebar{

	display: flex;
	gap: 50px;

	& #entryBody{
		max-width: 800px;
		width: 80%;
	}
	& #sidebar{
		width: 27%;
        padding: 30px;
        background: #fafafa;
	}
}

#sidebar{
	& h3{
		font-weight: 600;
		margin-bottom: 1em;
		font-size: 20px;
	}
}

ul#sideCategory{
	margin-bottom: 60px;
	& li{
		font-size: 14px;
		margin-bottom: 0.5em;
		& a{
			display: block;
            padding: 10px 12px;
			border: 2px solid;
			border-color: var(--cate-color,#888);
			color: var(--cate-color,#888);
			text-decoration: none;
			background: url(../img/icoTriangle.svg) no-repeat left 8px;
		}
	}

}

.side-blog-entries{
	margin-bottom: 80px;
    padding-top: 30px;
    border-top: 1px solid #ccc;
}


.single .btn-primary{
	margin: 0 auto;
	display: table;
}


.pagination {
    margin: 40px auto;
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;

    & a,
    & span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 3px;
        text-align: center;
        text-decoration: none;
        color: var(--black);
        transition: all 0.3s ease;
        font-weight: bold;
    }

    & .page-num.current {
        color: var(--blue);
        border-bottom: 2px solid var(--blue);
    }

    & a.page-num:hover {
        color: var(--pink);
    }

    & .prev,
    & .next {
        color: var(--emerald);
        font-size: 0.9em;
        padding: 0;
        background-color: var(--blue);
        border-radius: 50px;
        width: 44px;
        height: 44px;
		position: relative;
    }

    & .prev:hover,
    & .next:hover {
        background-color: var(--pink);
    }

	& .prev::before,
	& .next::before{
		content: "";
		display: block;
		width: 7px;
        height: 7px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        position: absolute;
        top: 17px;
		z-index: 1;
	}

	& .prev::before{transform: rotate(225deg); right: 15px;}
	& .next::before{transform: rotate(45deg); left: 15px;}

    & .disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }
}

/* company */


#pagetitle{

	height: 430px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
	
	background: #e2e2e2 no-repeat center;
	background-size: cover;
	color: #fff;
	font-size:40px;
	text-shadow:3px 3px 10px #aaa;
	font-weight: bold;
    letter-spacing: 0.1em;

	&::after{
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-color: #000;
		opacity: 0.2;
		z-index: 0;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
}

.service #pagetitle{ background-image:url(../img/bgTitle-service.jpg);}
.company #pagetitle{ background-image:url(../img/bgTitle-company.jpg);}
.blog #pagetitle,
.single.blog #pagetitle,
.tax-cate #pagetitle{ background-image:url(../img/bgTitle-blog.jpg);}
.news #pagetitle,
.tax-news_category #pagetitle{ background-image:url(../img/bgTitle-news.jpg);}
.works #pagetitle,
.tax-works_category #pagetitle{ background-image:url(../img/bgTitle-works.jpg);}
.contact #pagetitle,
.error #pagetitle,
.confirm #pagetitle,
.thanks #pagetitle{ background-image:url(../img/bgTitle-contact.jpg);}
.privacypolicy #pagetitle{ background-image:url(../img/bgTitle-contact.jpg);}

ul#breadlist{
	display: flex;
	font-size: 14px;
	margin-top: 0.5em;
	position: absolute;

	& li{
		&:not(:last-child)::after{
			content: "＞";
			margin: 0 3px;
		}
		&.current{
			font-weight: bold;
		}
	}

}


.page #container{
	padding:75px 0;
}
.page.company #container{
	padding:50px 0;
}


.page.contact #container,
.archive #container{
	padding:150px 0;
}


/* service */

section[id*="service"]{
	padding: 80px 0;

	&[id$="1"]{ --sectionColor: var(--colorIct); }
	&[id$="2"]{ --sectionColor: var(--colorAi); }
	&[id$="3"]{ --sectionColor: var(--colorWeb); }
	&[id$="4"]{ --sectionColor: var(--colorGraphic); }
	&[id$="5"]{ --sectionColor: var(--colorMovie); }

	background-color: var(--sectionColor);

	& .section-title{
		color: var(--white);
		&::before{
			background-color: var(--yellow);
		}
	}

	h2{
		margin-bottom: 0.75em;
	}

	& .contentsbox > div{
		display: flex;
		justify-content: space-between;
		gap: 80px;
	}

	& .serviceContents{
		width: 65%;

		& p{
			color: var(--white);
			font-size: 2.4em;
			line-height: 2;
			margin-bottom: 3em;
			font-weight: bold;
			text-align: justify;
		}
	}

	& .serviceImage{
		padding-right: 20px;
		padding-bottom: 20px;
		position: relative;
		overflow: hidden;
		img{
			width: 100%;
			position: relative;
			z-index: 1;
			box-shadow: 20px 20px 0 var(--yellow);
		}
	}

	& .btnLink{
		background-color: var(--white);
		color: var(--sectionColor);

		&::after {
			background-color: var(--sectionColor);
		}
	}
}

/* company */

section[id*="company"]{
	overflow: hidden;
	padding:70px 0;
	.section-title{
		margin-bottom: 60px;		
	}
}

#company1{
	margin-bottom: 80px;

	.deco1{ top:-40px; left: -60px;}
	.deco3{ top:540px; left: -60px; width:20px;}
	.deco4{ top:80px; left: 430px;}
	.deco4.big{ top: 560px;left: auto;right: 80px;width: 70px;height: 70px;}

	.contentsbox{
		background: url(../img/icoLogomark.svg) no-repeat bottom right;
		background-size: 450px;
	}

	& h2 + div{
		line-height: 2;
		width: 50%;

		h3{
			font-size: 26px;
			font-weight: bold;
			line-height: 1.5;
			margin-bottom: 0.7em;
			letter-spacing: 0.05em;
		}
		p{
			letter-spacing: 0.04em;
			line-height: 2;
			font-size: 15px;
		}
	}
}

#company2{
	background-color: #fafafa;
	margin-right:50px;
	margin-left: 50px;
	margin-bottom: 80px;
	padding: 100px 0;

	ul{
		li{
			padding-bottom: 40px;
			border-bottom: 1px solid var(--black);
			margin-bottom: 40px;
			display: flex;
			gap: 3%;

			&:last-child{
				padding-bottom: 0;
				border: none;
				margin-bottom: 0;

			}

			& > div{
				width: 50%;

				& > div.staffimg{ display: none;}

			}
			& > div.staffimg{
				width: 53%;
				& img{
					max-width: 100%;
				}
			}
		}
	}

	h3{
		display: flex;
		flex-direction: column-reverse;
		font-size: 40px;
		font-weight: bold;
		line-height: 1.5;
		margin-bottom: 0.7em;
		letter-spacing: 0.05em;
		& > span{
			display: block;
			font-size: 0.35em;
		}
	}
	p{
		letter-spacing: 0.04em;
		line-height: 2;
		font-size: 15px;
	}

}
#company3{
	position: relative;

	.deco1{ top:-40px; left: -60px;}
	.deco4{ top:80px; left: 430px;}
	.deco3{ bottom:400px; left: -80px;}
	.deco2{ bottom:80px; right: -100px;}
	.deco5{ bottom:500px; right: -80px;}


	&::after{
		content: "";
		display: block;
		position: absolute;
		width: clamp(320px, 70%, 770px);
		aspect-ratio: 4 / 1;
		background: url(../img/logoName.svg) no-repeat;
		background-size: contain;
		top: 90px;
		right: 0;
		opacity: 0.08;
	}

	table{
		line-height: 2;
		margin-bottom: 80px;
	}
	th{
		font-size: 18px;
		width:250px;
		padding:18px;
		background:var(--blue);
		color: var(--white);
		text-align:center;
		border:1px solid var(--white);
		white-space:nowrap;
		font-weight: bold;
		vertical-align: middle;
	}

	td{
		font-size: 16px;
		background-color: #fafafa;		
		padding:18px;
		
		border:1px solid var(--white);
	}

	ul{
		margin-bottom: 1.5em;
		&:last-child{
			margin-bottom: 0;
		}
	}

	iframe{
		max-width: 100%;
	}
}


/* archive */
.archive #container{
	h3{
		font-weight: bold;
		font-size: 26px;
		margin-bottom: 1em;
		letter-spacing: 0.05em;
		text-align: center;
	}
}
.archive.blog #container{
	position: relative;
	overflow: hidden;
	.deco3{	width:164px; height: 500px;  top:100px; left: 10vw;}
	.deco4{	width: 78px; height: 78px; top:3vw;right: 5vh;}
	.deco4.big{	width: 150px; height: 150px; bottom: 2.5vw;left: 5vw;top: auto;}
	.deco5{	width: 164px; height: 500px; bottom:50px; right: 6vw;}	
}

#dataCategory {
	display: flex;
	justify-content: center;
	gap: 3%;
	margin-top: 60px;
	margin-bottom:60px;

    & > li {
		width: 18%;

        & > a {
			display: block;
			padding: 10px ;
			text-align: center;
			border:2px solid #ccc;
			border-color: var(--cate-color, var(--blue));
			color: var(--cate-color, var(--blue));
			font-size: 14px;
			font-weight: bold;
			letter-spacing: 0.05em;

			.archive.news &,
			.tax-news_category &{
				border-color: var(--blue);
				color: var(--blue);
			}
		}

		&.current > a{
			border-color: var(--cate-color,--black);
			background-color: var(--cate-color,var(--black));
			color: var(--white);	

			.archive.news &,
			.tax-news_category &{
				border-color: var(--black);
				background-color: var(--black);			
				color: var(--white);
			}
		}
	}
}


.news-list{
	margin-top: 60px;
	border-top: 1px solid var(--gray);

	li {
		border-bottom: 1px solid var(--gray);
		padding: 1.5em 0;
		line-height: 1.8;
		font-size: 1.4em;
		a {
			display: grid;
			grid-template-columns: 100px 120px 1fr;
			align-items: center;
			gap: 16px;
		}

		time{
			color: #848484;
			letter-spacing: 0.07em;
		}

		.news-category{
			background-color: #888;
			text-align: center;
			color: #fff;
			letter-spacing: 2px;
		}
	}
}



/* contact */

.contact .section-title,
.archive .section-title{
	text-align: center;
	&::before {
        left: calc(50% - 30px);
	}
	span:not([class]) {
		width: 100%;
	}

}

.contact-front{
	h3{
		font-weight: bold;
		font-size: 26px;
		margin-bottom: 1em;
		letter-spacing: 0.05em;
		text-align: center;
	}
	p{
		line-height: 2;
		font-size: 16px;
		letter-spacing: 0.05em;
		text-align: center;
	}
}

.wpcf7{
	max-width: 745px;
	margin: 100px auto 0;

	input[type="text"],
	input[type="tel"],
	input[type="email"],
	select,
	textarea{
		width: 100%;
		padding: 0.75em;
		border: 1px solid #888;
		font-size: 1.4em;
		margin: 0.3em 0 0;
		background-color: #f4f4f4;
	}
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	textarea{
		width:calc(100% - 1.5em);
	}

}

.form-row{
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 1em;
	letter-spacing: 0.05em;

	.hissu,
	.ninni{
		font-weight: bold;
		&::before{
			display: inline-block;
			padding: 2px 0.5em 2px 0.7em;
			letter-spacing: 0.3em;
			color: var(--white);
			margin-right: 1em;
		}
	}
	.hissu::before{
		content: "必須";
		background-color: var(--pink);
	}
	.ninni::before{
		content: "任意";
		background-color: var(--blue);
	}
}
.wpcf7-submit {
    opacity: 0.5;
    cursor: not-allowed;
    /* その他のボタンスタイル */

}

.wpcf7-submit:not([disabled]) {
    opacity: 1;
    cursor: pointer;
}

input[type="submit"]{
	border: none;
}


.privacypolicy #container{
	.contentsbox{
		position: relative;
		&::before{
			content: "";
			display: block;
			width: 250px;
			height: 250px;
			background: url(../img/icoLogomark.svg) no-repeat;
			background-size: contain;
			position: absolute;
			bottom: 0;
			right: 0;
			opacity: 0.3;
		}
		&::after{
			content: "";
			display: block;
			width: 30%;
			height: 200px;
			background: url(../img/logoBig.png) no-repeat;
			background-size: contain;
			position: absolute;
			top: 0;
			right: 0;
		}
	}
}

.privacypolicy address{
	padding: 2em;
	border: 1px solid #ccc;
	background-color: #fafafa;
	display: inline-block;

	.page-defaulttemplate #container & > p:last-child{
		margin-bottom: 0;
	}
}


/* zipaddr-jp */
#autozip{
	display: none !important;
}

.contact_msg_hidden{
	display: none;
}
#container > .contentsbox.hasSidebar#blog-main-contents{
	&.contact_msg_hidden{
		display: none;
	}
}


.archive-datalist{
	&.contentsbox{
		overflow: visible;
	}

	& > ul.post-grid{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap:3.5em 2%;

		& > li{
			width: 32%;

			&:nth-child(3n){
				margin-right: 0;
			}

			& p{
				padding: 0;

				& > span.date{
					display:block;
					margin-bottom: 0.5em;
				}
			}

			& .thumb{
				display: block;
				width: 100%;
				aspect-ratio: 1 / 1;
				overflow: hidden;
				cursor: pointer;
				margin-bottom: 8px;

				img{
					width: 100%;
					height: 100%;
					object-fit: cover;
					object-position: center;
					transition: all 0.3s ease;
				}
			}
		}
		
		a:hover .thumb img {
			transform: scale(1.1);
			filter: brightness(1.2);
		}
	}

	& .btnGotoPage{
		margin-top: 0;
		margin-right: 1.5em;
		margin-bottom: 1.5em;
		&.x-small{
			float: right;
		}
	}
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

#sidebar .post-grid {
	grid-template-columns: none;

}

.post-grid li {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.post-grid li a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.post-grid .thumb {
    height: 200px;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.post-grid .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.post-grid .post-info{
	line-height: 1.3;
    letter-spacing: 0.05em;
}

.post-grid p:first-of-type {
    padding: 10px 0 0;
}

.post-grid .date {
    display: block;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
}

.post-grid .dataCategoryLists {
    display: flex;
    gap: 8px;
	margin: 0 0 4px;
    list-style: none;
    padding: 0;

}

.post-grid .category {
    display: inline-block;
    padding: 4px 6px;
    font-size: 14px;

	background-color: var(--cate-color,#888);
	color: var(--white);
}

.post-grid .post-title {
    font-size: 16px;
    font-weight: bold;
}

.archive.blog ul.post-grid{
	& > li{
		background-color: var(--white);
		box-shadow: 2px 2px 30px #00000018;	
	}

	.post-info{
		padding: 1em 1.5em 1.5em;

		& .date{
			color: var(--blue);
			margin-bottom: 0.5em;
			font-weight: bold;
		}

	}


}


/* リスト形式 */

#sidebar{

	ul.post-list{
		body.home &.contentsbox{
			max-width: 900px;
		}
		& > li{
			padding-bottom: 15px;
			border-bottom: 1px dotted #666;
			margin-bottom: 15px;
		}

		& > li a{
			display: flex;
			gap: 10px;
			padding: 0;
			transition: all 0.3s;
			position: relative;
		}

		& .thumb img{
			max-width: 100px;
			width: 100%;
			height: auto;
			aspect-ratio: 3 / 2;
		}

		& .post-info{
			display: flex;
			flex-direction: column;
			width: 100%;
			justify-content: space-between;
			font-weight: bold;

			& .date{
				font-size: 14px;
				color: #ccc;
				margin-bottom: 0.5em;
			}

			& .post-title{
				font-size: 16px;
				margin-bottom: 1em;
			}
		}

		& .dataCategoryLists {
			display: flex;
			gap: 8px;
			margin: 0 0 0.5em;
			list-style: none;
			padding: 0;
		}

		& .category {
			display: inline-block;
			font-size: 12px;
			background-color: var(--cate-color, #888);
			color: var(--white, --black);
			padding: 2px 4px;
		}

		& .post-title {
			font-size: 16px;
			line-height: 1;
			letter-spacing: 0.05em;
			color: #333;
		}
	}
}
