@charset "utf-8";
/* CSS Document */

:root {
  --primary-color: #E73656;
  /* オレンジ系 (画像参考) */
  --secondary-color: #007bff;
  /* 青系 (画像参考) */
  --text-color: #333;
  --background-color: #fff;
  --light-gray: #f4f4f4;
  --dark-gray: #555;
  --container-width: 1100px;
  --border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*Regular*/
@font-face {
  font-family: "Myfont";
  src: url('../font/NotoSansJP-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*Medium*/
@font-face {
  font-family: "Myfont";
  src: url('../font/NotoSansJP-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/*Bold*/
@font-face {
  font-family: 'Myfont';
  src: url('../font/NotoSansJP-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  /*color: var(--text-color);*/
  background-color: var(--background-color);
  color: #292929;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
/* a:hover {
	opacity: .7;
} */
img {
  width: 100%;
  vertical-align: bottom;
}

.inner {
  max-width: 1200px;
  min-width: 1024px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.flexBox {
  display: flex;
  align-items: center;
  /* 縦位置調整（任意） */
  justify-content: space-between;
  flex-wrap: wrap;
  /* スマホ対応も意識する場合 */
}

h2.ttl {
  font-size: 3rem;
  color: #292929;
  letter-spacing: 0.05rem;
  padding-top: 50px;
  text-align: center;
}
h4 {
  display: inline-block;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  border-left:5px solid #E73656; /*線の設定*/
  border-right:5px solid #E73656; /*線の設定*/
  padding:0px 16px; /*余白の設定*/
}
.inner h4 > span {
	color: #E73656;
	font-weight: bold;
}
.inner h4+p {
  margin: 2rem auto;
  text-align: center;
  font-size: 24px;
}
/** header
----------------------------------------------------------------------------**/
header {
  padding: 10px 6%;
}
header>.flexBox {
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 15%;
}
.headNav>li {
  margin-right: 25px;
}
.headNav>li:last-child {
  margin-right: 0;
}
.headNav a {
  font-size: 18px;
  color: #292929;
}
.headNav>li:nth-child(3)>a {
  color: #E73656;
  font-weight: bold;
  border: #E73656 solid 2px;
  padding: 7px 25px;
  border-radius: 5px;
}
.headNav>li:last-child>a {
  background: #E73656;
  color: #fff;
  padding: 7px 25px;
  border-radius: 5px;
}
#js-header.is-show {
  position: fixed;
  width: 100vw;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 2;
}
/** hamburger　menu
----------------------------------------------------------------------------**/
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #292929;
  border-radius: 2px;
}

/** main
----------------------------------------------------------------------------**/
/* #main {} */
.fv {
  position: relative;
  margin-top: 5px;
  background: url("../images/bg_gray.jpg");
  background-size: cover;
  background-position-x: -180px;
  overflow: hidden;
}
.fv>.inner {
  max-width: inherit;
  min-width: inherit;
  margin: 0 auto;
  margin-left: 8%;
}
.fv>.flexBox {
  justify-content: space-between;
  text-align: left;
}
.fv_txt {
  margin-top: 5px;
  text-align: center;
}
.fv_txt>img {
  width: 35%;
}
.fv_txt>h2 {
  	font-weight: bold;
    font-size: 1.8vw;
    text-align: center;
    border-top: #292929 solid 1px;
    border-bottom: #292929 solid 1px;
    padding: 1.5rem 0px;
    margin: 2rem 0px;
}
.fv_txt>h2>.title_pink {
	color: #E73656;
	font-weight: bold;
	font-size: 1.8vw;
}
.fv_txt > h2 > span {
  font-size: 2.5vw;
}
.fv_txt {
  padding: 20px;
  width: 47%;
}
.fv_txt small {
  display: block;
  text-align: left;
  margin: 1.2rem 0px;
}
.fv_img_wrap {
  position: relative;
  width: 53%;
}
.fv_img {
  width: 100%;
  position: relative;
  height: 60vh;
  min-width: 300px;
  overflow: hidden;
}

.fv_img .fade-img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  object-fit: cover;
  object-position: left
}

.fv_img .fade-img.show {
  opacity: 1;
}

.fv_badge {
  position: absolute;
  bottom: 1rem;
  left: 0;
  display: flex;
}
.fv_badge>li {
  display: flex;
  flex-direction: column;
  margin-right: 1.5rem;
  font-weight: 600;
  transform: rotate(-2deg);

}

.fv_badge>li>span {
  background: linear-gradient(transparent 60%, #e6e230 50%);
  background-repeat: no-repeat;
  background-position: left 0.5em bottom;
  background-size: 75% auto;
  font-size: 1.2em;
  transform: rotate(-3deg);
  position: relative;
  margin-left: -0.3em;
}
.fv_badge>li>span>ruby {
  position: relative;
  top: 0.2em;
}

.fv_badge>li>p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 11rem;
  height: 4.5em;
  border-radius: 70% 58% 70% 58% / 70% 58% 70% 58%;
  /*	border-radius:  65% 35% 65% 35% / 65% 35% 65% 35%;*/
  text-align: center;
  font-size: 1.8em;
  line-height: 1.4;
  letter-spacing: 0.05em;
  box-shadow: 02px 2px 4px rgba(169, 45, 68, 0.7);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

}
.fv_badge>li>p.color_typea {
  background-color: #E73656;
  color: #fff;
}
.fv_badge>li>p.color_typeb {
  background-color: #fff;
  color: #E73656;
}
.fv .btn_wrap {
	width: 48%;
}
.fv .btn_wrap:nth-child(2) {
    background-color: #fff;
}
.fv .btn_wrap:nth-child(2) a {
    color: #E73656;
}
.fv .btn_wrap:nth-child(2) span {
	background: #E73656;
	color: #fff;
}
.fv .btn_wrap:nth-child(2) span::after {
	border-color: #E73656 transparent transparent transparent;
}

/** Link BTN
---------------------------------------------**/
.btn_wrap {
	text-align: center;
	width: 85%;
	max-width: 410px;
    border-radius: 10px;
    background-color: #E73656;
    padding: 1rem 0px;
    margin: 3rem auto 0px;;
    position: relative;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.btn_wrap a {
    color: #fff;
	width: 65%;
    font-size: clamp(14px, 1.3vw, 28px);
    font-weight: 700;
}
/*ctaのホバーデザイン入れる
.btn_wrap > a:hover {
  
}
*/
.btn_fv span::before {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #E73656 transparent transparent transparent;
}
.btn_fv span {
  color: #E73656;
  font-size: clamp(0.6rem, 1vw, 1.4rem);
  position: absolute;
  top: -65%;
  left: 4%;
  right: 4%;
  padding: 10px 0px;
  border: 2px solid #E73656;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.btn_fv span::after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/** infinity-scroll
---------------------------------------------**/
.scroll-infinity>h2 {
  font-size: 2.5rem;
}

.scroll-infinity>h2>span {
  color: #e73656;
  font-weight: bolder;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  align-items: center;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 9);
  margin: 0 25px;
}
.scroll-infinity__item>img {
  width: 100%;
}
/** reason
---------------------------------------------**/
#reason {
  background-color: #E73656;
  padding: 3rem 0px;
}

#reason h2 {
  color: #ffffff;
}
#reason .flexBox {
  justify-content: center;
  align-items: flex-start;
  margin-top: 4.5rem;
  opacity: 0;
  gap: 3%;
}
#reason .flexBox>li {
  width: 25%;
  background-color: #ffffff;
  margin-bottom: 3%;
  padding: 3%;
}
#reason .flexBox>li>a {
  color: #292929;
}
#reason .flexBox>li>a>img {
  display: block;
  width: 50%;
  margin: auto;
}
#reason .flexBox>li>a>p {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
}
/** reason_detail
---------------------------------------------**/
#reason_detail {
  padding-bottom: 5rem;
  background: url("../images/bg_gray.jpg");
  background-size: cover;
  padding-top: 5rem;
}
#reason_detail .inner {
	text-align: left;
}
/* .detail {} */
.detail>ul {
  background-color: #ffffff;
  padding: 3%;
}
.detail>.flexBox {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  opacity: 0;
}
.detail>.flexBox:last-of-type {
  margin-bottom: 0;
}

