@charset "UTF-8";
:root{
	/* color */
	--Blue: #194b73;
	--LightBlue: #e8edf1;
	--DeepBlue: #3278aa;
	--Yellow: #fffa00;
	--Green: #005532;
	--LightGreen: #e5eeea;
	--TxtGreen: #008769;
	--Red: #ac393d;
	--LightRed: #f7ebec;
	--Purple: #645082;
	--LightPurple: #efedf2;
	--BlueGD: linear-gradient(90deg, rgba(50, 120, 170, 1), rgba(25, 75, 115, 1));
	--GreenGD: linear-gradient(90deg, rgba(0, 85, 50, 1), rgba(0, 153, 105, 1));
	--LogoColorLightGD: linear-gradient(90deg, rgba(50, 120, 170, 1), rgba(0, 135, 105, 1));
	--LogoColorDeepGD: linear-gradient(90deg, rgba(25, 75, 115, 1), rgba(0, 85, 50, 1));
	--btnGD: linear-gradient(90deg, rgba(255, 250, 60, 1), rgba(255, 220, 30, 1));
	/* border-radius */
	--border-radius-5: 5px;
    --border-radius-10: 10px;
	/* width */
	--width: 1280px;
	--w990: 990px;
	--w500: 500px;
	/* font-family */
	--ffOs: "Oswald";
	--noto-serif: "Noto Serif JP", serif;
	/* font-weight
	============================== */
	--light: 300;
	--regular: 400;
	--medium: 500;
	--bold: 700;
	--black: 900;
}
.container {
    margin: 0 auto;
    max-width: var(--width);
    padding: 100px 30px;
    position: relative;
    text-align: center;
}
@media screen and (max-width:897px){
	.container {
		max-width: var(--w500);
        padding: 60px 25px;
	}
}
/*
	tit
-----------------------------------------------------------------------------------------------*/
[class^="section__head"]{
	font-size: 4rem;
	font-weight: var(--bold);
	text-align: center;
	margin-bottom: 60px;
}
.section__head--white{
	color: #fff;
}
.section__head--white .section__head--sub{
	color: #fff;
}
.section__head--sub{
	font-size: 2rem;
	font-family: var(--ffOs);
	font-weight: var(--regular);
	display: block;
	margin-top: 30px;
	color: var(--DeepBlue);
}
[class^="section__lead"]{
	font-size: 1.6rem;
	font-weight: var(--medium);
	line-height: 1.8;
	margin-bottom: 50px;
}
.section__lead--white{
	color: #fff;
}
@media screen and (max-width:897px){
	[class^="section__head"]{
		font-size: 2.8rem;
		line-height: 1.4;
		margin-bottom: 40px;
	}
	.section__head--sub{
		font-size: 1.8rem;
		margin-top: 20px;
		margin-bottom: 30px;
	}
	[class^="section__lead"]{
		font-size: 1.4rem;
		line-height: 175%;
		margin-bottom: 30px;
		text-align: left;
	}
}
/*
	kv
-----------------------------------------------------------------------------------------------*/
#kv{
	width: 100vw;
	min-width: 1200px;
	height: 475px;
	position: relative;
	z-index: 1;
}
.kv__container{
	background: url(../img/ph_kv_bg_pc.png) no-repeat center/ cover;
	height: 100%;
}
.kv__box{
	align-items: start;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    letter-spacing: .1rem;
    margin: 0 auto;
    max-width: var(--width);
    padding: 70px;
    position: relative;
    text-align: left;
    z-index: 1;
}
.kv__head{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.kv__logo{
	width: 520px;
}
.kv__lead{
	font-size: 2.2rem;	
	font-weight: var(--bold);
	margin-bottom: 30px;
}
.kv__point--list {
    bottom: 18px;
    display: flex;
	gap: 20px;
    position: absolute;
    right: 70px;
	bottom: 20px;
    text-align: right;
    z-index: 1;
}
.kv__point--item{
	width: 160px;
	height: 160px;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: var(--BlueGD);
	border-radius: 50%;
	padding-bottom: 10px;
}
.kv__point--txt{
	font-size: 1.4rem;
	font-weight: var(--bold);
	color: #fff;
}
.kv__point--keyword{
	font-size: 3.3rem;
	font-weight: var(--black);
	color: var(--Yellow);
}
.kv__point--number{
	font-size: 6rem;
	line-height: 1;
	font-weight: var(--bold);
	font-family: var(--ffOs);
	color: var(--Yellow);
}
@media screen and (max-width:897px){
	#kv {
        min-width: auto;
		height: auto;
    }
	.kv__container{
		background: url(../img/ph_kv_bg_sp.png) no-repeat center/ cover;
		height: 100%;
	}
	.kv__box {
		align-items: center;
		justify-content: flex-start;
		height: 530px;
		padding: 50px 20px;
	}
	.kv__logo{
		width: 80%;
		min-width: 280px;
	}
	.kv__lead {
		font-size: 1.6rem;
		line-height: 1.6;
		text-align: center;
	}
	.kv__point--list {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		bottom: 20px;
		gap: 10px;
	}
	.kv__point--item{
		width: 100px;
		height: 100px;
		padding-bottom: 5px;
	}
	.kv__point--txt{
		font-size: 1rem;
	}
	.kv__point--keyword{
		font-size: 2.1rem;
	}
	.kv__point--number{
		font-size: 3.5rem;
	}
}
/*
	value
-----------------------------------------------------------------------------------------------*/
#value{
	background: url(../img/ph_value_bg.png) no-repeat top/ cover;
}
.value__list {
    display: flex;
    gap: 0 30px;
    justify-content: center;
}
.value__item{
    width: calc((100% - 50px) / 3);
    background-blend-mode: screen;
	position: relative;
	padding: 30px;
	color: #fff;
}
.value__item::after {
    content: '';
    background: linear-gradient(90deg, rgba(0, 150, 200, 1), rgba(50, 190, 160, 1));
    mix-blend-mode: screen;
	opacity: 0.4;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.value__item--num{
	font-size: 4rem;
	font-family: var(--noto-serif);
	font-weight: var(--bold);
	position: relative;
	z-index: 2;
	opacity: 0.6;
}
.value__item--head{
	font-size: 2.2rem;
	position: relative;
	z-index: 2;
	font-weight: var(--medium);
	line-height: 1.4;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
}
.value__item--txt{
	text-align: left;
	font-size: 1.4rem;
	position: relative;
	z-index: 2;
	line-height: 1.8;
	text-align: justify;
}
@media screen and (max-width:897px){
	.value__list {
		flex-direction: column;
		gap: 25px;
	}
	.value__item {
		width: 100%;
		padding: 20px;
	}
	.value__item--num {
		font-size: 3.5rem;
	}
	.value__item--head {
		font-size: 1.8rem;
		height: auto;
	}
	.value__item--txt {
		font-size: 1.4rem;
		line-height: 175%;
	}
}
/*
	about
-----------------------------------------------------------------------------------------------*/
.about__head{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 37px;
}
.about__head--tit{
	background: var(--LogoColorLightGD);
	color: #fff;
	font-size: 3.4rem;
	font-weight: var(--bold);
	height: 60px;
	padding: 5px 25px;
	display: inline-flex;
	align-items: center;
}
.about__head--sub {
    position: relative;
    border-bottom: 1px solid var(--Blue);
    color: var(--Blue);
    font-weight: var(--bold);
    font-size: 26px;
    text-align: center;
	display: inline-block;
	padding-bottom: 10px;
}

.about__head--sub:before,
.about__head--sub:after {
	content: "";
    position: absolute;
    top: 100%;
    left: 50%;
	-webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 0;
    width: 0;
}

.about__head--sub:before {
	border: solid 16px transparent;
    border-top: solid 16px var(--Blue);
}

.about__head--sub:after {
    border: solid 18px transparent;
    border-top: solid 18px #fff;
    margin-top: -1px;
	margin-left: -2px;
}
.about__txt{
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: var(--bold);
	margin-bottom: 50px;
}
.about__txt--keyword{
	color: var(--DeepBlue);
}
.about__ph{
	margin-bottom: 50px;
}
.about__txt--solution{
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: var(--medium);
}
@media screen and (max-width:897px){
	.about__head--sub {
		font-size: 2rem;
		display: block;
		max-width: 220px;
		margin: 0 auto 25px auto;
	}
	.about__head {
		display: block;
		margin-bottom: 37px;
	}
	.about__head--tit {
		font-size: 2.8rem;
		height: auto;
		padding: 15px 25px;
		line-height: 150%;
	}
	.about__txt {
		font-size: 1.4rem;
		line-height: 175%;
		margin-bottom: 30px;
		text-align: left;
	}
	.about__ph {
		margin-bottom: 30px;
	}
	.about__txt--solution {
		font-size: 1.4rem;
		line-height: 175%;
		text-align: left;
	}
}
/*
	issue
-----------------------------------------------------------------------------------------------*/
.problem{
	background: var(--LightBlue);
	position: relative;
}
.problem::before {
    background: var(--LightBlue);
    bottom: -45px;
    content: '';
    height: 95px;
    left: 50%;
    transform: translate(-50%, 0) rotate(45deg);
    position: absolute;
    width: 95px;
}
.damage__list{
	display: flex;
    gap: 0 15px;
    justify-content: center;
	max-width: var(--w990);
	margin: 0 auto 50px auto;
}
.damage__item{
	width: calc((100% - 30px) / 3);
}
.damage__box{
	background: var(--Blue);
	color: #fff;
	font-size: 1.4rem;
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 185px;
}
.damage__note {
    font-size: 1.1rem;
    font-weight: var(--regular);
    margin-top: 5px;
    padding-left: 1em;
    text-align: left;
    text-indent: -1em;
}
.damage__note--txt {
    line-height: 130%;
	letter-spacing: normal;
}
.damage__note--txt::before {
    content: '※';
}
.damage__keyword{
	height: 73px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.damage__keyword{
	color: var(--Yellow);
	font-size: 3rem;
	font-weight: var(--bold);
	line-height: 1.2;
}
.damage__num{
	font-size: 5rem;
	line-height: 1;
}
[class^="issue__tit"]{
	font-size: 3.5rem;
    font-weight: var(--bold);
    text-align: center;
	position: relative;
	background: #fff;
	display: inline-block;
	padding: 15px 30px;
	color: var(--Blue);
	margin-bottom: 84px;
}
[class^="issue__tit"]::before,
[class^="issue__tit"]::after{
	position: absolute;
    top: 50%;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 15px;
    height: 100%;
    content: '';
    border-top: solid 3px;
    border-bottom: solid 3px;
}
[class^="issue__tit"]::before {
    border-left: solid 3px;
    left: 0;
}

[class^="issue__tit"]::after {
    border-right: solid 3px;
    right: 0;
}
.issue__keyword{
	font-size: 40px;
}
.issue__list{
	display: flex;
    gap: 45px;
    justify-content: center;
}
.issue__item{
	width: calc((100% - 30px) / 3);
	background: #fff;
	padding: 54px 20px 30px 20px;
	position: relative;
	border-radius: var(--border-radius-10);
}
.issue__box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	height: 320px;
	z-index: 1;
}
[class^="issue__consultation"]{
	font-size: 1.9rem;
	font-weight: var(--bold);
	text-align: center;
	position: absolute;
    left: 50%;
	top: -30px;
    transform: translateX(-50%);
	padding: 20px 30px;
	white-space: nowrap;
	color: #fff;
	display: flex;
	align-items: flex-end;
}
[class^="consultation"]{
	font-size: 2.2rem;
	font-weight: var(--bold);
	color: var(--Yellow);
}
.issue__consultation--internal{
	background: var(--Green);
}
.issue__consultation--operation{
	background: var(--Red);
}
.issue__consultation--environment{
	background: var(--Purple);
}
[class^="issue__pic"]{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
}
.issue__pic--internal{
	width: 225px;
	margin-left: 5px;
}
.issue__pic--operation{
	width: 234px;
	margin-left: -15px;
}
.issue__pic--environment{
	width: 220px;
	margin-left: -10px;
}
[class^="issue__comment"]{
	font-size: 1.4rem;
	font-weight: var(--bold);
	text-align: left;
	width: 84%;
	line-height: 1.5;
	padding: 15px;
	letter-spacing: 0;
	position: relative;
	border-radius: var(--border-radius-10);
}
[class^="issue__comment"]::after{
	content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
	left: 30px;
    bottom: -14px;
}
.issue__comment--internal{
	background: var(--LightGreen);
}
.comment__keyword--internal{
	color: var(--Green);
}
.issue__comment--internal::after{
	border-top: 15px solid var(--LightGreen);
}
.issue__comment--operation{
	background: var(--LightRed);
}
.comment__keyword--operation{
	color: var(--Red);
}
.issue__comment--operation::after{
	border-top: 15px solid var(--LightRed);
}
.issue__comment--environment{
	background: var(--LightPurple);
}
.comment__keyword--environment{
	color: var(--Purple);
}
.issue__comment--environment::after{
	border-top: 15px solid var(--LightPurple);
}
.issue__comment--invert{
	margin-left: auto;
}
.issue__comment--invert::after{
	transform: rotate(180deg);
	top: -14px;
	left: auto;
	right: 30px;
}
.solution{
	background: url(../img/pic_solution_bg.png) repeat left top / 100px;
}
.issue__tit--solution{
	background: linear-gradient(90deg, #3278aa 0%,#008769 100%);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	margin-bottom: 34px;
}
.issue__tit--solution::before,
.issue__tit--solution::after{
	border-image: linear-gradient(to right, #3278aa 0%,#008769 100%)1;
}
@media screen and (max-width:897px){
	.problem::before {
		bottom: -25px;
		height: 50px;
		width: 50px;
	}
	.damage__list {
		flex-direction: column;
		gap: 15px;
		max-width: 100%;
	}
	.damage__item {
		width: 100%;
		font-size: 1.4rem;
		gap: 10px;
	}
	.damage__box {
		padding: 15px;
		height: auto;
	}
	.damage__note {
		font-size: 1rem;
	}
	.damage__keyword {
		font-size: 2rem;
		height: auto;
	}
	.damage__num {
		font-size: 3rem;
	}
	[class^="issue__tit"] {
		line-height: 150%;
		margin-bottom: 50px;
		font-size: 2.5rem;
	}
	.issue__keyword {
		font-size: 3.2rem;
	}
	.issue__list {
		gap: 40px;
		flex-direction: column;
	}
	.issue__item {
		width: 100%;
	}
	[class^="issue__consultation"] {
		font-size: 1.6rem;
		padding: 15px 25px;
		top: -25px;
	}
	[class^="consultation"] {
		font-size: 2rem;
	}
	.issue__box {
		height: 360px;
	}
}
.solution__detail{
	padding-top: 100px;
    margin-top: -100px; 
}
[class^="solution__box"]{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding: 40px 15px;
	background: #fff;
	margin-bottom: 50px;
}
.solution__btn{
	display: flex;
	justify-content: center;
	gap: 50px;
}
[class^="solution__button"]{
	font-size: 1.9rem;
    font-weight: var(--bold);
    text-align: center;
    padding: 20px 30px;
    white-space: nowrap;
    color: #787878;
    display: flex;
    align-items: flex-end;
	background: #f0f0f0;
	width: 260px;
	justify-content: center;
	margin-bottom: 74px;
	position: relative;
}
[class^="solution__button"]::after{
	content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #787878;
    border-right: 2px solid #787878;
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%) rotate(135deg);
}
.consultation__keyword--btn{
	color: #787878;
}
.solution__button:hover::after {
	transition: .3s;
	bottom: -40px;
}
.active .consultation__keyword--btn{
	color: var(--Yellow);
}
.internal__btn.active{
	background: var(--Green);
	color: #fff;
}
.operation__btn.active{
	background: var(--Red);
	color: #fff;
}
.environment__btn.active{
	background: var(--Purple);
	color: #fff;
}
.solution__box--internal{
	border: solid 2px var(--Green);
}
.solution__box--operation{
	border: solid 2px var(--Red);
}
.solution__box--environment{
	border: solid 2px var(--Purple);
	margin-bottom: 0;
}
.solution__img{
	width: 40%;
	display: flex;
	justify-content: center;
}
.solution__pic--internal{
	width: 390px;
}
.solution__pic--operation{
	width: 330px;
}
.solution__pic--environment{
	width: 390px;
}
.solution__description{
	text-align: left;
	width: 60%;
}
[class^="solution__tit"]{
	display: inline-block;
	font-size: 3rem;
	font-weight: var(--bold);
	padding: 15px 20px;
	color: #fff;
	margin-bottom: 10px;
}
.solution__tit--internal{
	background: var(--Green);
}
.solution__tit--operation{
	background: var(--Red);
}
.solution__tit--environment{
	background: var(--Purple);
}
[class^="solution__item"]{
	padding: 20px 0;
}
[class^="solution__item"]:last-of-type{
	border-bottom: none;
}
.solution__item--internal{
	border-bottom: 1px dotted var(--Green);
}
.solution__item--operation{
	border-bottom: 1px dotted var(--Red);
}
.solution__item--environment{
	border-bottom: 1px dotted var(--Purple);
}
[class^="solution__txt"]{
	font-size: 1.4rem;
	position: relative;
	padding-left: 30px;
}
[class^="solution__txt"]::before{
	content: "";
	position: absolute;
	left: 0;
	top: -4px;
	border-bottom: 4px solid;
    border-right: 4px solid;
	height: 23px;
	width: 17px;
	transform: rotate(45deg);
}
.solution__txt--internal::before{
	border-color: #b2ccc1;
}
.solution__txt--operation::before{
	border-color: #e6c4c5;
}
.solution__txt--environment::before{
	border-color: #d0cad9;
}
@media screen and (max-width:897px){
	.solution__btn {
		flex-direction: column;
		gap: 60px;
		margin-bottom: 50px;
	}
	[class^="solution__button"] {
		font-size: 1.9rem;
		width: 100%;
		margin-bottom: 0;
	}
	[class^="solution__button"]::after {
		bottom: -25px;
	}
	.solution__detail{
		padding-top: 50px;
		margin-top: -50px; 
	}
	[class^="solution__box"] {
		flex-direction: column;
		gap: 30px;
		padding: 20px;
		margin-bottom: 50px;
	}
	.solution__description {
		width: 100%;
	}
	[class^="solution__item"]{
		padding-left:2em;
		text-indent:-2em;
	}
	.solution__img {
		width: 80%;
	}
	[class^="solution__tit"] {
		font-size: 2rem;
		padding: 15px 20px;
		line-height: 1.4;
	}
	[class^="solution__txt"] {
		padding-left: 32px;
	}
}
/*
	system
-----------------------------------------------------------------------------------------------*/
#system{
	background: var(--LightBlue);
    position: relative;
}
#system .container{
	padding: 100px 0;
	max-width: 100%;
}
[class^="system__item"]{
	display: flex;
	margin-bottom: 140px;
}
.system__item{
	justify-content: flex-start;
}
.system__item--invert{
	justify-content: flex-end;
}
[class^="system__description"]{
	display: flex;
	flex-direction: column;
	text-align: left;
	width: 60%;
	position: relative;
	
}
.system__description{
	align-items: flex-end;
	background: var(--BlueGD);
	padding: 45px 150px 45px 30px;
	border-radius: 0 10px 10px 0;
}
.system__description--invert{
	align-items: flex-start;
	background: var(--GreenGD);
	padding: 45px 30px 45px 150px;
	border-radius: 10px 0 0 10px;
}
[class^="system__name"]{
	display: inline-block;
	background: #fff;
	font-size: 3rem;
	font-weight: var(--bold);
	font-family: var(--ffOs);
	padding: 15px 20px;
	line-height: 1;
	border-radius: var(--border-radius-5);
	margin-bottom: 30px;
}
.system__name{
	color: var(--Blue);
}
.system__name--invert{
	color: var(--Green);
}
.system__txt{
	font-size: 1.8rem;
	color: #fff;
	line-height: 1.6;
}
[class^="system__pic"]{
	width: 510px;
	position: absolute;
	border-radius: var(--border-radius-10);
}
.system__pic{
	right: -400px;
	bottom: -50px;
}
.system__pic--invert{
	left: -400px;
	bottom: -50px;
}
.ueba{
	bottom: -82px;
}
.system__img{
	border-radius: var(--border-radius-10);
}
@media screen and (max-width:897px){
	[class^="system__item"] {
		margin-bottom: 160px;
	}
	[class^="system__item"]:last-child {
        margin-bottom: 70px;
    }
	.system__item{
		padding-right: 30px;
	}
	.system__item--invert{
		padding-left: 30px;
	}
	[class^="system__description"] {
		width: 100%;
		position: relative;
	}
	.system__description {
		padding: 45px 20px 100px 20px;
	}
	.system__description--invert {
		padding: 45px 20px 100px 20px;
	}
	[class^="system__name"]{
		font-size: 2rem;
		margin-bottom: 20px;
		padding: 10px 15px;
	}
	[class^="system__pic"] {
		width: 100%;
		max-width: 300px;
	}
	.system__pic {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		bottom: -100px;
	}
	.system__pic--invert {
		left: 50%;
		transform: translateX(-50%);
		bottom: -100px;
	}
	.ueba{
		bottom: -130px;
	}
	.outcome__navigator{
		bottom: -80px;
	}
	.system__txt {
		font-size: 1.4rem;
		line-height: 175%;
	}
}
/*
	case
-----------------------------------------------------------------------------------------------*/
#case .section__head{
	margin-bottom: 30px;
}
.case__list{
	display: flex;
	gap: 0 15px;
	justify-content: center;
}
.case__item{
	width: calc((100% - 32px)/3);
}
.case__link{
	border: 1px solid #000;
	border-radius: var(--border-radius-5);
	display: block;
	overflow: hidden;
	text-align: left;
}
.case__figure{
	height: 190px;
	overflow: hidden;
}
.case__box{
	background: #eef3f9;
	padding: 20px 20px 15px;
}
.case__tit{
	font-size: 2.0rem;
	margin-bottom: 8px;
}
.case__txt{
	font-size: 1.3rem;
	line-height: 170%;
}
.case__deco{
	align-items: center;
	border-top: 1px solid #000;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	padding: 13px 3px 0;
}
.case__deco--name{
	color: var(--color-blue);
	font-size: 1.0rem;
}
.case__deco--sign{
	font-size: 1.1rem;
	padding-right: 20px;
	position: relative;
}
.case__deco--sign::before{
	background: url(/eye-bousai/assets/img/ico_arrow_02.svg) no-repeat center center / cover;
	content: '';
	height: 7px;
	position: absolute;
	right: 0;
	top: 55%;
	transform: translate(0, -50%);
	width: 14px;
}
.case__container{
	padding-top: 0;
}
@media (hover: hover){
	.case__link:hover{
		box-shadow: 0 0 8px rgb(var(--color-blue-rgb) / 40%);
	}
	.case__figure--picture{
		transition: transform .3s;
	}
	.case__link:hover .case__figure--picture{
		transform: scale(1.05);
		transition: transform .3s;
	}
	.case__deco--sign{
		transition: color .3s;
	}
	.case__link:hover .case__deco--sign{
		color: var(--color-blue);
		transition: color .3s;
	}
}
@media screen and (max-width:897px){
	.case__item{
		width: 100%
	}
}


