.golf-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/golf/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;
  justify-content: space-between;
  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;
  line-height: 160%;
  flex: 1;
}
.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;
  max-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: 80px;
}
.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: 50px;
  font-size: 40px;
  font-weight: bold;
  text-align: center
}
.case-list {
	display: flex;
	justify-content: center;
  gap: 40px;
}
.case-list > .item {
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
  width: 100%;
  max-width: 350px;
	border-radius: 4px;
	background: #fff;
}
.case-list > .item > .imgcontent {
	position: relative;
	width: 100%;
	height: 184px;
	margin-right: 32px;
}
.case-list > .item > .imgcontent > .img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.case-list > .item > .imgcontent > .logo {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 146px;
	height: auto;
	background: #fff;
	padding: 8px;
}
.case-list > .item > .imgcontent > .logo > .img {
	width: 100%;
	vertical-align: middle;
}
.case-list > .item > .info {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px;
}
.case-list > .item > .info > .name {
	font-size: 13px;
	font-weight: bold;
}
.case-list > .item > .info > .message {
	margin: 8px 0 20px;
	font-size: 16px;
	font-weight: bold;
	line-height: 26px;
	overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.case-list > .item > .info > .footer {
	display: flex;
	margin-top: auto;
}
.case-list > .item > .info > .footer > .tags {
	display: flex;
	align-items: center;
}
.case-list > .item > .info > .footer > .tags > .tag {
	display: inline-block;
	padding: 6px 8px;
	border-radius: 2px;
	border: 1px solid #1A315D;
	color: #1A315D;
	font-size: 13px;
	font-weight: bold;
	line-height: 13px;
}
.case-list > .item > .info > .footer > .tags > .tag:not(:last-child) {
	margin-right: 12px;
}
.case-list > .item > .info > .footer > .link {
	display: inline-flex;
	align-items: center;
	margin-left: auto;
	padding-right: 12px;
	background: url(../../images/lp/icon/arrow-right-blue.svg) no-repeat right;
	color: #0050A0;
	font-size: 13px;
	font-weight: bold;
	line-height: 14px;
}
.case-list > .item > .info > .footer > .link:hover {
	transition: .2s;
	opacity: .7;
}


/*--------------------------------
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: 0 auto;
	padding: 120px 0;
}
.function-area > .content > .heading {
	margin-bottom: 50px;
	font-size: 40px;
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.function-area > .content > .heading.-show {
	opacity: 1;
	transform: translateY(0);
}
.function-area > .content > .function {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.function-area > .content > .function.-show {
	opacity: 1;
	transform: translateY(0);
}
.function-area > .content > .function > .item {
	width: calc(25% - 16px);
	padding: 40px 32px;
	background: #fff;
}
.function-area > .content > .function > .item:nth-child(n + 5) {
	margin-top: 24px;
}
.function-area > .content > .function > .item > .img {
	display: block;
	max-height: 60px;
	margin: 0 auto 24px;
}
.function-area > .content > .function > .item > .title {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin-bottom: 16px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
.function-area > .content > .btns {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 500ms;
}
.function-area > .content > .btns.-show {
	opacity: 1;
	transform: translateY(0);
}
.function-area > .content > .btns > .btn {
	width: 100%;
	max-width: 300px;
	height: 60px;
	border-radius: 40px;
	background: #0072a6;
	transition: 0.3s;
}
.function-area > .content > .btns > .btn:not(:last-child) {
	margin-right: 24px;
}
.function-area > .content > .btns > .btn > .link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 16px;
}
.function-area > .content > .btns > .btn:hover {
	border: 1px solid #0072a6;
	background: #fff;
}
.function-area > .content > .btns > .btn:hover > .link {
	color: #0072a6;
}



@media screen and (max-width: 1024px) {
  .golf-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;
  }

  .function-area > .content > .function {
    flex-wrap: wrap;
    gap: 20px;
  }
  .function-area > .content > .function > .item {
    width: calc(50% - 12px);
  }
}

@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: 30px;
  }
  .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;
    padding: 28px 24px 24px;
    width: 100%;
  }
  .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: 340px;
    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: 30px;
  	font-size: 28px;
	}
	.case-list {
		display: block;
	}
	.case-list > .item {
		width: 100%;
    max-width: 100%;
	}
	.case-list > .item > .info > .footer {
		flex-direction: row;
	}
	.case-list > .item > .info > .footer > .tags {
		margin-bottom: 0;
	}

  /*--------------------------------
  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: 28px;
	}
	.function-area > .content > .function > .item {
		width: 100%;
		padding: 32px 24px 40px;
	}
	.function-area > .content > .function > .item:nth-child(n + 2) {
		margin-top: 16px;
	}
	.function-area > .content > .function > .item > .title {
		height: auto;
		font-size: 18px;
	}
	.function-area > .content > .function > .item > .text {
		display: flex;
		justify-content: center;
	}
	.function-area > .content > .btns {
		display: block;
	}
	.function-area > .content > .btns > .btn {
		max-width: 360px;
		margin: auto;
	}
	.function-area > .content > .btns > .btn:not(:last-child) {
		margin: 0 auto 20px;
	}

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