.detail>.flexBox>li:first-child {
  width: 40%;
}
.detail>.flexBox>li:last-child {
  width: 55%;
}
.detail>.flexBox>li>.flexBox {
  justify-content: left;
  gap: 5%;
  align-items: center;
}
.detail>.flexBox>li>div>b {
  color: #E73656;
  font-size: 5rem;
  font-weight: normal;
  font-family: 'Impact', sans-serif;
  margin-left: 15px;
}

.detail>.flexBox>li>div>p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
.detail>.flexBox>li>p {
  font-size: 18px;
  line-height: 2;
}
.detail>.flexBox>li>p>b {
  color: #E73656;
  font-size: clamp(14px, 3vw, 22px);
}

.inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: .3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/** download
---------------------------------------------**/
.download {
	background-image: url(../img/01ab/performance_bg.png);
	padding: 5rem 0px;
}
.download  h4{
	border-left: none;
	border-right: none;
}
.download .flexBox {
	display: flex;
	background-color: #fff;
	padding: 68px 32px;
	margin-top: 3.5rem;
	box-shadow: 0px 5px 33px 0px rgba(0, 0, 0, 0.15);
}
.download .flexBox > img.download_img {
	width: 50%;
}
.download .flexBox > div.download_txt {
	width: 50%;
}
.download ul.download_list {
	text-align: left;
    margin-left: 20%;
	font-size: clamp(16px, 4vw, 26px);
    line-height: 2;
	margin-bottom: 72px;
}
.download ul.download_list > li > span {
	font-size: clamp(0.7rem, 3vw, 1.1rem);
}
.download ul.download_list > li {
	position: relative;
	font-weight: bold;
}
.download ul.download_list > li::before {
	position: absolute;
    left: -2.2rem;
	top: 3px;
    content: url(../img/01ab/checkmark.svg);
    width: 1.6rem;
}
/**sample
---------------------------------------------**/
#sample {
	padding: 5rem 0px;
    background-image: linear-gradient(#ffffff, #fff2f5);
}
#sample .btns {
	margin-bottom: 32px;
}
#sample button {
    color: #E73656;
    width: 24%;
    background-color: unset;
    font-size: clamp(1rem, 2.2vw, 1.7rem);
	font-weight: bold;
    border: none;
	font-family: inherit;
}

