.conference-room-page {
  padding-top: 144px;
}

/*--------------------------------
main-area
--------------------------------*/

.main-area {
	background: linear-gradient(
		135deg,
		rgba(72, 169, 254, 1) 0%,
		rgba(41, 230, 239, 1) 100%
	);
}
.main-area > .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 92px 0;
}
.main-area > .content > .catch > .title {
  font-size: 48px;
  color: #fff;
  line-height: 160%;
}
.main-area > .content > .catch > .subtitle {
  margin-bottom: 24px;
	color: #F5FF00;
	font-size: 22px;
	font-weight: bold;
  line-height: 30px;
}
.main-area > .content > .catch > .subtitle::after {
  display: block;
  content: '';
  margin-top: 12px;
  width: 100%;
  height: 14px;
  background: url("../../images/lp/use-example/conference-room/main/line.svg") no-repeat
}
.main-area > .content > .catch > .text {
  margin: 40px 0 24px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
.main-area > .content > .catch > .btns {
	display: flex;
  align-items: center;
  gap: 12px;
}
.main-area > .content > .catch > .btns > .link {
	display: flex;
	align-items: center;
	justify-content: center;
  width: 100%;
  padding: 0 12px;
	border-radius: 30px;
	border: 2px solid;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.06);
	transition: 0.2s;
	height: 60px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
  line-height: 22px;
}
.main-area > .content > .catch > .btns > .link.-contact {
	background: #f58629;
  border-color: #f58629;
}
.main-area > .content > .catch > .btns > .link.-demo {
  background: #0BC1BC;
  border-color: #0BC1BC;
}
.main-area > .content > .catch > .btns  > .link:hover {
	background: #fff;
}
.main-area > .content > .catch > .btns > .link.-contact:hover {
	color: #f58629;
}
.main-area > .content > .catch > .btns > .link.-demo:hover {
	color: #0BC1BC;
}
.main-area > .content > .catch > .subsidy {
	display: block;
	text-align: center;
	margin-top: 20px;
	padding: 5px 0;
	width: 100%;
	background-color: #20325C;
	color: #fff;
	text-decoration: underline;
	font-size: 20px;
	font-weight: 700;
}
.main-area > .content > .catch > .subsidy > .highlight {
	color: #fdff16;
}
.main-area > .content > .catch > .subsidy > .sp {
	display: none;
}
.main-area > .content > .imgcontent {
  margin-left: 20px;
  max-width: 580px;
}
.main-area > .content > .imgcontent > .img {
  width: 100%;
}
.main-area > .content > .imgcontent > .img.-sp {
  display: none;
}



/*--------------------------------
problem-area
--------------------------------*/

.problem-area {
  background: #e7f3f9;
}
.problem-area:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-width: 20px 23px 0 23px;
  border-color: #e7f3f9 transparent transparent transparent;
}
.problem-area > .content {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 120px 0;
}
.problem-area > .content > .heading {
  margin-bottom: 48px;
  font-size: 40px;
  text-align: center;
}
.problem-area > .content > .problems {
  display: flex;
  gap: 24px;
}
.problem-area > .content > .problems > .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 40px;
  border-radius: 8px;
  background: #fff;
  flex: 1;
  line-height: 160%;
}
.problem-area > .content > .problems > .item > .label {
  position: absolute;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #003067;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 130%;
}
.problem-area > .content > .problems > .item > .img {
  width: auto;
  height: 90px;
  margin-bottom: 24px;
}


/*--------------------------------
feature-area
--------------------------------*/

.feature-area {
  width: 90%;
  max-width: 1100px;
  margin: 120px auto;
}
.feature-area > .heading {
  margin-bottom: 56px;
  font-size: 40px;
  text-align: center;
}
.feature-area > .container > .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.feature-area > .container > .item:not(:last-child) {
  margin-bottom: 56px;
}
.feature-area > .container > .item > .description > .title {
  font-size: 28px;
  line-height: 160%;
}
.feature-area > .container > .item > .description > .title::before {
  display: block;
  margin-bottom: 24px;
  font-size: 56px;
  font-family: 'DIN 2014', sans-serif;
  color: #1F76DD;
  opacity: 0.38;
}
.feature-area > .container > .item:nth-child(1) > .description > .title::before {
  content: '01';
}
.feature-area > .container > .item:nth-child(2) > .description > .title::before {
  content: '02';
}
.feature-area > .container > .item:nth-child(3) > .description > .title::before {
  content: '03';
}
.feature-area > .container > .item:nth-child(2) > .description {
  order: 1;
}
.feature-area > .container > .item > .imgcontent {
  width: 48%;
  max-width: 400px;
  margin: auto;
  text-align: center;
}
.feature-area > .container > .item > .imgcontent > .img {
  width: 100%;
}
.feature-area > .container > .item > .description > .tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.feature-area > .container > .item > .description> .tags > .tag {
  padding: 8px;
  border: 1px solid #0050A0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #0050A0;
  line-height: 100%;
  white-space: nowrap;
}

