@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,500,700");
/********* COLORS *********/
body,
.btn{
  --pw:#ffffff;/*snow_white*/
  --w:#f4f4f4;/*kairos_white*/
  --k:#262626;/*kairos_black*/
  --g:#585a5c;/*kairos_gray*/
  --g80:rgba(88, 90, 92,.8);/*kairos_gray80*/
  --g30:rgba(88, 90, 92,.3);/*kairos_gray30*/
  --g10:rgba(88, 90, 92,.1);/*kairos_gray10*/
  --gl1:#E6E7E7;/*primary01_l_kairos_gray100*/
  --gl2:#AEB0B2;/*primary02_l_kairos_gray300*/
  --gd1:#6A6D70;/*primary01_d_kairos_gray500*/
  --gd2:#444546;/*primary02_d_kairos_gray800*/
  --b:#002c76;/*kairos_blue*/
  --mb:#32A2EA;/*marketing_blue*/
  --mb50:#f1f8fe;/*marketing_blue*/
  --mb100:#e2f0fc;/*marketing_blue*/
  --mb200:#bee0f9;/*marketing_blue*/
  --mb300:#85c7f4;/*marketing_blue*/
  --mb500:#1c90db;/*marketing_blue*/
  --mb600:#0e71bb;/*marketing_blue*/
  --mb700:#0d5a97;/*marketing_blue*/
  --mb800:#0f4e7d;/*marketing_blue*/
  --mb900:#124168;/*marketing_blue*/
  --mb950:#0c2945;/*marketing_blue*/
  --mbd1:#0E71BB;/*primary01_d_marketing_blue*/
  --mbd2:#0F4E7D;/*primary2_d_marketing_blue*/
  --mbl1:#E2F0FC;/*primary01_l_marketing_blue*/
  --mbl2:#85C7F4;/*primary2_l_marketing_blue*/
  --sg:#77C24F;/*sales_green*/
  --sg50:#f1faeb;/*sales_green*/
  --sg100:#e1f3d4;/*sales_green*/
  --sg200:#c4e8ae;/*sales_green*/
  --sg300:#9fd77f;/*sales_green*/
  --sg500:#5eaa38;/*sales_green*/
  --sg600:#468729;/*sales_green*/
  --sg700:#386724;/*sales_green*/
  --sg800:#2f5321;/*sales_green*/
  --sg900:#2a4720;/*sales_green*/
  --sg950:#13260d;/*sales_green*/
  --sgd1:#468729;/*primary01_d_sales_green*/
  --sgd2:#2F5321;/*primary2_d_sales_green*/
  --sgl1:#E1F3D4;/*primary01_l_sales_green*/
  --sgl2:#9FD77F;/*primary2_l_sales_green*/
  --to:#EA7A32;/*timing_orange*/
  --to50:#fef7ee;/*timing_orange*/
  --to100:#fcecd8;/*timing_orange*/
  --to200:#f8d6b0;/*timing_orange*/
  --to300:#f3b87e;/*timing_orange*/
  --to400:#ed904a;/*timing_orange*/
  --to600:#da5a1c;/*timing_orange*/
  --to700:#b54319;/*timing_orange*/
  --to800:#90371c;/*timing_orange*/
  --to900:#742f1a;/*timing_orange*/
  --to950:#3f150b;/*timing_orange*/
  --tod1:#DA5A1C;/*primary01_d_timing_orange*/
  --tod2:#90371c;/*primary2_d_timing_orange*/
  --tol1:#FCECD8;/*primary01_l_timing_orange*/
  --tol2:#F3B87E;/*primary2_l_timing_orange*/
  --sk: rgba(88, 90, 92,.1);
  --sw: rgba(245, 245, 245,.3);
  --primary_blue:#32A2EA;
  --primary_l_blue:#85c7f4;
  --primary_d_blue:#0F4E7D;
  --secondary_red:#e91e63;
  --secondary_l_red:#ff6090;
  --secondary_d_red:#b0003a;
  --secondary_purple:#8e24aa;
  --secondary_l_purple:#716175;
  --secondary_d_purple:#5c007a;
  --success:#002c76;/*color success*/
  --error:#FF5E22;/*color error*/
  --warning:#8e24aa;/*color warning*/
  --danger:#b0003a;/*color danger*/
  --orange:#ff761a;/*orange*/
  --yellow:#ffad18;/*yellow*/
  --mkfr: #fff000;/*makefri_yellow*/
  }
