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


*,*:before,*:after {
	margin: 0;
	padding: 0;
 	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body{
	color: #3a2810;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.5;
	font-size: 16px;
	font-weight: 400;
	min-width: 310px;
	font-feature-settings: "palt";
}


@-ms-viewport {
  width: device-width;
}
img{
	width: 100%;
	height: auto;
}
a{
	text-decoration: none;
	word-break: break-all;
}
a:hover{
	color: #00A0CD;
	border-bottom: solid 1px #00A0CD;
}
ul{
	list-style: none;
}
.grecaptcha-badge{
	z-index: 2;
}


/* --------------------
Header
-------------------- */
.header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.16);
    z-index: 999;
    height: 100px;
	font-size: 14px;
}
.header-nav {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
	max-width: 1920px;
    padding: 20px 4%;
    margin-left: auto;
    margin-right: auto;
}
.header-nav-right {
	margin: 0 0 0 auto;
}
.header-nav-list{
	text-align: right;
}
.header-nav-item{
    display: inline-block;
    text-align: right;
    padding-left: 40px;
}

.header-nav-item-dropdown{
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 12px 16px;
	z-index: 1;
}

.header-nav-item:first-of-type{
	padding-left: 0;
}
.header-logo{
	/* width: 160px; */
	color: #00A0CD;
	font-size: 30px;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
}
.header-logo a:hover{
	border-bottom: unset;
	opacity: .7;
}

@media screen and (max-width: 1080px) {
	.header-logo{
		font-size: max(2.777vw , 24px);
	}
}

.drawer {
  position: relative;
  transition: all .6s;
}
.drawer:hover {
  cursor: pointer;
}
.toggle-list {
  display: none;
  position: absolute;
  width: 240px;
  text-align: left;
  left: 0;
  top: 60.5px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
	z-index: 998;
	background-color: #fff;
}
.toggle-item {
  padding-top: 14px;
  padding-bottom: 14px;
	padding-left: 14px;
  background-color: #FFF;
  text-align: left;
	display: flex;
	align-items: center;
	color: #3a2810;
}
	.toggle-item::before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background-color: #00A0CD;
    border-radius: 50px;
    margin-right: 5px;
}
.toggle-item:first-child{
  padding-top: 26px;
}
.toggle-item:last-child{
  padding-bottom: 26px;
  border-bottom: none;
}
.toggle-item a{
	display: inline-block;
	width: 100%;
	height: 100%;
}
.toggle-item a:hover{
	border: none;
}

@media screen and (max-width: 1200px) {
.header-nav-item {
	padding-left: 20px;
}
}

@media screen and (max-width: 959px) {
	.header {
		height: 60px;
		font-weight: 700;
	}
	/* .header-logo {
		width: 80px;
		z-index: 301;
	} */
	.header-nav {
		padding: 0 4%;
	}
	.header-nav-right {
		position: fixed;
		right: -100vw; 
		top: 0;
		width: 100vw; 
		height: 100vh;
		padding-top: 60px;
		background: url(../images/header-bg.jpg);
		background-size: cover;
		transition: all .6s;
		z-index: 200;
		overflow-y: auto; 
	}
	.hamburger {
		position: absolute;
		right: 4%;
		top: 50%;
		transform: translateY(-50%);
		width: 40px; 
		height: 40px; 
		cursor: pointer;
		z-index: 300;
	}
	.header-nav-list {
		margin: 0;
		padding-top: 25vw;
		padding-left: 4%;
		padding-right: 4%;
		list-style: none;
	}
	.header-nav-item a {
		display: block;
		text-decoration: none;
	}
	.header-nav-item a:hover{
		border-bottom: none;
	}
	.header-nav-item{
		display: block;
		text-align: left;
		padding: 2%;
	}
	.header-nav-item:first-of-type {
		padding-left: 2%;
	}
	.hamburger-border {
		position: absolute;
		left: 11px;
		width: 18px;
		height: 2px;
		background-color: #333;
		transition: all .6s;
	}
	.hamburger-border-top {
		top: 14px;
	}
	.hamburger-border-center {
		top: 20px;
	}
	.hamburger-border-bottom {
		top: 26px;
	}
	.black-bg {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		z-index: 100;
		background-color: #333;
		opacity: 0;
		visibility: hidden;
		transition: all .6s;
		cursor: pointer;
	}
	.nav-open .header-nav-right {
		right: 0;
	}
	.nav-open .black-bg {
		opacity: .8;
		visibility: visible;
	}
	.nav-open .hamburger-border-top {
		transform: rotate(45deg);
		top: 20px;
	}
	.nav-open .hamburger-border-center {
		width: 0;
		left: 50%;
	}
	.nav-open .hamburger-border-bottom {
		transform: rotate(-45deg);
		top: 20px;
	}	
	.drawer{
		margin: 2rem 0;
	}
	.drawer:hover {
    cursor: default;
  }
  .toggle-list {
    display: block;
    position: unset;
    width: auto;
    text-align: left;
    margin-left: 1rem;
    height: auto !important;
		box-shadow: none;
		background-color: transparent;
  }
  .toggle-item {
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: transparent;
    text-align: left;
    border-bottom: none;
		display: flex;
		align-items: center;
		color: #3a2810;
  }
	.toggle-item::before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background-color: #FF740C;
    border-radius: 50px;
    margin-right: 5px;
}
  .toggle-item:first-child{
    padding-top: 12px;
  }
  .toggle-item:last-child{
    padding-bottom: 0;
    border-bottom: none;
  }
  .toggle-item:hover >a{
    color: #FF9142;
  }
}