#dashboard_content,
#content_list_content,
#analytics_content,
#usage_content {
  display: none;
  box-shadow: 0px 5px 33px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
#dashboard_content > img,
#content_list_content > img,
#analytics_content > img,
#usage_content > img {
	border-radius: 10px;
}

#dashboard_btn.active,
#content_list_btn.active,
#analytics_btn.active,
#usage_btn.active {
  color: #fff;
  background-color: #E73656;
  padding: 10px 0px;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
}

#dashboard_content.active,
#content_list_content.active,
#analytics_content.active,
#usage_content.active {
  display: block;
}

/** #function
---------------------------------------------**/
#function {
	padding: 5rem 0px 0px;
	background-color: #f5f5f5;
}
#function .function_list {
	background-color: #fff;
	box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.05);
	padding: 54px 60px 0px;
	justify-content: space-between;
}
#function .function_list > li {
	width: 30%;
	margin-bottom: 54px;
}
#function .function_list .function_img {
	width: 120px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
#function .function_list .function_txt {
	margin-top: 20px;
	font-size: 1.5rem;
}
/** #usecase
---------------------------------------------**/
#usecase {
	padding: 5rem 0px;
	background-color: #f5f5f5;
}
#usecase .usecase_list {
	justify-content: space-between;
}
#usecase .usecase_list > li {
	width: 32%;
	margin-bottom: 40px;
}
#usecase .usecase_list .usecase_txt {
	background-color: #E73656;
	color: #fff;
	padding: 6px 0px;
	font-size: clamp(16px, 4vw, 22px);
}