/*********** FONT STYLES *********/
  html,
  body {
    font-display: swap;
    font-family: "YakuHanJP","Noto Sans JP","Helvetica Neue", "Helvetica", Arial,"Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, Roboto, sans-serif;
  }
  @media all and (-ms-high-contrast: none)  {
    html {
      font-family: Verdana, Meiryo, sans-serif;
    }
  }
  @media all and (-ms-high-contrast: active) {
    html {
      font-family: Verdana, Meiryo, sans-serif;
    }
  }
  .font-size {
    font-size: .75rem;   /* 12px */
    font-size: .8125rem; /* 13px */
    font-size: .875rem;  /* 14px */
    font-size: 1rem;     /* 16px */
    font-size: 1.25rem;  /* 20px */
    font-size: 1.75rem;  /* 28px */
    font-size: 2rem;  /* 32px */
    font-size: 2.25rem;  /* 36px */
    font-size:2.75rem; /* 44px */
    font-size: 3rem; /* 48px */

}
/********* MISC *********/

.fadein {
  opacity: 0;
  transform : translate(0, 50px);
  transition : all 1800ms;
}
.fadein_left {
  opacity: 0;
  transform : translateX(-50px);
  transition : all 1800ms;
}
.fadein.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}
  .fadein_left.scrollin{
    opacity: 1;
    transform: translateX(0);
  }

/********* COMMON SETTING *********/
body{
  overflow-x:hidden;
  }

html,body {
    color: #262626;
    line-height:1.6;
    font-weight: 300;
    word-wrap:break-word;
    overflow-wrap : break-word;
    position: relative;
    box-sizing: border-box;
    width:100%;
    min-width:320px;
    margin: 0;
  }
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
*:before,
*:after {
box-sizing: inherit;
}
::before , ::after {
	box-sizing: inherit;
}
:root {
  --root-font-size: 16;
}
p {
  font-size: calc( 12 / var(--root-font-size) * 1rem );
}
body {
font-size: .875rem;
font-size: 14px;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  }
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
  h1,h2,h3,h4,h5,h6,th,dt{
    font-family: fot-tsukuardgothic-std,sans-serif;
    line-height: 1;
    font-feature-settings: "palt" 1;
    position: relative;
    z-index: 5;
  }
.title_Box h1,
.title_Box h2{
  font-weight: 700 !important;
  font-feature-settings: "palt" 1;
}
  dd,li,p,pre,span{
    line-height: inherit;
    }
  h1{
    font-size: 56px;
    line-height: 1.2;
  }
  h2{
    font-size: 24px;
  }
  h2 i{
  padding:0 1rem;}
  h3{
    font-size: 18px;
  }
  h4,h5,h6{
    font-size: 16px;
  }
  dt,dd,li,p,pre{
    font-size: 14px;
  }
  dt{
    color: var(--k);
  }
  dd,li,p,pre{
  color: var(--k);
  font-family: "YakuHanJP","Noto Sans JP","Helvetica Neue", "Helvetica", Arial,"Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, Roboto, sans-serif;
  }
  iframe{
    border:none;
    margin:24px 0;
  }
  iframe p{
  line-height:0;
  padding: 0;
}
  /* Disable ugly boxes around images in IE10 */