/* --------------------
fv
-------------------- */
.fv-pc{
	display: block;
}
.fv-sp{
	display: none;
}
.fv-herobox{
	padding-top: 100px;
	z-index: 1;
	position: relative;
	background-color: #F9F9F9;
	overflow: hidden;
}
.fv-herobox::before {
	content: '';
	position: absolute;
	display: block;
	background: #FFF;
	width: 40%;
	height: 100%;
	transform: skewX(35deg);
	left: 20%;
	z-index: -1;
}
.fv-flex{
	display: flex;
	align-items: center;
	position: relative;
}
.fv-textbox{
	width: 42%;
}
.fv-image{
	width: 58%;
}
.fv-textbox-inner{
	display: inline-flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 31%;
}
.fv-title{
	font-size: 40px;
	color: #00A0CD;
	font-weight: 700;
	margin-bottom: 24px;
	display: inline-block;
	letter-spacing: 0.8px;
}
.fv-title>span{
	background-color: #fff;
	padding: .4rem;
}
.fv-subtitle{
	display: inline-block;
	padding-left: .4rem;
}

.ssg-theme {
	padding: 160px 0;
	position: relative;
}
.ssg-theme::before {
	content: "What's\ASSG HOLDINGS";
	white-space: pre;
	color: #00A0CD;
	font-family: 'Oswald', sans-serif;
	font-weight: 900;
	font-size: 185px;
	line-height: 1.2;
	opacity: 10%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
	.ssg-theme img {
		padding-left: 10%;
		padding-right: 10%;
	}
	.ssg-theme::before {
		font-size: 15vw;
	}
}
@media screen and (max-width: 959px) {
	.fv-herobox {
		padding-top: 60px;
	}
	.fv-flex {
		flex-direction: column;
	}
	.fv-textbox{
		width: 100%;
	}
	.fv-image{
		width: 100%;
	}
	.fv-textbox-inner {
		display: block;
		position: relative;
		top:unset;
		transform: unset;
		left: unset;
		padding: 24px 0;
	}
	.fv-title{
		display: block;
		text-align: center;
	}
	.fv-subtitle{
		display: block;
		text-align: center;
	}
	.fv-title>span {
		background-color: unset;
	}	
	.fv-herobox::before {
		left: 0;
	}

}
@media screen and (max-width: 599px) {
	.fv-pc{
		display: none;
	}
	.fv-sp{
		display: block;
	}
	.fv-textbox-inner {
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		left: 50%;
		padding: 24px 0;
		width: 96%;
		background-color: rgba(255, 255, 255, .8);
	}
	.fv-title{
		font-size: max(6.67vw , 24px);
	}
	.ssg-theme {
		padding: 120px 0;
	}
	.fv-herobox::before {
		width: 50%;
		left: -20%;
	}
}