/*
	question
-----------------------------------------------------------------------------------------------*/
.question__item{
	text-align: left;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	padding: 50px 30px;
	border-radius: var(--border-radius-10);
	background: #fff;
	margin-bottom: 20px;
}
.question__head{
	font-size: 2.2rem;
	font-weight: var(--bold);
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px dotted var(--Blue);
	color: var(--Blue);
}
.question__tit{
	position: relative;
	padding-left:75px;
}
.question__tit::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 5px 0;
    width: 54px;
    height: 54px;
    font-size: 3.5rem;
    font-family: var(--ffOs);
    font-weight: var(--regular);
    background: var(--Blue);
    color: #fff;
    position: absolute;
	top: 50%;
	transform: translateY(-50%);
    left: 0;
    border-radius: 50%;
}
.question__answer{
	font-size: 1.6rem;
	padding-left: 75px;
	line-height: 1.6;
	position: relative;
}
.question__answer::before {
    content: 'A';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 5px 0;
    width: 54px;
    height: 54px;
    font-size: 3.5rem;
    font-family: var(--ffOs);
    font-weight: var(--regular);
    background: #f0f0f0;
    color: #999999;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    left: 0;
    border-radius: 50%;
}
@media screen and (max-width:897px){
	.question__item {
		padding: 30px 20px;
		margin-bottom: 20px;
	}
	.question__head {
		font-size: 2rem;
		padding-top: 70px;
		padding-bottom: 20px;
		margin-bottom: 20px;
		color: var(--Blue);
		display: flex;
        justify-content: center;
		line-height: 130%;
	}
	.question__tit {
		position: relative;
		padding-left: 0;
	}
	.question__tit::before {
		width: 50px;
		height: 50px;
		font-size: 3rem;
		top: -70px;
		left: 50%;
		transform: translateX(-50%);
	}
	.question__answer::before {
		width: 50px;
		height: 50px;
		font-size: 3rem;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.question__answer {
		font-size: 1.4rem;
		padding-left: 0;
		line-height: 175%;
		padding-top: 70px;
		display: flex;
        justify-content: center;
	}
}
/*
	product
-----------------------------------------------------------------------------------------------*/
#product{
	background:var(--LogoColorDeepGD);
}
.product__link{
	display: block;
	width: 600px;
	margin: 0 auto;
	border: 2px solid #fff;
	line-height: 0;
}
.product__link:hover{
	opacity: 0.5;
}
@media screen and (max-width:897px){
	.product__link {
		width: 100%;
	}
}