a img{
  border: 0px;
  text-decoration:none;
}
a:hover,
a:hover img,
a:hover svg{
opacity: .8;
transition: opacity 0.6s ease-out;
  }
  a{
    transition: opacity 0.3s ease-out;
    color: var(--k);
    text-decoration: none;
    }
    a:link,
    a:visited{
        text-decoration: none;
    }
    a:hover{
      color: var(--mbd1);
      text-decoration:none;
    }
    a:active{
      color: var(--mbd1);
      text-decoration: none;
    }
    .hover--under {
      color: var(--mbd1);
      padding-bottom: .02rem;
      background: linear-gradient(#2284D4, #2284D4) 100% 100%/100% .82px no-repeat;
      }
      .hover--under:hover {
      background: linear-gradient(#2284D4, #2284D4) 0 100%/0 .82px no-repeat;
      transition: background .3s;
      text-decoration: none;
      }
  ul,ol,dl{
    padding: 0;
    margin:0;
  }
  p,li,dt,dd{
    padding: 0;
    margin:0;
    line-height: 1.6;
    font-feature-settings : "palt" 1;
  }
  p{
    display: block;
      -webkit-margin-before:0px;
      -webkit-margin-after:0px !important;
      -webkit-margin-start:0px;
      -webkit-margin-end:0px;
  }
p span.block{
  display: block;
}
  .clear:after {
    content: '';
    clear: both;
    display: block;
}
.text-center{
    text-align: center;
    }
    .text-left{
    text-align: left;
    }
    .text-right{
    text-align: right;
    }
.strong{
    font-weight: 700;
    }
.em{
    font-size: 125%;
    font-weight: 900;
}
.fs_en {
    display: inline !important;
    font-family: "YakuHanJP", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
.fs_l{
  font-size: 150%;
}
.fs_m{
  font-size: 120%;
}
.fs_s{
    font-size: 75%;
  }
.fs_xs{
    font-size: 10px;
  }
  .fs_l,
  .fs_m,
  .fs_s,
  .fs_xs{
      line-height: 1;
    }
h2,
h3,
h4{
  margin: 0;
  padding: 24px 0 0;
  line-height: 1;
  font-feature-settings : "palt";
}
h3,
h4{
font-weight: 900;
color: var(--g);
}
ul,
ol,
dl{margin:16px 0;padding: 0;}
li{
list-style-position: inside;
}

.btn,
.text{
    font-weight:700;
  }
  .btn {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  margin:4px 0px;
  padding:16px 24px;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  cursor:pointer;
  outline: 0;
  transition: all .3s;
  }
  .btn:hover {
  transition: all 0.3s;
  text-decoration: none ;
  outline: 0;
  }
  .btn-primary{
    transition:all 0.3s;
    color:var(--w);
  }
  .btn-primary:before{
    transition: all 0.3s;
    content: ''!important;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    padding: 0;
    visibility: hidden;
  }
  .btn-primary:after{
    transition: all 0.3s;
    content:"";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  }
    .btn-primary:hover{
      color:var(--w);
    }
  .btn-l {
  padding: 16px 16px;
  border-radius: 24px;
  width: 300px;
  text-align: center;
  font-size: 16px;
  }
    .btn-l:hover{
      background: var(--w);
      transition: .6s;
      transform: scale(1.2,1.2);
      animation-timing-function:ease-in;
    }
  .btn-sm {
    padding:8px 16px;
    border-radius: 24px;
    font-size: 13px;
    }
  .btn-s{
    margin:0;
    padding:8px 16px;
    border-radius: 24px;
    text-decoration: none;
    font-size:12px;
    line-height: 1;
    background: var(--g);
    color: var(--w);
    width: 150px;
  }

  .btn-xs {
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 10px;
    }

  .btn-s.btn-primary:before,
  .btn-sm.btn-primary:before,
  .btn-xs.btn-primary:before{
    transition: all 0.3s;
    content: ''!important;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 6px;
    margin: auto;
    padding: 0;
    visibility: hidden;
  }
  .btn-s.btn-primary:after,
  .btn-sm.btn-primary:after,
  .btn-xs.btn-primary:after{
    transition: all 0.3s;
    content:"";
    width: 4px;
    height: 4px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto;
    transform: rotate(45deg);
  }

  .btn-primary {
    background:var(--g);
    border: .82px solid var(--g);
    }
      .btn-primary:before{
      background: var(--w);
      visibility: hidden;
      }
      .btn-primary:after{
        border-top: 2px solid var(--w);
        border-right: 2px solid var(--w);
  }
      .btn-s.btn-primary:after,
      .btn-sm.btn-primary:after,
      .btn-xs.btn-primary:after {
        border-top: .82px solid var(--w);
        border-right: .82px solid var(--w);
  }
      .btn-primary:hover {
      background-color: var(--w);
      border:.82px solid var(--k);
      color: var(--k);
      }
      .btn-primary:hover:after {
        border-top: 2px solid var(--g);
        border-right: 2px solid var(--g);
        }
      .btn-s.btn-primary:hover:after {
        border-top: .82px solid var(--g);
        border-right: .82px solid var(--g);
        }
  .btn-secondary {
    background:var(--mb800);
    border:.82px solid var(--mb800);
    color: var(--w);
  }
      .btn-secondary:before {
      background: var(--w);
      visibility: hidden;
      }
      .btn-secondary:after {
        border-top: 2px solid var(--w);
        border-right: 2px solid var(--w);
      }
      .btn-s.btn-secondary:after,
      .btn-sm.btn-secondary:after,
      .btn-xs.btn-secondary:after{
      border-top: .82px solid  var(--k);
      border-right: .82px solid  var(--k);
      }
      .btn-secondary:hover {
        background:var(--w);
        border:.82px solid var(--mb800);
        color:var(--mb800);
        }
      .btn-secondary:hover:before {
        background: var(--w);
        }
        .btn-secondary:hover:after {
          border-top: 2px solid var(--mb800);
          border-right: 2px solid var(--mb800);
         }
          .btn-s.btn-secondary:hover:after,
          .btn-sm.btn-secondary:hover:after,
          .btn-xs.btn-secondary:hover:after{
          border-top: .82px solid var(--mb600);
          border-right: .82px solid var(--mb600);
              }
.btn-txt{
  position: relative;
  display: inline;
  text-decoration: none !important;
  transition: background .3s;
  background: linear-gradient(#262626, #262626) 0 100%/100% 2px no-repeat;
  }
    .btn-txt:hover{
    color: var(--mb);
    background-size: 0% 2px;
    }
    .btn.btn-l.btn-txt{
      position: relative;
      display: inline-block;
      text-decoration: none !important;
      transition: background .3s;
      background: linear-gradient(#262626, #262626) 0 100%/100% 2px no-repeat;
      border-radius: 0px;
      width: 300px;
      height: 36px;
      }
      .btn.btn-l.btn-txt:hover{
        color: var(--k);
        background-size: 0% 2px;
        transform: scale(1,1);
        }
.btn.type-dl svg {
  margin: 0 4px 0 0;
}
.btn.btn-s.type-dl{
  background-image: linear-gradient(180deg,rgb(50, 162, 234) 0%, rgb(119, 194, 79) 100%);
  border: .82px solid var(--pw);
}
  .btn.btn-s.type-dl:hover{
    background-image: linear-gradient(180deg,rgb(244,244,244) 0%,  rgb(244,244,244) 100%);
    color: var(--g);
    border: .82px solid var(--g);
  }
  .btn.btn-s.type-inq{
    background-image: linear-gradient(180deg,rgb(38, 38, 38) 0%,rgb(88, 90, 92) 100%);
    border: .82px solid var(--pw);
  }
    .btn.btn-s.type-inq:hover{
      background-image: linear-gradient(180deg,rgb(88, 90, 92) 0%,rgb(88, 90, 92) 100%);
      color: var(--w);
      border: .82px solid var(--g);
    }
  
.btn-hero_Area{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 5;
}
  .btn-hero_Area li{
    list-style: none;
  }
/* LAYOUT */
.container-fluid{
    width: 100%;
    min-width: 300px;
    position: relative;
    padding: 0 ;
    border-radius: 0 ;
  }
  .container{
    position: relative;
    width: 1280px;
    min-width: 300px;
    margin: 0 auto;
    padding: 72px 0;
  }
  #header{
	position: fixed;
	height: 72px;
	width:100%;
  z-index: 999;
}
#header.UpMove{
	animation: UpAnime 0.6s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
#header.DownMove{
	animation: DownAnime 0.6s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
.header {
  background: var(--pw);
  color: var(--k);
  text-align: center;
  transition: 1s;
  transform: translateZ(0);
  box-shadow: 0 0 15px var(--g80);
  }
  .header .header_inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 24px;
    width: 100%;
    height: 72px;
    top: 0;
  }
  .header h1.logo {
    text-align: left;
    position: absolute;
    left: 24px;
    top: 12px;
  }
  .header h1.logo a {
    display: block;
    width: 120px;
    line-height: 1;
  }
  .header p.catchphrase {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-size: .625rem;
    padding: 24px 0 0 12px;
  }
  .hero_Area{
    position: relative;
    height: 520px;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(190, 224, 249, 1) 10%, rgba(225, 243, 212, 1) 86%, rgba(255, 255, 255, 1) 100%);
  }
  .hero_Area_inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 96px 0 0;
    text-align: center;
    position: relative;
    z-index: 5;
  }
  .hero_Area_inner::before{
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    display: inline-block;
    background-size: contain;
    width: 529px;
    height: 404px;
    top: 96px;
    left: 24px;
    z-index: 1;
    pointer-events: none;
}
      .hero_Area_inner::before{
        background-image: url(https://www.kairosmarketing.net/assets/template/lp/k3_updatelp_2501/img/img-topvisual.png);
      }

  #contents_Area{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--pw);
}
.inner_Box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}
.contents_Area_Catch_Box::before{
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: contain;
  width: 282px;
  height: 63px;
  top: -18px;
  right: 42.5%;
  z-index: 10;
}
    .contents_Area_Catch_Box::before{
      background-image: url(https://www.kairosmarketing.net/assets/template/lp/k3_updatelp_2501/img/chara/img-chara.png);
    }
.itemList_Box{
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0 72px;
}

.itemList_Box h3{
  position:relative;
  font-weight: 900;
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto !important;
  padding: 72px 0 12px;
  margin-block-start: 0;
  margin-block-end: 0;
}
.itemList_Box h3:after{
   content:"";
   display:block;
   width: 240px;
   height:0px;
   background-color: transparent;
   position:relative;
   bottom: 0px;
}
.title_Box{
width: 100%;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.title_Box h2{
    font-size: 3rem;
    font-size: 48px;
    font-weight: 900;
}
.title_Box p{
    font-size: 1rem;
    font-size: 16px;
    font-weight: 300;
    text-align: left;
}
.section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.section p{
  text-align: left;
  font-size: 14px;
}

  footer {
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    background: var(--k);
  }
  .upper_ft{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    background-color: var(--pw);
    width: 100%;
    padding: 72px 0;
  }
    .btm_ft{
    display: flex;
    flex-direction: column;
    background-color: var(--w);
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 12px 0 24px;
  }

  .copy{
    font-size: 12px;
    font-weight: 700;
    color: var(--k);
    margin: 0;
  }   
/* ITEM LIST AREA */
#features_Box{
  position: relative;
  height: auto;
  width: 100%;
  background-image: linear-gradient(180deg,rgb(50, 162, 234) 0%, rgb(119, 194, 79) 86%, rgba(255, 255, 255, 1) 100%);
}
#features_Box .title_Box h3{
  color: var(--w);
  font-size: 36px;
}
.upper_Box,
.btm_Box{
  display: flex;
  flex-direction:column;
  flex-wrap: wrap;
  align-items:center;
  justify-content: center;
  padding: 24px 0;
  gap: 24px;
}