/* --------------------
common
-------------------- */
.pc{
	display: block;
}
.sp{
	display: none;
}
.t-center{
	text-align: center;
}
.center{
	margin-left: auto;
	margin-right: auto;
}
.section{
	padding: 80px 0;
}
.container{
	width: 96%;
	max-width: 960px;
	margin: auto;
}
.btn{
	padding: 16px;
	border: solid 1px #00A0CD;
	display: block;
	position: relative;
	width: 280px;
	border-radius: 50px;
	text-align: center;
	transition : 0.5s;
}
.btn::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 2px;
}
.btn.wt-btn{
	color: #00A0CD;
	background: #FFF;
}
.btn.wt-btn::after{
	content: '';
	background-color: #00A0CD;
}
.btn.or-btn{
	color: #FFF;
	background: #FF9900;
	border: solid 1px #FF9900;
}
.btn.or-btn::after{
	content: '';
	background-color: #FFF;
}
.btn.wt-btn:hover{
	color: #FFF;
	background: #FF740C;
	transition : 0.5s;
}
.btn.wt-btn:hover::after{
	background: #FFF;
	transition : 0.5s;
}
.btn.or-btn:hover{
	color: #FF9900;
	background: #FFF;
	transition : 0.5s;
}
.btn.or-btn:hover::after{
	background: #FF9900;
	transition : 0.5s;
}
.sec-title{
	font-size: 32px;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 40px;
	text-align: center;
}
.sec-title::before{
	content: attr(data-en);
	font-family: 'Oswald', sans-serif;
  	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	color: #00A0CD;
	display: block;
	padding-bottom: 5px;
}
.sec-title::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background-color: #00A0CD;
	display: block;
}
.sec-title.d-or{
	color: #FFF;
}
.sec-title.d-or::before{
	color: #0A4C5E;
}
.sec-title.d-or::after{
	background-color: #0A4C5E;
}



@media screen and (max-width: 959px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
}
@media screen and (max-width: 599px) {
	.sec-title {
		font-size: max(5.33vw , 20px);
	}
	.sec-title::before{
		font-size: 16px;
	}
	.section{
		padding: 64px 0;
	}
}

/* --------------------
sec-strategy
-------------------- */
.sec-strategy .sec-title{
	text-align: right;
}
.sec-strategy .sec-title::after{
	left: unset;
	transform: unset;
	right: 0;
}
.sec-strategy{
	background-image: url(../images/sec01-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 100%;
	z-index: 1;
}
.sec-strategy::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background: transparent linear-gradient(180deg, #6DCECA 0%, #009CC8 100%) 0% 0% no-repeat padding-box;
	opacity: 0.86;
}
.sec-strategy .container{
	max-width: 1200px;
}
.strategyWrap{
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	padding-top: 40px;
}
.strategyWrap-left{
	width: 500px;
}
.strategyWrap-right p{
	font-size: 40px;
	font-weight: 700;
	color: #FFF;
	text-align: right;
	margin-bottom: 64px;
}
.sec-strategy .btn{
	margin-left: auto;
}
.strategyWrap-right{
	margin-left: auto;
}
@media screen and (max-width: 959px) {
	.strategyWrap{
		flex-direction: column-reverse;
	}
	.strategyWrap-right p{
		text-align: center;
	}
	.sec-strategy .btn{
		margin-right: auto;
	}
	.strategyWrap-right{
		margin-right: auto;
	}
	.sec-strategy .sec-title{
		text-align: center;
	}
	.sec-strategy .sec-title::after{
		left: 50%;
		transform: translateX(-50%);
		right: unset;
	}
	.strategyWrap-right p{
		margin-bottom: 40px;
	}
	.strategyWrap-left{
		margin-bottom: 64px;
	}
}
@media screen and (max-width: 599px) {
	.strategyWrap-right p{
		font-size: max(6.67vw , 24px);
	}
	.strategyWrap-left {
		width: 100%;
	}
	.sec-strategy{
		margin-top: 0;
	}
	.strategyWrap{
		padding-top: 0;
	}
}

/* --------------------
sec-business
-------------------- */
.sec-business{
	background-color: #FFF;
	border-radius: 0px 0px 100px 0px;
	position: relative;
	z-index: 1;
}
.businessWrap{
	display: flex;
	flex-wrap: wrap;
	gap: 64px 16px;
	justify-content: center;
	margin-top: 40px;
	/* margin-bottom: 80px; */
}
.business-item{
	width: calc((100% - 16px * 2) / 3);
}
.business-imgarea.business1{
	background-image: url(../images/service-01.jpeg);
}
.business-imgarea.business2{
	background-image: url(../images/service-02.jpeg);
}
.business-imgarea.business3{
	background-image: url(../images/service-03.jpeg);
}
.business-imgarea.business4{
	background-image: url(../images/service-04.jpeg);
}
.business-imgarea.business5{
	background-image: url(../images/service-05.jpeg);
}
.business-imgarea.business6{
	background-image: url(../images/belle-enfant.png);
}
.business-imgarea{
	position: relative;
	background-position: center;
	background-size: cover;
	height: 200px;
}
.business-imgarea::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent linear-gradient(0deg, #00A0CD 0%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
	opacity: 1;
}
.business-imgarea>p{
	font-size: 24px;
	font-weight: 700;
	color: #FFF;
	position: absolute;
	bottom: 10px;
	display: flex;
	align-items: center;
}
.business-imgarea>p::before{
	content: '';
	display: block;
	width: 20px;
	height: 3px;
	background-color: #FFF;
	border-radius: 0px 50px 50px 0px;
	margin-right: .5rem;
}
.business-textarea{
	padding: 20px 1rem 0;
}
.business-textarea-link{
	display: inline-flex;
	align-items: center;
	border-bottom: 1px solid #3a2810;
	vertical-align: middle;
}
.material-symbols-outlined.i-open{
	font-size: 16px;
	color:#3a2810;
}
.business-textarea-link:hover .material-symbols-outlined.i-open{
	color: #00A0CD;
}

@media screen and (max-width: 959px) {
	.business-item{
		width: calc((100% - 16px) / 2);
	}
}

@media screen and (max-width: 599px) {
	.business-item{
		width: 100%;
	}
	.businessWrap{
		row-gap: 40px;
	}
	.business-imgarea>p{
		font-size: 20px;
	}
}

/* --------------------
sec-news
-------------------- */
.sec-news .sec-title{
	text-align: left;
}
.sec-news .sec-title::after{
	left: 0;
	transform: unset;
}
.sec-news {
    background-color: #F9F9F9;
    padding-top: 180px;
    margin-top: -100px;
    position: relative;
    z-index: 0;
}
.news-box{
	margin-bottom: 64px;
}
.sec-news-item{
	border-bottom: 1px dotted #CECECE;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.sec-news-name{
	color: #FFF;
	background-color: #00A0CD;
	padding: 0 20px 2px;
	font-size: 14px;
	border-radius: 50px;
	margin: 0 40px 0 10px;
	width: 134px;
	text-align: center;
}
.sec-news-inline{
	display: inline-block;
}
.sec-news-link:hover{
	border-bottom: none;
}


@media screen and (max-width: 959px) {
	.sec-news-title{
		width: 100%;
		display: block;
		padding-top: 10px;
	}
}
@media screen and (max-width: 599px) {
	.sec-news {
		padding-top: 164px;
	}
}

/* --------------------
Footer
-------------------- */
.ft1{
	background-color: #00A0CD;
	color: #FFF;
	padding: 64px 0;
}
.ft2{
	font-size: 12px;
	padding: 20px 0;
}
.ft1-wrap{
	display: flex;
}
.footer-left h1{
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 36px;
	margin-bottom: 20px;
}
.footer-left h1>span{
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
}
/* .footer-logo {
	width: 180px;
	margin-bottom: 20px;
} */
.footer-ident{
	font-size: 14px;
}
.footer a:hover{
	color: #0A4C5E;
	border-bottom: none;
}
.footer-right{
	display: flex;
	margin-left: auto;
}
.footer-right li{
	margin-bottom: .75rem;
}
.ft-business{
	font-size: 14px;
	display: flex;
	align-items: center;
}
.ft-business::before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background-color: #FFF;
    border-radius: 50px;
    margin-right: 5px;
}
.ft-right-list1{
	margin-right: 64px;
}
.ft-terms-list li{
	display: inline;
	padding-left: 40px;
}
.ft2>div{
	display: flex;
	justify-content: space-between;
}