/*--------------------------------
case-study
--------------------------------*/

.case-study {
  background: #F7FAFE;
}
.case-study > .content {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 120px 0;
}
.case-study > .content > .heading {
  margin-bottom: 48px;
  font-size: 40px;
  text-align: center;
}
.case-study > .content > .cases {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.case-study > .content > .cases > .item {
  flex: 1;
  padding: 64px 40px;
  background: #fff;
  border-radius: 8px;
}
.case-study > .content > .cases > .item > .title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
  color: #0050A0;
  text-align: center;
  line-height: 160%;
}


/*--------------------------------
contact-section
--------------------------------*/

.contact-section {
  background: #003067;
}
.contact-section > .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 96px 0;
}
.contact-section > .content > .message {
  margin-bottom: 40px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}
.contact-section > .content > .link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 320px;
	border-radius: 30px;
	background: #f58629;
	border: 2px solid #f58629;
	transition: 0.2s;
	height: 60px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
}
.contact-section > .content > .link:hover {
	background: #fff;
	color: #f58629;
}


/*--------------------------------
function-area
--------------------------------*/

.function-area {
  background: #F7FAFE;
}
.function-area > .content {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 120px 0;
}
.function-area > .content > .heading {
  margin-bottom: 48px;
  font-size: 40px;
  text-align: center;
}
.function-area > .content > .function {
  display: flex;
  gap: 40px;
}
.function-area > .content > .function.-top {
  margin-bottom: 40px;
  justify-content: space-between;
}
.function-area > .content > .function.-bottom {
  justify-content: center;
}
.function-area > .content > .function > .item {
  width: calc(33% - 23px);
  border-radius: 8px;
  background: #fff;
  padding: 64px 32px;
  text-align: center;
}
.function-area > .content > .function > .item > .img {
  width: auto;
  height: 60px;
}
.function-area > .content > .function > .item > .text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 140%;
  font-weight: bold;
}
.function-area > .content > .btns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
}
.function-area > .content > .btns > .btn > .link {
  display: flex;
  align-items: center;
  justify-content: center;
	transition: 0.3s;
  width: 320px;
  height: 60px;
  border-radius: 40px;
  background: #0072A6;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
.function-area > .content > .btns > .btn:hover > .link {
	border: 1px solid #0072a6;
	background: #fff;
	color: #0072a6;
}



@media screen and (max-width: 1024px) {
  .conference-room-page {
    padding-top: 46px;
  }
  .main-area > .content > .catch > .title {
    font-size: 36px;
  }
  .main-area > .content > .catch > .btns > .link {
    font-size: 16px;
  }

  .problem-area > .content > .problems {
    flex-wrap: wrap;
  }
  .problem-area > .content > .problems > .item {
    width: calc(50% - 13px);
    flex: auto;
  }

  .case-study > .content > .cases {
    gap: 20px;
  }

}

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

  /*--------------------------------
  main-area
  --------------------------------*/
  .main-area > .content {
    flex-direction: column;
    width: 100%;
    padding: 48px 16px;
  }
  .main-area > .content > .catch > .title {
    font-size: 34px;
  }
  .main-area > .content > .catch > .subtitle {
    font-size: 16px;
  }
  .main-area > .content > .catch > .subtitle::after {
    margin-top: 8px;
  }
  .main-area > .content > .catch > .text {
    margin: 32px 0 16px;
    font-size: 14px;
    line-height: 140%;
  }
  .main-area > .content > .catch > .btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }
  .main-area > .content > .catch > .btns > .link {
    width: 100%;
    max-width: 360px;
  }
  .main-area > .content > .catch > .subsidy {
    padding: 0;
    font-size: 14px;
  }
  .main-area > .content > .catch > .subsidy > .highlight {
    color: #fdff16;
  }
  .main-area > .content > .catch > .subsidy > .sp {
    display: block;
  }
  .main-area > .content > .imgcontent {
    margin: 24px 0 0;
  }
  .main-area > .content > .imgcontent > .img.-pc {
    display: none;
  }
  .main-area > .content >  .imgcontent > .img.-sp {
    display: block;
  }


  /*--------------------------------
  problem-area
  --------------------------------*/
  .problem-area > .content {
    width: 100%;
    padding: 80px 16px;
  }
  .problem-area > .content > .heading {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 140%;
  }
  .problem-area > .content > .heading > .inner {
    display: block;
  }
  .problem-area > .content > .problems {
    flex-direction: column;
    gap: 32px;
  }
  .problem-area > .content > .problems > .item {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 28px 24px 24px;
  }
  .problem-area > .content > .problems > .item > .label {
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    line-height: 120%;
  }
  .problem-area > .content > .problems > .item > .text {
    margin-right: 20px;
  }
  .problem-area > .content > .problems > .item > .img {
    order: 1;
    height: 60px;
    margin-bottom: 0;
  }


  /*--------------------------------
  feature-area
  --------------------------------*/
  .feature-area {
    width: 100%;
    margin: 80px auto;
    padding: 0 16px;
  }
  .feature-area > .heading {
    margin-bottom: 32px;
    font-size: 30px;
    line-height: 140%;
  }
  .feature-area > .container > .item {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-area > .container > .item:not(:last-child) {
    margin-bottom: 48px;
  }
  .feature-area > .container > .item:nth-child(2) > .description {
    order: 0;
  }
  .feature-area > .container > .item > .description {
    margin-bottom: 16px;
  }
  .feature-area > .container > .item > .description > .title {
    font-size: 20px;
    line-height: 160%;
  }
  .feature-area > .container > .item > .description > .title::before {
    margin-bottom: 16px;
    font-size: 40px;
  }
  .feature-area > .container > .item > .imgcontent {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .feature-area > .container > .item > .description> .tags {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px
  }
  .feature-area > .container > .item > .description> .tags > .tag {
    margin-top: 0;
    padding: 8px;
    white-space: nowrap;
    font-size: 12px;
  }

  /*--------------------------------
  case-study
  --------------------------------*/
  .case-study > .content {
    width: 100%;
    padding: 80px 16px;
  }
  .case-study > .content > .heading {
    margin-bottom: 32px;
    font-size: 30px;
    line-height: 140%;
  }
  .case-study > .content > .cases {
    flex-direction: column;
    gap: 20px 0;
  }
  .case-study > .content > .cases > .item {
    padding: 40px;
  }
  .case-study > .content > .cases > .item > .title {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .case-study > .content > .cases > .item > .text {
    font-size: 14px;
    line-height: 160%;
  }


  /*--------------------------------
  contact-section
  --------------------------------*/
  .contact-section > .content {
    width: 100%;
    padding: 40px 16px;
  }
  .contact-section > .content >  .message {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
  }
  .contact-section > .content > .link {
    max-width: 360px;
  }
  


  /*--------------------------------
  function-area
  --------------------------------*/
  .function-area > .content {
    width: 100%;
    padding: 80px 16px;
  }
  .function-area > .content > .heading {
    margin-bottom: 32px;
    font-size: 30px;
  }
  .function-area > .content > .function {
    flex-direction: column;
    gap: 20px 0;
  }
  .function-area > .content > .function > .item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px;
  }
  .function-area > .content > .function.-top {
    margin-bottom: 24px;
  }
  .function-area > .content > .function > .item > .img {
    margin-right: 20px;
    width: 32px;
    height: auto;
  }
  .function-area > .content > .function > .item > .text {
    margin: 0;
    text-align: left;
    font-size: 14px;
  }
  .function-area > .content > .btns {
    flex-direction: column;
    align-items: center;
  }

  /*--------------------------------
  guide-area
  --------------------------------*/
	.guide-area > .content > .heading {
    font-size: 30px;
  }
}