.upper_listitems{
  display: flex;
  flex-direction: column;
  column-gap: 24px;
  align-items: flex-start;
  justify-content: center;
  width: 720px;
  min-width: 80%;
}
.upper_listitems> .listitem{
  display: flex;
  flex-direction: row;
  column-gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

.upper_listitems> .listitem> .txt_Box{
  font-weight: 700;
  font-family: fot-tsukuardgothic-std,sans-serif;
  font-size: 24px;
}
.upper_listitems> .listitem> .txt_Box{
  display: flex;
  flex-direction: column;
  column-gap: 4px;
  align-items: center;
  justify-content: center;
  max-width: calc(720px - 168px);
}
.upper_listitems> .listitem> .txt_Box> dl> dt{
  font-size: 24px;
  font-weight: 700;
  color: var(--w);
}
.upper_listitems> .listitem> .txt_Box> dl> dd> .k3--cat__tagline{
  padding: 0 0 12px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.upper_listitems> .listitem> .txt_Box> dl> dd> .k3--cat__tagline li{
  list-style: none;
  padding: 0 8px;
  margin: 2px;
  background: var(--w);
  border-radius: 4px;
  box-shadow: 0 0 2px var(--g10);
}
.upper_listitems> .listitem> .txt_Box> dl> dd> .k3--cat__tagline li .tag{
  font-size: 12px;
  font-weight: 700;
}

.upper_listitems> .listitem> .txt_Box> dl> dd> .k3--cat__tagline li .tag.ma{
color: var(--mb);
}
.upper_listitems> .listitem> .txt_Box> dl> dd> .k3--cat__tagline li .tag.sales{
  color: var(--sg);
  }

.upper_listitems> .listitem> .txt_Box> dl> dd{
  font-size: 16px;
  font-weight: 500;
  color: var(--w);
}
.btm_listitems{
  position: relative;
  background: var(--w);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--g30);
  max-width: 960px;
  width: 90%;
}
.case-logolist{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  max-width: 960px;
  width: 85%;
}
.case-logolist li{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 12px;
}
.case-logolist li img{
  position: inherit;
  width: 100%;
  height: 72px;
  object-fit: contain;
}

/* FEATURES　*/
.c-fea-list{
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-fea-list_inner{
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  row-gap: 12px;
  column-gap: 12px;
}
.c-fea-logo img{
  display: block;
  width: 144px;
  height: 100%;
}
.c-fea-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  column-gap: 4px;
  width: 96px;
  height: auto;
}
.c-fea-item dt img{
width: 48px;
height: 48px;
position: relative;
}

.c-fea-item dd{
  font-size: 12px;
  font-weight: 700;
  font-family: fot-tsukuardgothic-std,sans-serif;
  text-align: center;
  line-height: 1;
  }

ul.list{
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    align-items:center;
    justify-content: space-evenly;
    padding: 36px 0;
  }
  ul.list li{
    display: flex;
    margin: 0;
    flex-basis: 30%;
  }
  #features_Box .img_Box{
    margin: 24px 0 0;
    box-shadow: 0 4px 12px var(--g30);
    overflow: hidden;
    width: 144px;
    height: 144px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--w);
   }
 
   #features_Box .img_Box img{
    display: block;
    object-fit: cover;
   }
   
   #features_Box .img_Box:hover{
    box-shadow: 0 0 10px var(--g30);
    transition: .6s;
    animation-timing-function:ease-in;
  }