.ft-terms-class {
	font-weight: bold;
}
.ft-terms-list + .ft-terms-list {
	margin-top: 0.5em;
	display: flex;
	justify-content: space-between;
}


@media screen and (max-width: 959px) {
	.ft1-wrap{
		flex-direction: column;
	}
	.footer-right{
		margin-right: auto;
	}
	.footer-left{
		text-align: center;
		margin-bottom: 64px;
	}
	.footer-logo {
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 767px) {
	.footer-right{
		font-size: 14px;
		justify-content: space-around;
		margin-left: 20px;
		margin-right: 0;
		flex-direction: column;
	}
	.ft-right-list1 {
    margin-right: 30px;
	}
	.ft2>div {
		flex-direction: column;
	}
	.ft2 .container>p {
		text-align: center;
	}
	.ft-terms-list {
		text-align: center;
	}
	.ft-terms-list + .ft-terms-list {
		display: block;
	}
	/* .footer-logo {
		width: 140px;
	} */
	.footer-left h1{
		font-size: max(4.6875vw , 30px);
	}
}
@media screen and (max-width: 599px) {
	.ft2{
		text-align: center;
	}
	.ft2>div{
		flex-direction: column-reverse;
	}
	.ft-terms-list{
		margin-left: -40px;
		margin-bottom: 16px;
	}
	.ft-terms-list li {
		display: block;
	}
}

/* --------------------
page common
-------------------- */
.p-topsec{
	margin-top: 100px;
}
@media screen and (max-width: 959px) {
	.p-topsec{
		margin-top: 60px;
	}
}

/* --------------------
page-sunsun
-------------------- */
.p-ssg-fv {
	background-image: url(../images/ssg_fv.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 680px;
	opacity: .8;
	margin-top: 100px;
	position: relative;
}
.p-ssg-fv::after {
	content: '';
	display: block;
	background-color: #000;
	width: 100%;
	height: 100%;
	opacity: .4;
}
.p-ssg-index{
	color: #FFF;
	font-size: 20px;
	z-index: 1;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-shadow: 1px 1px 2px black;
	width: 100%;
}
.p-ssg-title{
	font-size: 56px;
	font-weight: 700;
}

.sl-biz-carousel{
	width: 90%;
	margin-left: auto;
}
.slick-list{
	padding: 0 5% 0 0!important;
}
.sl-biz-textarea{
	background: #00A0CD;
	color: #FFF;
	padding: 40px 24px;
	height: 200px;
	position: relative;
}
.sl-biz-textarea::before{
	content: '';
	display: block;
	width: 3px;
	height: 20px;
	border-radius: 0 50px 50px 0;
	background: #FFF;
	position: absolute;
	top: 0;
	right: 18px;
}
.sl-biz-textarea::after {
	content: attr(data-en);
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFF;
	display: block;
	position: absolute;
	transform: rotate(90deg);
	transform-origin: left center;
	top: 18px;
	right: -62px;
}
.sl-biz-title{
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 4px;
}
.sl-biz-item{
	margin-right: 24px;
}
.sl-biz-lineup{
	padding: 64px 0;
}
.p-sec-ssg {
	margin-top: 120px;
}

.p-sec-mvv {
	width: 96%;
	max-width: 1200px;
	margin: auto;
	background: transparent linear-gradient(170deg, #6DCECA 0%, #00A0CD 100%) 0% 0% no-repeat padding-box;
	z-index: 1;
	position: relative;
	overflow: hidden;
	padding: 96px 0;
	margin-top: -80px;
	margin-bottom: 80px;
}

.p-sec-mvv::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../images/mvv_bg.png);
	background-position: 100% center;
	background-repeat: no-repeat;
	background-size: auto 96%;
	z-index: -1;
	mix-blend-mode: color-burn;
}

.sec-mvv-content + .sec-mvv-content {
	margin-top: 80px;
}
.sec-mvv-title {
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #FFF;
}
.sec-mvv-title img {
	width: 96px;
	height: auto;
	padding-right: 10px;
}
.sec-mvv-title>span {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 56px;
	padding-right: 16px;
}

.sec-mvv-textBox {
	margin-top: 30px;
}

.sec-mvv-index {
	font-size: 20px;
	font-weight: bold;
	color: #FFF;
}

.sec-mvv-text {
	color: #FFF;
	padding-top: 16px;
}

.sec-mvv-value-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 30px;
}
.sec-mvv-value-textBox {
	background: #FFF;
	padding: 16px;
	width: calc((100% - 48px) / 3);
}
.sec-mvv-value-index {
	font-size: 20px;
	font-weight: bold;
	color: #FF740C;
	text-align: center;
}
.sec-mvv-value-index>span {
	display: block;
}
.sec-mvv-value-text {
	font-size: 14px;
	padding-top: 10px;
	list-style-type: disc;
	padding-left: 20px;
}