/** #case_list
---------------------------------------------**/

#case_list {
  padding: 5rem 0px;
}
#case_list article {
  width: 48%;
  display: block;
  margin-bottom: 50px;
  padding: 30px 20px;
  background: #ffebef;
  position: relative;
  text-align: left;
  margin-top: 4rem;
}

#case_list .flexBox {
  align-items: stretch;
}
#case_list article .label {
  color: #FFF;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  padding: 4px 10px;
  background: #E73656;
  position: absolute;
  top: -3%;
  left: 0;
}

#case_list article .ttl {
  margin-bottom: 20px;
  margin-top: 10px;
}

#case_list article .ttl p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

#case_list article .ttl p:last-child {
  font-size: 1.625rem;
  font-weight: 700;
  text-decoration: underline;
}

#case_list article .detail {
  display: flex;
  justify-content: space-between;
}

#case_list article .detail p {
  width: 40%;
}

#case_list article .detail dl {
  width: 56%;
}

#case_list article .detail dl * {
  font-size: 0.9rem;
}

#case_list article .detail dl dt {
  font-weight: 700;
}

#case_list article .detail dl dd {
  margin-bottom: 10px;
}



/** contact
---------------------------------------------**/
#contact {
  margin-top: 5rem;
}
#contact .bg_img {
  padding: 30px 0 20px;
  background: url(../images/performance_bg.png);
  background-size: cover;
}

footer {
  padding: 10px 0;
}
footer p {
  font-size: 15px;
  text-align: center;
}

.sp-only {
		display: none;
	}

/** TAB
---------------------------------------------**/
@media (max-width: 1024px) and (min-width: 768px) {
  #wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
  }
  .inner {
    max-width: 94%;
    min-width: 94%;
    width: 94%;
    margin: 0 auto;
  }


  h2.ttl {
    font-size: 2.8vw;
    margin-top: -70px;
  }
  /** header
	--------------------------------------------------**/
  header {
    padding: 15px 3%;
  }
  header .logo {
    width: 20%;
  }
  header .logo>img {
    vertical-align: middle;
  }
  .headNav {
    /*width: 80%;*/
  }
  .headNav>li {
    margin-right: 15px;
  }
  .headNav a {
    font-size: 1.6vw;
  }
  .headNav>li:last-child>a {
    padding: 5px 15px;
  }

  /** main
	----------------------------------------------------------------------------**/
  .fv {
    background-position-x: -28rem;
  }
  .fv_txt>p {
    font-size: 1.5vw;
  }
  .fv_txt>p:last-of-type {
    font-size: 2vw;
  }
  .fv_txt>span {
    font-size: 1.7vw;
	top: -50%;
    font-size: clamp(0.6rem, 1vw, 1.4rem);
  }

  a.btn_fv {
    width: 85%;
    padding: 12px 0;
    font-size: 1.3vw;
  }

  /** infinity-scroll
	---------------------------------------------**/
  .scroll-infinity {
    padding: 4rem 0;
  }
  .scroll-infinity__item {
    width: calc(100vw / 6);
    margin: 0 15px;
  }

  /** nsolution
	---------------------------------------------**/
  #solution h2 {
    font-size: 2.5vw;
    padding-bottom: 30px;
  }
  /** reason
	---------------------------------------------**/

  #reason .flexBox>li>a>p {
    font-size: 15px;
    line-height: 1.9;
  }
  /** reason_detail
	---------------------------------------------**/

  .detail>.flexBox>li>div>p {
    font-size: 2.5vw;
  }
  .detail>.flexBox>li>p {
    font-size: 1.85vw;
  }
 /** usecase
	--------------------------------------------**/
	#usecase .usecase_list .usecase_txt {    
		height: 85px;
		display: flex;
        justify-content: center;
        align-items: center;
	}
  /** case
	---------------------------------------------**/
  #case_list h2.ttl {
    margin-bottom: 3rem;
    margin-top: 0.5rem;
    font-size: 2rem;
  }
  #case_list>.inner {
    align-items: stretch;
  }
  #case_list article .label {
    color: #FFF;
    font-size: 1.0rem;
    padding: 4px 10px;
    background: #E73656;
    position: absolute;
    top: 0;
    left: 0;
  }
  #case_list article .ttl p {
    font-size: 1rem;
  }
  #case_list article .ttl p:last-child {
    font-size: 1.2rem;
  }
  /** contact
	---------------------------------------------**/
  #contact h4 {
    font-size: 3.5vw;
  }
  #contact h4>span {
    font-size: 2.2vw;
  }
}