/* ABoutBox LAYOUT */
#aboutK3_Box{
    position: relative;
    width: 100%;
    background-image: linear-gradient(180deg, rgba(244,244,244, 1) 0%, rgba(255, 255, 255, 1) 50%);
    box-shadow: 0 -4px 12px var(--g30);
  }
#aboutK3_Box h3{
    position: relative;
    font-size: 36px;
  }
/*FORM Layout */
#contact_Box h3{
  position: relative;
  font-size: 36px;
  color: var(--k);
  text-align: center;
  margin: 0 0 12px;
}
.inq_form{
  border:none;
  padding: 0;
  margin:0;
  height: 880px !important;
  overflow-y: auto;
  max-width: 720px !important;
  min-width: 80% !important;
}
   .inq_form div#K3_header{
    display: none !important;
  }
/* Footer LAYOUT */
#page_arrow {
    position: absolute;
    bottom: 96px;
    right: 24px;
    width: 72px;
    height: 72px;
    }
#page_arrow :before {
  content: "";
  position: absolute;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--k);
}
#page_arrow :hover:before {
background: var(--pw);
box-shadow: 0 0 10px 0 var(--g30);
transition: .6s;
animation-timing-function:ease-in;
}
#page_arrow :after {
  content: "";
  position: absolute;
  margin: auto;
  bottom: 18px;
  left: 24px;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--w);
  border-left: 3px solid var(--w);
  transform:rotate(45deg);
}
#page_arrow :hover:after {
  border-top: 3px solid var(--g);
  border-left: 3px solid var(--g);
}
.l-footer_products__items__box {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #fff;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 42px auto;
  display: none;
 }
 .l-footer_products__items {
   font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   gap: 24px;
 }