.sec-mvv-value-text >li + li {
	padding-top: 16px;
}

@media screen and (max-width: 1199px){
	.p-ssg-index{
		font-size: 1.66666vw;
	}
	.p-ssg-title{
		font-size: 4.66666vw;
	}
	.p-sec-ssg {
		margin-top: 80px;
	}
	.p-sec-mvv {
		padding: 80px 0;
		margin-bottom: 64px;
	}
	.p-sec-mvv .container {
		width: 90%;
	}

}

@media screen and (max-width: 959px){
	.p-ssg-fv {
		height: 320px;
		opacity: .8;
		margin-top: 60px;
	}
	.p-ssg-index{
		font-size: max(14px , 1.66666vw);
	}
	.p-ssg-title{
		font-size: max(36px , 4.66666vw);
	}

	.p-sec-mvv {
		padding: 64px 0;
	}
	.sec-mvv-content + .sec-mvv-content {
		margin-top: 64px;
	}

	.sec-mvv-title>span {
		font-size: 40px;
	}

	.sec-mvv-index {
		font-size: 18px;
	}
	.sec-mvv-text {
		padding-top: 14px;
	}

	.sec-mvv-value-wrap {
		gap: 16px;
		margin-top: 24px;
	}
	.sec-mvv-value-textBox {
		width: calc((100% - 24px) / 2);
	}
	.sec-mvv-value-index {
		font-size: 18px;
	}
	.p-sec-mvv::before {
		background-position: 80% center;
	}
}


