@charset "utf-8";
:root {--main-color: #ab5882;}
:root {--text-color: #555555;}

:root {--text-font: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS PGothic", sans-serif;;}

section{
	width: 100%;
    padding: 80px 0;
	position: relative;
	overflow: hidden;
}
.bg{
	background: #f8f7f2;
}
.inner{
	width: 80%;
	max-width: 1024px;
	margin: 0 auto;
    position: relative;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
}
h2{
	width: 100%;
	font-size: 36px;
	text-align: center;
	color: var(--main-color);
	margin: 0 0 56px;
}
h3{
	font-size: 22px;
	color: var(--main-color);
	margin: 0 0 24px;
}
h4 {
  font-size: 18px;
  margin: 0 0 12px;
}
p{
	font-size: 16px;
	line-height: 1.6;
    letter-spacing: 0.05em;
}
/**/
.column{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    align-items: center;
}
.column2 img,
.column2 iframe{
	width: 48%;
	max-width: 480px;
	height: 320px;
}
.column2 div{
	width: 48%;
	max-width: 485px;
}
.column2 div .btn{
	margin: 24px auto 0;
}
.column3 li{
	width: 32%;
	max-width: 320px;
}
.column3::after{
	display: block;
	content: "";
	width: 32%;
	max-width: 320px;
}
/**/
table ,
table td,
table th {
	border: solid 0.5px #A3A3A3;
	border-collapse: collapse;
}
table tr{
	display: flex;
	flex-wrap: wrap;
}
table td,
table th {
	display: flex;
	align-items: center;
	min-height: 53px;
	font-size: 18px;
}
table th{
	justify-content: center;
	width: 240px;
	background: #F2F4F5;
}
table td{
	width: calc( 100% - 240px );
	padding: 12px 24px;
}
/**/
.btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
    max-width: 400px;
	height: 48px;
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	border: solid 2px var(--main-color);
	border-radius: 4px;
	background: var(--main-color);
	margin: 0 auto;
	position: relative;
}
.btn::after{
	display: block;
	content: "";
	width: 7px;
	height: 12px;
	background: center / contain no-repeat url("../img/icon-arrow.svg");
	position: absolute;
	top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.btn.white{
	color: var(--main-color);
	background: #FFF;
}
.btn.white::after{
	background: center / contain no-repeat url("../img/icon-arrow-color.svg");
}
@media screen and (max-width: 960px) {
	section{
		padding: 50px 0;
	}
	.inner{
		width: 92%;
		max-width: 480px;
	}
	h2{
		font-size: 24px;
		margin: 0 0 40px;
	}
	h3{
		font-size: 20px;
		text-align: center;
		margin: 0 0 32px;
	}
	p{
		font-size: 14px;
	}
	/**/
	.column{
		justify-content: center;
	}
	.column2 img,
	.column2 iframe{
		width: 100%;
		height: 240px;
		margin: 0 0 16px;
	}
	.column2 div{
		width: 100%;
	}
	.column3 li{
		width: 100%;
	}
	.column3::after{
		display: none;
	}
	/**/
	table td,
	table th {
		min-height: 45px;
		font-size: 14px;
	}
	table th{
		width: 100%;
	}
	table td{
		width: 100%;
	}
	/**/
	.btn{
		width: 100%;
		height: 40px;
		font-size: 14px;
	}
	.btn::after{
		width: 6px;
		height: 10px;
	}
}
/*==================================================================================================*/
/*-*/
header{
	background: #FFF;
	position: fixed;
	top: 0;
	z-index: 1000;
}
header .inner{
	width: 96%;
	max-width: 1240px;
	height: 92px;
	
}
header .inner h1{
	width: fit-content;
}
header .inner h1 a{
	display: flex;
}
header .inner h1 a img{
	width: 317px;
}
header .inner ul{
	max-width: 504px;
}
header .inner ul li{
	width: 48%;
	max-width: 240px;
}
header .inner ul li .btn{
	width: 100%;
	margin: 0;
}
nav{
	background: #494244;
}
nav ul.flex{
	width: 96%;
	justify-content: center;
	height: 56px;
	margin: 0 auto;
}
nav ul li{
	width: 20%;
	max-width: 248px;
	border-right: solid 1px #FFF;
}
nav ul li:first-child{
	border-left: solid 1px #FFF;
}
nav ul li a{
	display: block;
	width: 100%;
	font-size: 16px;
	text-align: center;
	color: #FFF;
}
@media screen and (max-width: 960px) {
	header .inner{
		height: 48px;
		background: #fff;
		margin: 0;
		position: relative;
		z-index: 1000;

	}
	header .inner h1{
		margin: 0 0 0 10px;
	}
	header .inner h1 a img{
		width: 160px;
	}
	header .inner ul{
		display: none;
	}
	nav{
		width: 100%;
		height: 100vh;
		padding: 20px 0 0;
		position: fixed;
		top: -100vh;
		transition: .5s;
	}
	.pcNav nav{
		top: 48px;
	}
	nav ul.flex{
		height: auto;
	}
	nav ul li{
		width: 100%;
		max-width: 100%;
		border-right: none;
		border-bottom: solid 1px #FFF;
		padding: 7px 15px;
	}
	nav ul li:first-child{
		border-left: none;
		border-top: solid 1px #FFF;
	}
	nav ul li a{
		text-align: left;
		position: relative;
	}
	nav ul li a::after{
		display: block;
		content: "";
		width: 7px;
		height: 12px;
		background: center / contain no-repeat url("../img/icon-arrow.svg");
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
}
/*ボタン*/
.openbtn1{
	display: none;
}
@media screen and (max-width: 960px) {
	.openbtn1{
		display: block;
		cursor: pointer;
		width: 48px;
		height: 48px;
		background: #FFF;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10000;
		box-shadow: 0 0 4px rgba(0,0,0,0.25);
	}
	.openbtn1 span:nth-of-type(1),
	.openbtn1 span:nth-of-type(2),
	.openbtn1 span:nth-of-type(3){
		display: inline-block;
		transition: all .4s;
		width: 20px;
		height: 1px;
		background: #222222;
		position: absolute;
		left: 14px;
	}
	.openbtn1 span:nth-of-type(1) { top:14px;}
	.openbtn1 span:nth-of-type(2) { top:20px;}
	.openbtn1 span:nth-of-type(3) { top:26px;}
	
	.openbtn1::after{
		display: block;
        content: "メニュー";
        width: 31px;
        font-size: 8px;
        line-height: 1;
        position: absolute;
        bottom: 7px;
        left: 50%;
   		transform: translateX(-50%);
	}
	
	.pcNav .openbtn1 span:nth-of-type(1) {
		top: 19px;
		transform: rotate(-45deg);
	}
	.pcNav .openbtn1 span:nth-of-type(2){
		opacity: 0;
	}
	.pcNav .openbtn1 span:nth-of-type(3){
		top: 19px;
		transform: rotate(45deg);
	}
	.pcNav .openbtn1::after{
        content: "閉じる";
		width: 24px;
	}
}
/*==================================================================================================*/
/*fv*/
.fv{
	height: 640px;
	background: center / cover no-repeat url("../img/fv-bg.jpg");
	margin: 148px 0 0;
	position: relative;
}
.fv::before{
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(171,88,130,0.60);
	position: absolute;
	top: 0;
	left: 0;
}
.fv::after{
	display: block;
	content: "";
	width: 734px;
	height: 450px;
	background: center / contain no-repeat url("../img/fv-deco.png");
	position: absolute;
	top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.fv .inner{
	align-content: flex-end;
	height: 100%;
}
.fv h2{
	width: fit-content;
	font-family: var(--text-font);
	font-size: 40px;
	text-align: left;
	color: #FFF;
	margin: 0 0 20px;
}
.fv h2 span {
  position: relative;
  z-index: 1;
}
.fv h2 span::before{
  display: block;
  content: "";
  width: calc( 100% + 10px);
  height: 25px;
  background: var(--main-color);
  position: absolute;
  bottom: -8px;
  left: -5px;
  z-index: -1;
}
.fv p{
	font-size: 16px;
	line-height: 1.8;
	color: #FFF;
}
@media screen and (max-width: 960px) {
	.fv{
		height: 80vh;
		min-height: 375px;
		margin: 48px 0 0;
	}
	.fv::after{
		display: none;
	}
	.fv h2{
		max-width: 480px;
		font-size: 32px;
	}
  .fv h2 span::before{
    height: 10px;
    bottom: 0;
  }
	.fv p{
		font-size: 12px;
	}
}
@media screen and (max-width: 520px) {
  .fv h2{
		font-size: 28px;
	}
}
/*==================================================================================================*/
/*business-事業案内*/
.business ul{
	margin: 0 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.business ul li {
  text-align: center;
  background: #fff;
  border: 2px solid var(--main-color);
  padding: 30px 0;
}
.business ul li img{
  width: 80px;
  height: 80px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
	margin: 0 0 30px;
}
.business ul li h3{
  color: var(--text-color);
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin: 0;
}
@media screen and (max-width: 960px) {
  .business ul{
    margin: 0 0 40px;
    grid-template-columns: repeat(2, 1fr);
  }  
	.business ul li img{
		margin: 0 0 16px;
	}
}
@media screen and (max-width: 520px) {
  .business ul{
    grid-template-columns: 1fr;
  }  
}
/*==================================================================================================*/
/*case-導入事例*/
.caseList{
	align-items: baseline;
	margin: 0 0 56px !important;
}
.caseList li{
	margin: 0 11px;
}
.caseList li .img{
	border: solid 1px #E1E1E1;
	background: #FFF;
	margin: 0 0 24px;
}
.caseList li h3{
	font-size: 20px;
	color: var(--main-color);
	margin: 0;
}
@media screen and (max-width: 960px) {
	.caseList{
		margin: 0 0 40px !important;
	}
	.caseList li{
		margin: 0 40px;
	}
	.caseList li .img{
		margin: 0 0 16px;
	}
	.caseList li h3{
		font-size: 16px;
	}
}
/*==================================================================================================*/
/*news-新着情報*/
.newsList{
	margin: 0 0 56px;
}
.newsList li{
	padding: 16px 0;
	border-bottom: solid 1px #E1E1E1;
}
.newsList li:first-child{
	padding: 0 0 16px;
}
p.day{
	width: 140px;
}
p.cat{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 119px;
	height: 34px;
	color: #FFF;
	background: var(--main-color);
}
.newsList li h4{
	width: calc( 100% - 294px );
	font-size: 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 960px) {
	.newsList{
		margin: 0 0 40px;
	}
	.newsList a{
		justify-content: flex-start;
	}
	.newsList li{
		padding: 12px 0;
	}
	.newsList li:first-child{
		padding: 0 0 12px;
	}
	p.day{
		width: 127px;
	}
	p.cat{
		width: 107px;
		height: 24px;
	}
	.newsList li h4{
		width: 100%;
		font-size: 14px;
		margin: 10px 0 0;
	}
}
/*==================================================================================================*/
/*company-会社案内*/
.company div h3{
	font-size: 20px;
}
.company div p {
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
	.company div h3{
		font-size: 20px;
	}
}
@media screen and (max-width: 520px) {
  .company div h3{
    text-align: left;
  }
}
/*==================================================================================================*/
/*contactBox-*/
.contactBox{
	border-top: solid 1px #E1E1E1;
	padding: 80px 0;
}
.contactBox li{
	width: 50%;
}
/* .contactBox li:first-child{
	border-right: solid 1px #E1E1E1;
} */
.contactBox li img{
	display: block;
	width: 48px;
	height: 49px;
	object-fit: contain;
	margin: 0 auto 24px;
}
.contactBox li h3{
	text-align: center;
	color: var(--text-color);
	margin: 0 0 16px;
}
.contactBox li p{
  color: var(--text-color);
	text-align: center;
	margin: 0 0 24px;
}
.btn.download::before{
	display: inline-block;
	content: "";
	width: 14px;
	height: 14px;
	background: center / contain no-repeat url("../img/icon-download-color.svg");
	margin: 0 10px 0 0;
}
.btn.mail::before{
	display: inline-block;
	content: "";
	width: 17px;
	height: 14px;
	background: center / contain no-repeat url("../img/icon-mail-white.svg");
	margin: 0 10px 0 0;
}
@media screen and (max-width: 960px) {
	.contactBox li{
		width: 100%;
	}
	.contactBox li:first-child{
		border-right: none;
		margin: 0 0 40px;
	}
}
/*==================================================================================================*/
/*footer-*/
footer{
	color: #FFF;
	background: #bca2b1;
	padding: 80px 0 0;
}
footer .inner{
	align-items: flex-start;
	margin: 0 auto 48px;
}
footer a{
	color: #FFF;
}
footer .textBox{
	width: 50%;
	max-width: 485px;	
}
footer .textBox h2{
	font-size: 16px;
	text-align: left;
	color: #FFF;
	margin: 0 0 8px;
}
footer .textBox p{
	margin: 0 0 8px;
}
/**/
footer .navBox{
	width: 50%;
	max-width: 388px;	
}
footer .navBox ul{
	width: 50%;
	max-width: fit-content;
	align-items: flex-start;
}
footer .navBox ul li{
	margin: 0 0 12px;
}
footer .navBox ul a{
	display: flex;
	align-items: center;
	font-size: 14px;
}
footer .navBox ul a::before{
	display: inline-block;
	content: "";
	width: 7px;
	height: 14px;
	background: center / contain no-repeat url("../img/icon-arrow.svg");
	margin: 0 5px 0 0;
}
.small{
	display: flex;
	align-items: center;
	height: 35px;
	background: #494244;
}
.small .inner{
	display: flex;
	align-items: center;
	margin: 0 auto;
}
.small a,
.small small{
	width: fit-content;
}
.small a::before{
	display: inline-block;
	content: "";
	width: 7px;
	height: 14px;
	background: center / contain no-repeat url("../img/icon-arrow.svg");
	margin: 0 5px 0 0;
}
.small a::after{
	display: inline-block;
	content: "";
	width: 9px;
	height: 9px;
	background: center / contain no-repeat url("../img/icon-link.svg");
	margin: 0 0 0 5px;
}
@media screen and (max-width: 960px) {
	footer{
		padding: 40px 0 0;
	}
	footer .inner{
		margin: 0 auto 32px;
	}
	footer .textBox{
		width: 100%;
		margin: 0 0 40px;
	}
	footer .navBox{
		width: 100%;
	}
	footer .navBox ul li{
		margin: 0 0 8px;
	}
	.small{
		justify-content: center;
		height: 105px;
	}
	.small .inner{
		justify-content: center;
	}
	.small a,
	.small small{
		width: 100%;
		font-size: 12px;
		text-align: center;
	}
	.small a{
		margin: 0 0 10px;
	}
}