.l-footer_products__items dt{
 display: flex;
 flex-direction: column;
 align-items:center;
font-size: 12px;
}
.l-footer_products__items dt span.fs_s10{
 display: flex;
font-size: 10px;
}
.l-footer-products__item__link span {
 display: inline-block;
 width: 100%;
 height: 36px;
 mask-position: center center;
 mask-repeat: no-repeat;
 mask-size: contain;
 background: transparent;
 transition: .3s ease-out;
 }
.l-footer-products__item__link.ma span{
 width: 196px;
 background-repeat: no-repeat;
 background-image: url(https://www.kairosmarketing.net/assets/template/lp/k3_updatelp_2501/img/logo/logo-k3_marketing.svg);
 }
  .l-footer-products__item__link.ma:hover span{
opacity: .5;
}
.l-footer-products__item__link.sales span{
 width: 122px;
 background-repeat: no-repeat;
 background-image: url(https://www.kairosmarketing.net/assets/template/lp/k3_updatelp_2501/img/logo/logo-k3_sales.svg);
 }
  .l-footer-products__item__link.sales:hover span{
    opacity: .5;
  }
.l-footer-products__item__link.tm span{
 width: 127px;
 background-repeat: no-repeat;
 background-image: url(https://www.kairosmarketing.net/assets/template/lp/k3_updatelp_2501/img/logo/logo-k3_timing.svg);
 }
  .l-footer-products__item__link.tm:hover span{
    opacity: .5;
  }
.l-footer-products__item__link.mkfr span{
 width: 70px;
 background-repeat: no-repeat;
 background-image: url(https://www.kairosmarketing.net/assets/template/lp/k3_updatelp_2501/img/logo/logo-mkfr.svg);
 }
  .l-footer-products__item__link.mkfr:hover span{
    opacity: .5;
  }

/* RESPONSIV */
@media screen and (min-width: 769px) {
  .hambuger {
    display: none;
  }
  .menu {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: -6px 0 0;
    gap: 12px;
    text-align: center;
  }
  .menu li{
    list-style: none;
  }
}
@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1280px) {
  .container {
    width: 960px;
  }
  .hero_Area_inner::before{
    left: -12px;
    width: 420px;
  }
}
@media screen and (max-width: 1024px) {
  .upper_listitems{
    display: flex;
    flex-direction: column;
    column-gap: 24px;
    align-items: center;
    justify-content: center;
    width: 720px;
  }
  .upper_listitems> .listitem{
    display: flex;
    flex-direction: row;
    column-gap: 24px;
    align-items: center;
    justify-content: center;
  }
  
  .upper_listitems> .listitem> .txt_Box{
    font-weight: 700;
    font-family: fot-tsukuardgothic-std,sans-serif;
    font-size: 24px;
  }
  .upper_listitems> .listitem> .txt_Box{
    display: flex;
    flex-direction: column;
    column-gap: 4px;
    align-items: center;
    justify-content: center;
    max-width: calc(720px - 168px);
  }
  .upper_listitems> .listitem> .txt_Box> dl> dt{
    font-size: 24px;
    font-weight: 700;
    color: var(--w);
  }
}
@media screen and (max-width: 960px) {
  .container {
    width: 85%;
  }
  ul.list {
    justify-content: space-between;
  }
  ul.list li {
    flex-basis: 47.5%;
  }
  .hero_Area_inner::before{
    opacity: .5;
  }

}
@media screen and (max-width: 768px) {
  .header p.catchphrase{
    display: none;
  }
  .hambuger {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
  }
  .hambuger-line {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--g);
    transition: .4s;
  }
    .hambuger-line::before , .hambuger-line::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: var(--g);
      transition: .8s;
      right: 0;
    }
      .hambuger-line::before {
        transform: translateY(-16px);
      }
      .hambuger-line::after {
        transform: translateY(16px);
      }
  .hambuger-line.open {
    background-color: transparent;
  }
    .hambuger-line.open::before , .hambuger-line.open::after {
      content: "";
      background-color: var(--w);
      transition: .4s;
    }
      .hambuger-line.open::before {
        transform: rotate(45deg);
      }
      .hambuger-line.open::after {
        transform: rotate(-45deg);
      }
  .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: -20px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color:var(--g80);
    transition: .3s;
  }
    .menu li{
      list-style: none;
      margin: 24px 0 0 12px
    }
    .menu-list {
      display: flex;
      align-items: center;
      justify-content:flex-start ;
      width: 100%;
      height: 100%;
      color: var(--w);
      font-weight: 700;
    }
      .menu-list:hover {
        color: var(--w);
        cursor: pointer;
        transition: .3s;
        text-decoration: underline;
      }
    .menu.open {
      position: absolute;
      right: 0;
    }
      .btn.btn-s.type-dl,
      .btn.btn-s.type-inq{
        background-image: none;
        background: transparent;
        border: none;
        font-size: 16px;
        width: 100%;
      }
        .btn.btn-s.type-dl:hover,
        .btn.btn-s.type-inq:hover{
           color: var(--pw);
           background-image: none;
           background-color: none;
           border: none;
           }
  .hero_Area_inner::before{
    opacity: .3;
}
  .contents_Area_Catch_Box::before{
    right: 18.5%;
}
.title_Box p {
      font-size: 12px;
  }
  ul.list {
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 36px 0;
  }
  .img_Box{
  height: auto;
  }
  #features_Box .img_Box{
    width: 72px;
    height: 72px;
  }
  #features_Box .title_Box h3{