@media screen and (max-width:599px){
	.sl-biz-lineup{
		width: 96%;
		margin-left: auto;
		padding-top: 40px;
	}
	.sl-biz-carousel{
		width: 100%;
	}
	.sl-biz-textarea{
		padding: 36px 16px;
	}
	.sl-biz-title{
		font-size: 20px;
	}
	.p-ssg-index{
		font-size: max(14px,2.67vw);
	}
	.ssg-titleArea {
		padding-top: 40px;
		margin-top: -130px;
	}
	.sec-mvv-value-textBox {
		width: 100%;
	}
	.p-sec-mvv::before {
		background-position: 60% 64px;
		background-size: auto 50%;
	}
	.sec-mvv-text {
		padding-top: 10px;
	}
	.sec-mvv-title img {
		width: 80px;
	}
}

/* --------------------
page-business
-------------------- */
.page .businessWrap {
    margin-bottom: 0;
}


/* --------------------
page-news
-------------------- */
.sec-news.page{
	padding-top: 80px;
	background: #FFF;
}
.sec-news.page .sec-title {
    text-align: center;
}
.sec-news.page  .sec-title::after{
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width:599px){
	.sec-news.page{
		padding-top: 64px;
	}
}

/* --------------------
page-company
-------------------- */
.link {
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #3a2810;
    vertical-align: middle;
}
.link:hover .material-symbols-outlined.i-open {
    color: #00A0CD;
}
.profile-list{
	padding-top: 24px;
}
.profile-item{
	display: flex;
    border-bottom: 0.5px solid rgba(197, 197, 197, .5) ;
    padding: 24px;
}
.profile-item:first-of-type{
	border-top: 0.5px solid rgba(197, 197, 197, .5) ;
}
.profile-item dt{
	width: 30%;
}
.profile-item dd{
	width: 70%;
}
.profile-item dd div{
	margin-bottom: 10px;
}
.sctl-box .sec-title::before{
	font-size: 16px;
}



@media screen and (max-width:599px){
	.profile-item{
		flex-direction: column;
	}
	.profile-item dt{
		width: 100%;
		padding-bottom: 16px;
	}
	.profile-item dd{
		width: 100%;
	}
	.profile-item dd div{
		margin-bottom: 5px;
	}
	.profile-list {
		padding-top: 0;
	}
	.sctl-box .sec-title::before{
		font-size: 12px;
	}

}


/* --------------------
news
-------------------- */
/* パンくずリスト */
.breadcrumb{
	background: #F9F9F9;
	padding: 20px 0;
}
.breadcrumb-list{
    list-style: none;
}
.breadcrumb-item{
	display: inline;
}
.breadcrumb-item a{
	color: inherit;
	text-decoration: none;
}
.breadcrumb-item a:hover{
	color: #00A0CD;
}
.breadcrumb-item + .breadcrumb-item:before{
	content: ">";
	margin:.5em;
}
.custom-on p{
	line-height: 1.8;
	margin-bottom: 24px;
}
.post-titleBox{
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: #00A0CD 3px solid;
}
.post-title{
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}
.page .sec-news-name{
	margin-left: 0;
}
.post-contents{
	margin-bottom: 64px;
}

/* --------------------
404
-------------------- */
.title-404{
	font-family: 'Oswald', sans-serif;
  	font-weight: 700;
	font-size: 50px;
	color: #00A0CD;
}
.title-404 span{
	font-size: 120px;
	display: block;
	line-height: 1;
}
.text-404{
	margin-bottom: 64px;
}