/** SP
---------------------------------------------**/
@media screen and (max-width: 768px) {
  /** common
	--------------------------------------------------**/
  #wrapper {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
  }
  .inner {
    max-width: 92%;
    min-width: 92%;
    width: 92%;
    margin: 0 auto;
  }

  h2.ttl {
    font-size: 5vw;
    margin-top: -20px;
  }
  .pc-only {
    display: none;
  }
  .inner h4{
    font-size: clamp(18px, 6.5vw, 40px);
  }
	.inner h4+p {
	font-size: clamp(16px, 4vw, 24px);
	}
  .sp-only {
		display: block;
	}

  /** header
	--------------------------------------------------**/
  header {
    padding: 10px 2%;
  }
  header .logo {
    width: 45%;
  }
  header .logo>img {
    vertical-align: middle;
  }

  .headNav>li {
    margin-right: 10px;
  }
  .headNav a {
    font-size: 3.3vw;
  }
  .headNav>li:last-child>a {
    padding: 5px 15px;
  }


  /** hamburger　menu
----------------------------------------------------------------------------**/
  /* レスポンシブ対応 */

  .headNav {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100vw;
    left: 0;
    position: absolute;
    top: 60px;
    right: auto;
    padding: 10px 0;
    z-index: 1;
  }

  .headNav.is-open {
    display: flex;
  }
  .headNav li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
  }
  .headNav li {
    width: 50%;
    max-width: 500px;
    text-align: center;
  }

  .headNav li:nth-child(2) a {
    margin-bottom: 15px;
  }
  .headNav li:nth-child(3) a {
    margin-bottom: 30px;
  }
  .headNav li:nth-child(4) a {
    margin-bottom: 50px;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 2;
    margin-left: auto;

  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
  }
  .hamburger span {
    transition: all 0.3s ease;
  }


  /** main
	----------------------------------------------------------------------------**/
  /* #main {} */
  .fv {
    position: relative;
    margin-top: 5px;
    background: url("../images/bg_gray.jpg")no-repeat;
    background-position-x: 92%;
    background-size: cover;
  }
  .fv .inner {
    margin: auto;
    flex-direction: column-reverse;
    width: 100%;
  }
  .fv_txt,
  .fv_img {
    width: 100%;
  }
  .fv_txt {
    width: 100%;
    margin-top: 0px;
  }
	.fv_txt > h2,
	.fv_txt > h2 > .title_pink {
		font-size: 3.8vw;
	}
  .fv_txt > h2 > span {
  font-size: 5.4vw;
	}
  .fv_txt>p {
    font-size: 3vw;
    margin-bottom: 1rem;
    text-align: center;
  }

  .fv_txt>p:last-of-type {
    font-size: clamp(1rem, 7vw, 2rem);
  }
  .fv_txt > p > b {
	font-size: clamp(2rem, 6vw, 2.5rem);
  }	
  .fv_txt>span {
    margin-top: 15px;
    font-size: 3vw;
  }
  .fv_txt>img {
    width: 80%;
    margin: 10px 0;
  }
  .btn_fv span {
    font-size: clamp(0.8rem, 2vw, 1rem);
	left: 4%;
	right: 4%;
	top: -2rem;
  }
  .fv_img {
    display: block;
    height: 30vh;
    width: 100%;
    margin: 0 auto 5px;
    display: none;
  }

  a.btn_fv {
    width: 94%;
    padding: 15px 0;
    font-size: clamp(18px, 5vw, 28px);
    margin: 5px auto 30px;
  }
  .fv .btn_wrap {
    width: 100%;
	max-width: 460px;
	margin: 4rem auto 0px;
	}
  /** infinity-scroll
	---------------------------------------------**/
  .scroll-infinity {
    padding: 2rem 0;
  }
  .scroll-infinity h2 {
    padding-top: 0;
  }
  .scroll-infinity__item {
    width: calc((100vw - 40px) / 4);
    /*width: calc(100vw / 4);*/
    margin: 0 10px;
  }
  /** reason
	---------------------------------------------**/
  #reason {
    margin-bottom: 0;
  }
  #reason .flex-box {
    margin-top: 0;
  }
  #reason .flexBox>li {
    width: 45%;
  }
  #reason .flexBox>li>a>p {
    font-size: 2.5vw;
    margin-top: 15px;
  }

  /** reason_detail
	---------------------------------------------**/
  #reason_detail {
    padding-bottom: 5rem;
  }
  .detail {
    margin-top: 3rem;
  }
  .detail>.flexBox {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    opacity: 0;
  }
  .detail>.flexBox:last-of-type {
    margin-bottom: 0;
  }

  .detail>.flexBox>li:first-child {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .detail>.flexBox>li:last-child {
    width: 80%;
    margin: 0 auto;
  }
  .detail>.flexBox>li>b {
    font-size: 10vw;
    font-family: 'Impact', sans-serif;
    margin-left: 0px;
    width: 10%;
  }
  .detail>.flexBox>li>div>p {
    font-size: 4vw;
    line-height: 1.5;
  }

  .detail>.flexBox>li>p:first-of-type {
    font-size: 3vw;
    margin-bottom: 20px;
    line-height: 1.7;
    width: 100%;
  }
  /** download
	---------------------------------------------**/
  .download {
		padding: 3rem 0px;
  }
  .download .flexBox {
    display: block;
	padding: 24px 10px;
	margin-top: 2rem;
  }
  .download .flexBox > div.download_txt {
	width: 100%;
  }
  .download ul.download_list {
	font-size: clamp(1.2rem, 5vw, 2rem);
	margin-bottom: 24px;
    line-height: 1.7;
  }
  .download .flexBox > img.download_img {
    width: 80%;
	margin-bottom: 20px;
  }
  /** sample
	---------------------------------------------**/
	#sample button {
	width: 49%;
	}
  /** function
	---------------------------------------------**/
	#function .function_list .function_txt {
    font-size: clamp(16px, 4vw, 24px);
	}
	#function .function_list {
	padding: 48px 10px 0px;
	}
	#function .function_list .function_img {
    width: 60%;
	}

  /** usecase
	---------------------------------------------**/
	#usecase .usecase_list > li {
    width: 48%;
	}
	#usecase .usecase_list .usecase_txt {
	font-size: clamp(16px, 4vw, 20px);
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	}
  /** case
	---------------------------------------------**/

  #case_list .inner {
    display: block;
  }
  #case_list article {
    display: block;
    width: 100%;
  }

  #case_list h2.ttl {
    font-size: 2rem;
  }

  #case_list article .label {
    font-size: clamp(14px, 3vw, 16px);
  }
  #case_list article .detail {
    flex-direction: column;
    margin-top: 1rem;
  }
  #case_list article .detail>p,
  #case_list article .detail>dl {
    width: 100%;
  }
  #case_list article .ttl p {
    width: 100%;
    font-size: 1rem;
  }
  #case_list article .ttl p:last-child {
    font-size: 1.2rem;
  }


  /** contact
	---------------------------------------------**/
  #contact {
    margin-top: 3rem;
  }
  #contact h4 {
    text-align: center;
    font-size: 5.2vw;
    font-weight: bold;
    margin-top: 1rem;
  }
  #contact h4>span {
    display: block;
    font-size: 3.8vw;
    font-weight: normal;
    padding-top: 15px;
  }

  footer {
    padding: 10px 0;
  }
  footer p {
    font-size: 15px;
    text-align: center;
  }
}