font-size: 24px;
} 

  #features_Box .img_Box img{
    width: 36px;
    height: auto;
   }
   .upper_Box,
   .btm_Box{
     display: flex;
     flex-direction:column;
     flex-wrap: wrap;
     align-items:center;
     justify-content: center;
     padding: 24px 0;
     gap: 24px;
   }
   
   .upper_listitems{
    column-gap: 12px;
    width: 80%;
   }
   
  .upper_listitems> .listitem{
    display: flex;
    flex-direction: column;
  }
  .upper_listitems> .listitem> .txt_Box{
    font-size: 18px;
  }
  .upper_listitems> .listitem> .txt_Box{
    display: flex;
    flex-direction: column;
    column-gap: 4px;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 72px);
  }
  .upper_listitems> .listitem> .txt_Box> dl{
    margin: 0;
  }

  .upper_listitems> .listitem> .txt_Box> dl> dt{
    text-align: center;
    font-size: 16px;
  }
  .upper_listitems> .listitem> .txt_Box> dl> dd{
    font-size: 12px;
  }
  .upper_listitems> .listitem> .txt_Box> dl> dd> .k3--cat__tagline{
    padding: 0 0 8px;
    justify-content: center;
  }
  .upper_listitems> .listitem> .txt_Box> dl> dd> .k3--cat__tagline li .tag{
    font-size: 10px;
  }
  .c-fea-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    column-gap: 4px;
    width: 72px;
    height: auto;
  }
  .c-fea-item dt img{
  width: 36px;
  height: 36px;
  position: relative;
  }
  .c-fea-item dd{
    font-size: 10px;
    }
}
@media screen and (max-width: 560px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  .title_Box h2 {
    font-size: 24px;
    text-align: center;
  }
  #aboutK3_Box h3,
  #contact_Box h3{
    font-size: 24px;
  }
  .title_Box p br {
    display: none;
  }
  .cta_box span.btn{
    width: 240px;
  }
  .l-footer_products__items{
    display: none;
  }
  .upper_listitems> .listitem> .txt_Box {
    width: 100%;
    min-width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .title_Box{
    width: 85%;
  }

}