/* --------------------
アプリケーションサービス
-------------------- */
.appWrap{
	position: relative;
	margin-bottom: 20%;
	margin-top: 120px;
}
.app-index {
	text-align: left;
	width: 50%;
	letter-spacing: .15rem;
}
.app-index h2{
	font-size: 40px;
	font-weight: bold;
	padding-bottom: 40px;
}
.app-index p{
	line-height: 1.8;
}
.app-img{
	position: absolute;
}
.app-img.ph1{
	top: -20%;
	left: 55%;
	width: 480px;
}
.app-img.ph2{
	left: 90%;
	top: 66%;
	width: 232px;
}
.app-desc__img {
	width: 160px;
	/* margin-top: 1em; */
}
.app-desc__login-link {
	text-decoration: underline;
}
@media screen and (max-width:1220px){
	.app-img.ph1{
		width: max(420px , 37.5vw);
	}
	.app-img.ph2{
		width: 18.125vw;
		left: 83%;
		top: 61%;
	}
}
@media screen and (max-width:960px){
	.app-index{
		width: 100%;
	}
	.app-index h2{
		font-size: max(20px,4.167vw);
	}
	.app-img.ph1{
		width: max(292px, 30.4vw);
		left: 52%;
	}
	.app-img.ph2{
		left: unset;
		top: 24%;
		right: 0;
	}
}
@media screen and (max-width:767px){
	.app-img.ph1{
		left: unset;
		right: 0;
		top: 0;
		z-index: -1;
		opacity: 0.2;
	}
	.app-img.ph2{
		left: unset;
		top: unset;
		bottom: 0;
		right: 0;
		z-index: -1;
		opacity: 0.5;
	}
	.appWrap {
    position: relative;
    margin-bottom: 64px;
    margin-top: 60px;
}
}
/* @media screen and (max-width:480px){
	.app-img.ph1{
		width: 41.67vw;
		left: unset;
		right: -10%;
		top: -10%;
	}
	.app-img.ph2{
		display: none;
	}
} */
.app-desc-title{
	background: #CECECE;
	font-size: 24px;
	font-weight: bold;
	padding: .75rem;
}
.app-desc-list{
	margin-top: 24px;
	margin-bottom: 40px;
}
.app-desc-item {
	border-bottom: 0.5px solid rgba(197, 197, 197, .5);
	padding: 24px;
}
.app-desc-item dt{
	padding-bottom: 1rem;
}
.app-desc-item dd .plan {
	font-weight: bold;
	color: #00A0CD;
	margin-right: 0.5em;
}
.app-contact-note{
	font-size: 14px;
	text-align: center;
	padding-top: .5em;
}
.p-contentsservice .app-contact-note{
	margin-bottom: .5rem;
}

.custom-on ol {
	display: block;
	list-style-type: decimal;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 40px;
	unicode-bidi: isolate;
}
.kaiyaku .app-index h2 span{
	font-size: 30px;
	display: block;
	line-height: 1.5;
}
@media screen and (max-width: 960px) {
	.kaiyaku .app-index h2 span {
			font-size: max(20px, 3.125vw);
	}
}

.mov-atendText {
	font-size: 14px;
	margin-top: 40px;
	padding: 0 5%;
}

.shirube-mov {
	width: 90%;
	margin-top: .5em;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	background-color: #292929;
	position: relative;
	transition: all .3s;
}

.shirube-mov::after {
	content: '別タブで動画を再生します';
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #FFF;
	z-index: 2;
}

.shirube-mov-link {
	display: block;
	width: 100%;
	height: 100%;
	transition: all .3s;
}

.shirube-mov:hover .shirube-mov-link {
	opacity: .4;
	border: none;
}

.shirube-mov:hover::after {
	display: block;
} 

.notes-required {
  text-align: center;
  padding-top: 30px;
}
.checkBtn{
  display: inline-flex;
    justify-content: center;
    align-items: center;
}
.notes-required label input {
  margin-right: 10px;
}
.btnArea {
  margin: 30px auto 0;
  position: relative;
}
.btnArea input[type="submit"]{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  padding: 0;
  z-index: -1;
  transition-duration: 0.3s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.btnArea input[type="submit"] {
  cursor: default;
  z-index: +1;
  outline: none;
}
.btnArea._check input[type="submit"] {
  z-index: -1;
}
.btnArea a.btn {
  background: #969696;
  position: relative;
  transition-duration: 0.2s;
  border: 1px solid #969696;
}
._check a.btn {
  background: #00A0CD;
  border: 1px solid #00A0CD;
}

.checkBtn-area .kiyaku-link {
	border-bottom: 1px solid #292929;
}
.checkBtn-area .kiyaku-link:hover {
	border-bottom: 1px solid #00A0CD;
}

.check-btnArea {
	margin-top: 20px;
}


.ssg-titleArea .p-sec-ssg-text {
	font-size: 24px;	
}

@media screen and (max-width: 599px) {
	.ssg-titleArea .p-sec-ssg-text {
		font-size: 18px;
	}
}

.p-sec-ssg .business-textarea-link {
	border-bottom: 1px solid #FFF;
}
.p-sec-ssg .material-symbols-outlined.i-open {
	color: #FFF;
}

.p-sec-ssg .business-textarea-link:hover {
	color: #FFF;
	opacity: .7;
}
.p-sec-ssg .business-textarea-link:hover .material-symbols-outlined.i-open {
	color: #FFF;
	opacity: .7;
}

.app-desc-flex {
	display: flex;
	align-items: center;
	gap: 20px;
}
.app-desc-flex a {
	border-bottom: 1px solid #00A0CD;
	display: inline-flex;
	align-items: center;
	color: #00A0CD;
	transition: all .3s;
}
.app-desc-flex a:hover {
	opacity: .7;
}
.app-desc-flex .material-symbols-outlined {
	font-size: 20px;
}

.seminar-fv {
	display: flex;
	margin-bottom: 64px;
}
.seminar-fv-ph {
	width: 50%;
}
.seminar-index {
	text-align: left;
	width: 50%;
	letter-spacing: .15rem;
	line-height: 1.8;
}
.seminar-index-lineText {
	background-color: #FF9900;
	color: #F9F9F9;
	display: inline-block;
	padding: 0 10px;
}
.seminar-index-title {
	font-size: 40px;
	font-weight: bold;
	padding-bottom: 40px;
	margin-top: 24px;
}
.seminar-index-title span {
	font-size: 30px;
	display: block;
	line-height: 1.5;
}
.btn-seminar {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 24px;
	font-weight: bold;
	width: 80%;
	max-width: 800px;
	height: 100%;
	padding: 10px 30px;
	background-color: #FF9900;
	color: #F9F9F9;
	margin: 24px auto;
	text-align: center;
	border-radius: 10px;
	border-bottom: 5px solid 	#b84c00;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	transition: all .3s;
}
.btn-seminar:hover {
	background: #f56500;
  border-bottom: 2px solid #b84c00;
	color: #F9F9F9;
	border: none;
}
.btn-seminar span {
	display: block;
	background-color: #FFF;
	color: #FF9900;
	padding: 4px 8px;
	border-radius: 50px;
	font-size: 16px;
}
.btn-seminar:hover span {
	color: #f56500;
}
.seminar-note {
	padding: 0;
}
.seminar-note + .seminar-note {
	margin-top: 8px;
}
.seminar-note a {
		border-bottom: 1px solid #3a2810;
}
.seminar-note a:hover {
	border-bottom: 1px solid #00A0CD;
}
.seminar-btnBox {
	margin-bottom: 64px;
}

@media screen and (max-width: 896px){
 .seminar-index-lineText {
	width: 90%;
	margin-top: 10px;
 }
 .seminar-index-title {
	font-size: max(4.464vw , 32px);
 }
 .seminar-index-title span {
	font-size: max(3.348vw , 20px);
 }
}

@media screen and (max-width:767px){
	.seminar-fv {
		flex-direction: column;
		margin-bottom: 64px;
	}
	.seminar-index {
		width: 100%;
	}
	.seminar-fv-ph {
		width: 100%;
	}
 .seminar-index-lineText {
		width: 280px;
		display: block;
		margin-top: 10px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
 }
 .seminar-index-title {
		text-align: center;
 }
 .seminar-index>p {
	text-align: center;
 }
 .seminar-fv-ph {
	margin-top: 24px;
 }
}


/* システム・アプリ開発事業 */
.p-development__fv {
	background: url(../images/development_fv.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 680px;
	width: 100%;
	position: relative;
	opacity: 0.8;
}
.p-development__title {
	font-size: 40px;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	text-shadow: 1px 1px 2px black;
}
.p-development__title span {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	display: block;
}
.p-development-achieve {
	margin: 160px 0 80px;
}
.p-development-achieve__contents {
	display: flex;
	gap: 40px;
}
.p-development-achieve__contents__img {
	width: 50%;
}
.p-development-achieve__contents__textBox {
	width: 50%;
}
.p-development-achieve__contents__textBox a {
    border-bottom: 1px solid #00A0CD;
    display: inline-flex;
    align-items: center;
    color: #00A0CD;
    transition: all .3s;
}
.p-development-achieve__contents__textBox a:hover {
	opacity: .7;
}
.p-development-achieve__contents__title {
	font-size: 20px;
	font-weight: bold;
}
.p-development-achieve__contents__text {
	margin-top: 20px;
}
.p-development .btnBox {
	margin-bottom: 80px;
}
.p-development-text {
	margin-top: 80px;
}
.p-development-text h3 {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	background-color: #00A0CD;
	color: #FFF;
	padding: 1em;
}

@media screen and (max-width: 767px){
	.p-development__fv {
		height: 300px;
	}
	.p-development__title {
		font-size: max(4.432vw, 20px);
		width: 100%;
	}
	.p-development-achieve {
		margin: 60px 0 40px;
	}
	.p-development-achieve__contents {
		flex-direction: column;
		gap: 20px;
	}
	.p-development-achieve__contents__img {
		width: 100%;
	}
	.p-development-achieve__contents__textBox {
		width: 100%;
	}
	.p-development-achieve__contents__title {
		font-size: 18px;
	}
	.p-development-achieve__contents__text {
		margin-top: 10px;
	}
	.p-development-text {
		margin-top: 60px;
	}
	.p-development-text h3 {
		font-size: max(3.129vw , 20px);
	}
}