@charset "utf-8";

:root {
  --color: #991726;
  --color_dl: #4cb149;
  --bg_a: #fbe0df;
  --bg_b: #fff2f1;
  --bg_c: #faf8e1;
}

.anc {
  height: 0;
  border: none;
  margin: -80px 0 0;
  padding: 80px 0 0;
}
.mb00 {margin-bottom: 0!important;}
.tel {pointer-events: none;}
.cs {pointer-events: none;}
nav .menu_box .cs {color: rgba(51, 51, 51, 0.3)!important;}
nav .menu_box .cs::after {content: none!important;}
footer .cs  {color: rgba(51, 51, 51, 0.3)!important;}
.btn_common .cs {background: rgba(153, 23, 38,0.2);border: none!important;}
.btn_common .cs::before,.btn_common .cs::after {content: none!important;}
.home_support .home_support_box dl .cs dt::before,
.home_support .home_support_box dl .cs dt::after {content: none!important;}
.home_case .btn_common {min-width: 220px!important;}
.home_action .btn_common a.cs {background: rgba(255,255,255,0.2)!important;color: #FFFFFF!important;}
aside .btn_common a.cs {background: rgba(255,255,255,0.2)!important;color: #FFFFFF!important;}

/* -----------------------------------------------------------
　common
----------------------------------------------------------- */

* {box-sizing: border-box;}
img {max-width: 100%;}
.fcred {color: #FF0000;}
.fwbold {font-weight: bold;}
.w80 {width: 80%;margin: 0 auto;}
.fs80 {font-size: 0.8em;}
.fs120 {font-size: 1.2em;}
.left {float: left;}
.right {float: right;}
.center ,
.aligncenter {text-align: center;}
.alignright {text-align: right;}
.alignleft {text-align: left;}
.clear {clear: both;}
.italic {font-style: italic;}
figure img {display: block;width: 100%;}
a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Zen Kaku Gothic Antique","ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.75;
  color: #333333;
}
body.open {overflow: hidden;}
input,button ,select,option,textarea {
  font-family: "Zen Kaku Gothic Antique", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: inherit;
}
button {cursor: pointer;}

@media screen and (min-width: 801px) {
  
  .sp_cont {display: none !important;}
  
}
a:hover {
  text-decoration: underline;
  color: inherit;
}

.fade {
  opacity: 0;
  transition: 0.5s;
}
.fadein {opacity: 1;}
.totop {transform: translateY(50px);}
.fadein.totop {transform: translateY(0);}


/* -----------------------------------------------------------
  template
----------------------------------------------------------- */

/* :::::::::: header :::::::::: */

header {
  position: fixed;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 0 0 30px;
  background: #FFFFFF;
  top: 0;
  inset: 0 0 auto;
}
header .logo {
  position: relative;
  z-index: 20;
  width: 187px;
}

/* :::::::::: nav :::::::::: */

nav .menu {display: none;}
nav .menu_box {
  display: flex;
  justify-content: flex-start;
  align-items: stretch; 
}
nav .menu_box .logo {display: none;}
nav .menu_box > ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
nav .menu_box > ul > li {height: 80px;}
nav .menu_box > ul > li.parent {
  position: relative;
  z-index: 0;
}
nav .menu_box > ul > li > a ,
nav .menu_box > ul > li > span a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  line-height: 1.375;
  font-weight: 500;
  text-align: center;
  padding: 0 1em;
  text-decoration: none;
}
nav .menu_box > ul > li > a::before ,
nav .menu_box > ul > li > span a::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 0;
  height: 4px;
  background: var(--color);
  border-radius: 2px;
  margin: auto;
  inset: auto auto 10px;
  transition: 0.5s;
}
nav .menu_box > ul > li > a:hover::before  ,
nav .menu_box > ul > li > span a:hover::before ,
nav .menu_box > ul > li > a.current::before ,
nav .menu_box > ul > li > span a.current::before {
  width: 80px;
}
nav .menu_box > ul > li.parent > span a::after {
  display: inline-block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin: 0 0 0.15em 0.75em;
  border-right: solid 2px #333333;
  border-bottom: solid 2px #333333;
  transform: rotate(45deg);
}
nav .menu_box > ul > li.parent > ul {
  display: none;
  position: absolute;
  z-index: 1;
  width: 180px;
  margin: auto;
  padding: 10px 0;
  inset: 100% -100% auto -100%;
}
nav .menu_box > ul > li.parent > ul.open {display: block;}
nav .menu_box > ul > li.parent > ul li {
  font-weight: 500;
  text-align: left;
  padding: 0.25em 1em;
  background: #FFFFFF;
}
nav .menu_box > ul > li.parent > ul li:nth-child(1) {padding-top: 1em;border-radius: 4px 4px 0 0;}
nav .menu_box > ul > li.parent > ul li:nth-last-child(1) {padding-bottom: 1em;border-radius: 0 0 4px 4px;}
nav .menu_box > ul > li.parent > ul li::before {content: "- ";}
nav .menu_box .dl {margin: 0 0 0 1em;}
nav .menu_box .dl a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  line-height: 1.375;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  background: var(--color_dl);
  border-radius: 0 0 0 20px;
  transition: 0.5s;
}
nav .menu_box .dl a:hover {
  text-decoration: none;
  opacity: 0.5;
}
nav .nav_bg {display: none;}

/* :::::::::: main :::::::::: */

main {
  display: block;
  margin: 80px 0 0;
  padding: 0 0 120px;
  overflow: hidden;
}
main.home {padding: 0;}
main.download {border-bottom: solid 1px #666666;}
.box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* :::::::::: aside :::::::::: */

aside {
  color: #FFFFFF;
  text-align: center;
  background: var(--color_dl);
  padding: 60px 0;
}
aside.fade {opacity: 1;}
aside .box {
  position: relative;
  z-index: 0;
}
aside .box::after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 240px;
  height: 154px;
  margin: auto;
  background: url("../img/common/ico_aside.svg") no-repeat center / cover;
  inset: -95px -30px auto auto;
  transform: scale(0);
  transition: all .75s cubic-bezier(.38,.01,.26,1.42);
}
aside.fadein .box::after {transform: scale(1);}
aside .box h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 auto 10px;
}
aside .box h2::before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 1.3em;
  height: 1.3em;
  background: url("../img/common/ico_dl.svg") no-repeat center / contain;
  margin: 0 0.25em 0.25em 0;
}
aside .box h2 + p {
  font-size: 20px;
  font-weight: 500;
  margin: 0 auto 20px;
}
aside .btn_common a {
  color: var(--color_dl);
  background: #FFFFFF;
  border: solid 1px  #FFFFFF;
}
aside .btn_common a:hover {color: #FFFFFF;}
aside .btn_common a::before {background: var(--color_dl);}
aside .btn_common a::after {background: var(--color_dl);}
aside .btn_common a:hover::after {background: #FFFFFF;}

@media screen and (max-width: 1100px) {
  aside .box::after {inset: -95px 5px auto auto;}
}

/* :::::::::: footer :::::::::: */

.banner_dl {
  position: fixed;
  z-index: 8;
  width: 148px;
  height: 148px;
  inset: auto 30px 30px auto;
  transition: 0.5s;
}
.banner_dl a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  text-align: center;
  background: var(--color_dl);
  border-radius: 50%;
  transition: 0.5s;
}
.banner_dl a:hover {
  text-decoration: none;
  opacity: 0.5;
}
.banner_dl a::before {
  display: inline-block;
  content: "";
  width: 2em;
  height: 2em;
  margin: 0 auto 0.4em;
  background: url("../img/common/ico_dl.svg") no-repeat center / auto 100%;
}
.banner_dl span {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: var(--bg_c);
  border-radius: 50%;
  inset: 10px 10px auto auto;
  cursor: pointer;
}
.banner_dl span::after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "×";
  width: 1em;
  line-height: 1.2;
  text-align: center;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  margin: auto;
  inset: 0;
}
.banner_dl.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}

.pagetop {
  position: fixed;
  z-index: 8;
  width: 64px;
  height: 64px;
  font-size: 0;
  background: url("../img/common/pagetop.svg") no-repeat center / cover;
  inset: auto auto 40px 40px;
  cursor: pointer;
  transition: 0.5s;
}
.pagetop:hover {opacity: 0.5;}
footer {background: #FFFFFF;}
footer .footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px 50px 50px;
}
footer .footer_top .logo {width: 116px;}
footer .footer_top > ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  width: 572px;
  height: 8em;
}
footer .footer_top > ul > li {
  font-weight: 500;
  line-height: 2;
  margin: 0 0 0 3em;
}
footer .footer_top > ul > li > ul > li {
  font-weight: 400;
  line-height: 2;
}
footer .footer_top > ul > li > ul > li::before {content: "- ";}
footer .footer_bottom {
  padding: 20px;
  border-top: solid 1px #333333;
}
footer .footer_bottom > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
footer .footer_bottom > ul li {
  font-size: 14px;
  line-height: 1.25;
  margin: 0 1em;
}
footer .footer_bottom > p {
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

@media screen and (max-width: 1140px) {
  
  /* :::::::::: header :::::::::: */

  header {padding: 0 0 0 20px;}

  /* :::::::::: nav :::::::::: */

  nav {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 80px;
    inset: 0 0 auto;
    transition: 0.5s;
  }
  nav.open {
    height: 100vh;
    overflow-y: auto;
  }
  nav .menu_box .logo {
    position: absolute;
    z-index: 1;
    width: 187px;
    inset: 16px auto auto 20px;
  }  
  nav.open .menu_box .logo {display: block;}
  nav .menu {
    position: absolute;
    display: block;
    z-index: 20;
    width: 70px;
    height: 70px;
    text-align: center;
    color: var(--color);
    font-size: 12px;
    font-weight: 700;
    padding: 40px 0 0;
    background: #FFF2CF;
    border-radius: 50%;
    inset: 5px 10px auto auto;
    margin: auto;
    cursor: pointer;
    transition: 0.5s;
  }
  nav .menu::after {content: "メニュー";}
  nav .menu span {
    display: block;
    font-size: 0;
  }
  nav .menu span::before,
  nav .menu span::after {
    position: absolute;
    z-index: 1;
    display: block;
    content: "";
    width: 30px;
    height: 3px;
    background: var(--color);
    margin: auto;
    border-radius: 2px;
    left: 0;
    right: 0;
    transition: 0.5s;
  }
  nav .menu span::before {
    box-shadow: 0 8px 0 0 var(--color);
    top: 18px;
  }
  nav .menu span::after {top: 34px;}
  nav.open .menu {
    color: #FFFFFF;
    background: var(--color);
  }
  nav.open .menu::after {content: "閉じる";}
  nav.open .menu span::before,
  nav.open .menu span::after {background: #FFFFFF;}
  nav.open .menu span::before {
    box-shadow: none;
    top: 26px;
    transform: rotate(45deg);
  }
  nav.open .menu span::after {
    top: 26px;
    transform: rotate(-45deg);
  }
  nav .menu_box {
    position: absolute;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    padding: 100px 20px 40px;
    background: #FAF8E1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  nav.open .menu_box {
    opacity: 1;
    visibility: visible;
  }
  nav .menu_box > ul {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 700px;
    height: 10em;
    text-align: left;
    margin: 0 auto 40px;
  }
  nav .menu_box > ul > li {
    height: auto;
    margin: 20px 0 0;
  }
  nav .menu_box > ul > li > a ,
  nav .menu_box > ul > li > span a {
    display: block;
    font-size: 20px;
  }
  nav .menu_box > ul > li > a::before ,
  nav .menu_box > ul > li > span a::before {bottom: -0.5em;}
  nav .menu_box > ul > li > a:hover::before  ,
  nav .menu_box > ul > li > span a:hover::before ,
  nav .menu_box > ul > li > a.current::before ,
  nav .menu_box > ul > li > span a.current::before {width: calc(100% - 2em);}
  nav .menu_box > ul > li.parent {text-align: left;}
  nav .menu_box > ul > li.parent span {
    display: block;
    text-align: left;
    margin: 0; 
  }
  nav .menu_box > ul > li.parent > span> a {text-align: left;}
  nav .menu_box > ul > li.parent > span a::after {display: none;}
  nav .menu_box > ul > li.parent > ul {
    display: inline-block;
    position: static;
    width: auto;
    background: none;
    margin: 0 auto;
  }
  nav .menu_box > ul > li.parent > ul li {
    font-size: 18px;
    padding: 0 0 0 1em;
    background: none;
  }
  nav .menu_box > ul > li.parent > ul li:nth-child(1) {padding-top: 0;}
  nav .menu_box > ul > li.parent > ul li:nth-last-child(1) {padding-bottom: 0;}

  nav .menu_box > ul > li.parent > ul li::before {content: "- ";}
  
  nav .menu_box ul li a br.pc_cont ,
  nav .menu_box .dl a br.pc_cont {display: none!important;}
  nav .menu_box .dl {
    width: 360px;
    margin: 0 auto;
  }
  nav .menu_box .dl a {
    display: block;
    width: 100%;
    font-size: 24px;
    padding: 20px;
    border-radius: 6px;
  }
  nav .nav_bg {
    position: absolute;
    z-index: 0;
    display: block;
    width: 100%;
    height: 0;
    inset: 0;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
  }
  nav.open .nav_bg {height: 100%;}
  
}

/* -----------------------------------------------------------
 subpage
----------------------------------------------------------- */

.kv_sub {
  position: relative;
  z-index: 0;
}
.kv_sub::before ,
.kv_sub::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  background: var(--bg_a);
  margin: auto;
  inset: 0 -1000% auto -1000%;
}
.kv_sub::before {
  width: 100%;
  height: 200px;
}
.kv_sub::after {
  width: 2700px;
  height: 310px;
  border-radius: 0 0 50% 50%;
}
.kv_sub .box {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 370px;
  padding-bottom: 60px;
}
.kv_sub .box::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 400px;
  height: 260px;
  inset: auto 0 20px auto;
}
.download .kv_sub .box::after {background: url("../img/common/kv_download.png") no-repeat center / contain;}
.issue .kv_sub .box::after {background: url("../img/common/kv_issue.png") no-repeat center / contain;}
.knowhow .kv_sub .box::after {background: url("../img/common/kv_knowhow.png") no-repeat center / contain;}
.action .kv_sub .box::after {background: url("../img/common/kv_action.png") no-repeat center / contain;}
.case .kv_sub .box::after {background: url("../img/common/kv_case.png") no-repeat center / contain;}
.kv_sub .box h1 {
  color: var(--color);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.kv_sub02 {
  position: relative;
  z-index: 0;
}
.kv_sub02:after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  background: #FAF8E1;
  margin: auto;
  inset: 0 -1000% auto -1000%;
  width: 2700px;
  height: 170px;
}
.kv_sub02 .box {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 170px;
}
.kv_sub02 .box h1 {
  color: #333333;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0 0;
}

.box .breadcrumbs {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 20px;
  display: flex;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
}
.box .breadcrumbs li::after {content: "/";margin: 0 0.5em;}
.box .breadcrumbs li:nth-last-child(1)::after {content: none;}

.sub_contents .n_box {padding: 0 0 0 20px;}
.sub_contents h2 {
  color: var(--color);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.25em 0;
  margin: 100px 0 40px;
  border-top: solid 1px #EAB5B7;
  border-bottom: solid 1px #EAB5B7;
}
.sub_contents .anc + h2 {margin-top: 60px;} 
.sub_contents h3 {
  position: relative;
  z-index: 0;
  color: #333333;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin: 60px 0 30px; 
  padding: 0 0 0 0.75em;
}
.sub_contents h3::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 10px;
  height: 26px;
  background: var(--color);
  border-radius: 2px;
  top: 0.3em;
  left: 0;
}
.sub_contents h4 {
  color: var(--color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 40px 0 15px;  
}
.sub_contents p {margin: 0 0 20px;}
.sub_contents ul {
  margin: 0 0 20px;
  list-style-type: none;
}
.sub_contents ul li {
  position: relative;
  z-index: 0;
  padding: 0 0 0 1em;
}
.sub_contents ul li::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color);
  border-radius: 50%;
  inset: 0.75em auto auto 0.25em;
}
.kv_sub02 + .sub_contents ul li::before {background: #333333;}





.slick-arrow::before {content: none!important;}
.slick-arrow.slick-prev ,.slick-arrow.slick-next {
  width: 48px;
  height: 48px;
  z-index: 10;
}
.slick-arrow.slick-prev {background: url("../img/common/al.svg") no-repeat center / cover;left: -24px;} 
.slick-arrow.slick-next {background: url("../img/common/ar.svg") no-repeat center / cover;right: -24px;} 
.slick-arrow.slick-prev:hover, .slick-arrow.slick-prev:focus {background: url("../img/common/al.svg") no-repeat center / cover;}
.slick-arrow.slick-next:hover, .slick-arrow.slick-next:focus {background: url("../img/common/ar.svg") no-repeat center / cover;}
.slick-arrow.slick-prev:hover, 
.slick-arrow.slick-next:hover {opacity: 0.5;}
.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_area.btn_left {justify-content: flex-start;}
.btn_common {
  display: inline-block;
  width: auto;
  min-width: 280px;
}
.btn_common a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  background: #FFFFFF;
  border: solid 1px var(--color);
  border-radius: 6px;
  padding: 0.75em;
  transition: 0.5s;
}
.btn_common a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.btn_common a::before ,
.btn_common a::after {
  display: block;
  content: "";
}
.btn_common a::before {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 100%;
  background: var(--color);
  border-radius: 5px;
  transition: 0.5s;
  inset: 0 auto 0 0;
}
.btn_common a:hover::before {width: 100%;}
.btn_common a::after {
  width: 1.25em;
  height: 1.25em;
  background: var(--color);
  margin: 0 0 0 0.5em;
  mask: url("../img/common/bg_ar.svg") no-repeat center / contain;
  transition: 0.5s;
}
.btn_common a:hover::after {background: #FFFFFF;}
.btn_common a[target="_blank"] {padding: 0.75em 3em 0.75em 0.75em;}
.btn_common a[target="_blank"]::after {
  position: absolute;
  z-index: 1;
  margin: auto;
  inset: 0 1em 0 auto;
  width: 1em;
  height: 1em;
  mask: url("../img/common/bg_target.svg") no-repeat center / contain;
}
.btn_common.btn_red a {
  color: #FFFFFF;
  background: var(--color);
  border: solid 1px var(--color);
}
.btn_common.btn_red a:hover {color: var(--color);}
.btn_common.btn_red a::before {background: #FFFFFF;}


.btn_common.btn_red a::after {background: #FFFFFF;}
.btn_common.btn_red a:hover::after {background: var(--color);}
.btn_area .btn_common {margin: 0 10px;}
.btn_area.btn_left .btn_common {margin: 0 20px 0 0;}


.action .btn_common .cs {
  background: inherit;
  border: solid 1px var(--color)!important;
  opacity: 0.2;
}
.action .btn_common .cs::after {content: ""!important;}


.btn_area + .btn_area {margin-top: 20px;}
.btn_dl {
  display: inline-block;
  width: auto;
  min-width: 220px;
}
.btn_dl a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--color_dl);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  background: #FFFFFF;
  border: solid 1px var(--color_dl);
  border-radius: 6px;
  padding: 0.75em;
  transition: 0.5s;
}
.btn_dl a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.btn_dl a::before ,
.btn_dl a::after {
  display: block;
  content: "";
}
.btn_dl a::before {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 100%;
  background: var(--color_dl);
  border-radius: 5px;
  transition: 0.5s;
  inset: 0 auto 0 0;
}
.btn_dl a:hover::before {width: 100%;}
.btn_dl a::after {
  width: 1em;
  height: 1em;
  background: var(--color_dl);
  margin: 0 0 0 0.5em;
  mask: url("../img/common/bg_dl.svg") no-repeat center / contain;
  transition: 0.5s;
}
.btn_dl a:hover::after {background: #FFFFFF;}
.link_banner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.link_banner::before ,
.link_banner::after {
  order: 1;
  display: block;
  content: "";
  width: 23%;
  height: 0;
}
.link_banner::after {order: 2;}
.link_banner li {
  width: 23%;
  margin: 0 0 10px;
}
.link_banner li a {
  text-decoration: none;
  transition: 0.5s;
}
.link_banner li a:hover {opacity: 0.5;}
.link_banner li a figure {
  aspect-ratio: 220 / 140;
  border: solid 1px #666666;
  margin: 0 auto 5px;
}
.link_banner li a p {font-weight: 700;}
ul.link {margin: 20px 0;}
ul.link li {
  position: relative;
  z-index: 0;
  font-weight: 700;
  padding: 0 0 0 1.25em;
  margin: 0 0 0.5em;
}
ul.link li::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-right: solid 1px var(--color);
  border-bottom: solid 1px var(--color);
  transform: rotate(-45deg);
  inset: 0.5em auto auto 0;
}
  
  
  


/* -----------------------------------------------------------
 Single/Archive
----------------------------------------------------------- */




/* -----------------------------------------------------------
 home
----------------------------------------------------------- */

.kv {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #FFFFFF;
  height: auto;
  aspect-ratio: 1230 / 530;
}
.kv::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 2050 / 256;
  margin: auto;
  inset: auto -100% 0 -100%;
  background: url("../img/home/bg_kv.svg") no-repeat bottom center / 125vw auto,var(--bg_a);
}
.kv h1 {
  position: relative;
  z-index: 2;
  width: 27.5vw; 
  min-width: 350px;
  margin: 0 auto 40px;
}
.kv h1 + p {
  position: relative;
  z-index: 2;
  width: 31vw; 
  min-width: 400px;
  margin: 0 auto;
}
.kv figure {
  position: absolute;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 36vw;
  top: 50%;
  transform: translateY(-50%);
}
.kv figure:nth-of-type(1) {right: 66%;}
.kv figure:nth-of-type(2) {left: 66%;}
.kv figure img {
  display: block;
  width: 32%;
}

@media screen and (max-width: 1280px) {
  .kv {
    height: 530px;
    aspect-ratio: auto;
  }
  .kv figure {width: 384px;}
  .kv figure:nth-of-type(1) {right: calc(50% + 220px);}
  .kv figure:nth-of-type(2) {left: calc(50% + 220px);}
}

.home_about {
  position: relative;
  z-index: 0;
  padding: 60px 0;
  margin: 0 auto 120px;
  background: var(--bg_a);
}
.home_about::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: 100%;
  height: 120px;
  margin: auto;
  inset: 100% -100% auto -100%;
  background: url("../img/home/bg_about.svg") repeat-x top center / 2050px;
}
.home_about h2 {
  color: var(--color);
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 30px;
}
.home_about p {
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 25px;
  text-align: center;
}
.home_about ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 810px;
  margin: 0 auto 35px;
}
.home_about ul li {width: 31%;}

.home_link_section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 60px 20px;
}
.home_link_section > section {
  position: relative;
  z-index: 0;
  width: 48%;
  padding: 35px 30px 30px;
  background: var(--bg_b);
  border: solid 1px var(--color);
  border-radius: 12px;
}
.home_link_section > section h2 {
  position: relative;
  z-index: 2;
  color: var(--color);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 auto 25px;
}
.home_link_section > section h2 + p {
  min-height: 3.5em;
  color: var(--color);
  font-weight: 500;
  margin: 0 auto 20px;
}
.home_link_section > section::before {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  margin: auto;
  inset: -20px -15px auto auto;
  transform: scale(0);
  transition: all .75s cubic-bezier(.38,.01,.26,1.42);
}
.home_link_section > section:nth-of-type(1)::before {
  width: 150px;
  height: 130px;
  background: url("../img/home/ico_event.svg") no-repeat center / contain;
}
.home_link_section > section:nth-of-type(2)::before {
  width: 140px;
  height: 110px;
  background: url("../img/home/ico_movie.svg") no-repeat center / contain;
}
.home_link_section > section .btn_common {min-width: 220px;}

.home_title {
  position: relative;
  z-index: 0;
  padding: 0 180px 0 0;
  margin: 0 0 25px;
}
.home_title::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  inset: auto 0 10px auto;
}
.home_title h2 {
  color: var(--color);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 auto 10px;
}
.home_title p {
  color: var(--color);
  font-weight: 500;
}
.home_support {padding: 60px 0;}
.home_support .home_title::after {
  width: 125px;
  height: 90px;
  background: url("../img/home/ico_support.svg") no-repeat center / contain;
  transform: scale(0);
  transition: all .75s cubic-bezier(.38,.01,.26,1.42);
}
.home_support .home_support_box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto 30px;
}
.home_support .home_support_box dl {
  width: 48%;
  text-align: center;
}
.home_support .home_support_box dl a {
  position: relative;
  z-index: 0;
  display: block;
  height: 100%;
  padding: 30px 20px;
  background: var(--bg_b);
  border: solid 1px var(--color);
  border-radius: 12px;
  transition: 0.5s;
}
.home_support .home_support_box dl a:hover {
  text-decoration: none;
  background: #FFFFFF;
}
.home_support .home_support_box dl a:after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 12px;
  border: solid 2px var(--color);
  pointer-events: none;
  inset: 0;
  opacity: 0;
  transition: 0.5s;
}
.home_support .home_support_box dl a:hover:after {opacity: 1;}
.home_support .btn_common {min-width: 220px;}
.home_support .home_support_box dl dt {
  color: var(--color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 auto 15px;
}
.home_support .home_support_box dl dt::after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 1.25em;
  height: 1.25em;
  background: var(--color);
  margin: 0 0 0.35em 0.5em;
  mask: url("../img/common/bg_ar.svg") no-repeat center / contain;
  transition: 0.5s;
}
.home_support .home_support_box dl dd {
  font-weight: 500;
  line-height: 2;
}
  
.home_case {
  position: relative;
  z-index: 0;
  padding: 60px 0;
  margin: 0 auto 120px;
}
.home_case::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: 100%;
  height: 120px;
  margin: auto;
  inset: 100% -100% auto -100%;
  background: url("../img/home/bg_case.svg") repeat-x top center / 2050px;
}
.home_case .home_title::after {
  width: 165px;
  height: 105px;
  background: url("../img/home/ico_case.svg") no-repeat center / contain;
  transform: scale(0);
  transition: all .75s cubic-bezier(.38,.01,.26,1.42);
}
.home_case .home_title {margin: 0 auto 50px;}
.home_case .slider {
  width: 960px;
  max-width: 100%;
  margin: 0 auto 30px;
}
.home_case .slider .slick-list {
  padding: 0!important;
  overflow: visible;
}
.home_case .slider .slick-track {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.home_case .slider .slick-slide {
  height: auto !important;
  border: solid 1px var(--color);
  border-radius: 12px;
  margin: 0 25px;
}
.home_case .slider .slick-slide a {
  display: block;
  height: 100%;
  padding: 15px;
  transition: 0.5s;
}
.home_case .slider .slick-slide a:hover {
  text-decoration: none;
  opacity: 0.5;
}
.home_case .slider .slick-slide figure {
  aspect-ratio: 220 / 146;
  margin: 0 auto 15px;
}
.home_case .slider .slick-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_case .slider .slick-slide p {
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
  height: 5.75em;
}
.home_case .slider .slick-slide div {
  margin: 5px 0 0;
  padding: 5px 0 0;
  border-top: solid 1px var(--color);
}
.home_case .slider .slick-slide div span {
  color: #666666;
  font-size: 12px;
}
.home_case .slider .slick-slide div span:nth-of-type(1)::after {content: "｜";}
.home_case .btn_common {min-width: 450px;}

.home_action {
  color: #FFFFFF;
  padding: 60px 0;
  background: var(--color);
}
.home_action > .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
  flex-direction: row-reverse;
}
.home_action > .box > div:nth-of-type(1) {
  position: relative;
  z-index: 0;
  width: 43%;
  aspect-ratio: 410 / 480;
}
.home_action > .box > div:nth-of-type(2) {width: 49%;}
.home_action > .box > div figure {
  position: absolute;
  z-index: 0;
  inset: 0 auto auto 0;
  width: auto;
  height: 100%;
  aspect-ratio: 860 / 480;
}
.home_action > .box > div figure::after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 164px;
  height: 192px;
  background: url("../img/home/ico_action.svg") no-repeat center / contain;
  inset: auto auto -30px -20px;
  transform: scale(0);
  transition: all .75s cubic-bezier(.38,.01,.26,1.42);
}

.home_action > .box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.home_action h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 auto 10px;
}
.home_action p {
  font-weight: 500;
  margin: 0 auto 20px;
}
.home_action ul {
  margin: 0 0 30px;
  border-top: solid 1px #FFFFFF;
}
.home_action ul li {
  font-weight: 500;
  line-height: 1.5;
  padding: 0.75em 0;
  border-bottom: solid 1px #FFFFFF;
}
.home_action .btn_common {min-width: 330px;}
.home_action .btn_common a {border: solid 1px  #FFFFFF;}


.home_topics {
  position: relative;
  z-index: 0;
  padding: 60px 0;
  margin: 120px auto 30px;
}
.home_topics::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: 100%;
  height: 120px;
  margin: auto;
  inset: auto -100% 100% -100%;
  background: url("../img/home/bg_topics.svg") repeat-x top center / 2050px;
}
.home_topics h2 {
  color: var(--color);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 30px;
}
.home_topics ul {
  margin: 0 0 30px;
  border-top: solid 1px #B2B2B2;
}
.home_topics ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-weight: 500;
  padding: 10px;
  border-bottom: solid 1px #B2B2B2;
}
.home_topics ul li div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 160px;
  color: var(--color);
  font-size: 14px;
}
.home_topics ul li p {
  width: calc(100% - 180px);
  line-height: 1.5;
}

.home_link_section > section.fadein:nth-of-type(1)::before ,
.home_link_section > section.fadein:nth-of-type(2)::before ,
.home_support .fadein .home_title::after ,
.home_case .fadein .home_title::after ,
.home_action .fadein > div figure::after {
  transform: scale(1);
}

/* -----------------------------------------------------------
 issue
----------------------------------------------------------- */

.issue .title_p {
  color: var(--color);
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 30px;
}
.issue .research li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0!important;
}
.issue .research li::before {content: none!important;}
.issue .research li span {
  display: block;
  width: 4em;
  text-align: justify;
  text-align-last: justify;
}
.issue .research li p {margin: 0;}
.issue .research li p::before {content: "：";}
.issue .graph_box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.issue .graph_box > figure {
  width: 49%;
  padding: 2%;
  background: #F8F8F8;
  border-radius: 10px;
}
.issue .graph_box > div {
  width: 49%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.issue .graph_box > div figure {
  width: 100%;
  padding: 5%;
  background: #F8F8F8;
  border-radius: 10px;
}
.issue .graph_box > div figure.no_bg {background: none;}
.issue .graph_box > div p {margin: 0 0 1em;}
.issue .issue_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 0;
  padding: 30px 0 0;
}
.issue .graph_box + .issue_title {border-top: dashed 2px #B2B2B2;}
.mb00 + .n_box .issue_title {margin: 0;padding: 0;}
.issue .issue_title p {
  color: var(--color);
  font-size: 25px;
  font-weight: 700;
  margin: 0!important;
}
.issue .graph_w {
  padding: 5%;
  background: #F8F8F8;
  border-radius: 10px;
}
.issue .graph_w dt {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 20px;
}
.issue .graph_w .p_out {display: none;}
.w_height {aspect-ratio: 894 / 466;}
.w_height img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.issue .border_box {
  color: var(--color);
  margin: 100px auto 0;
  padding: 0.75em 1em;
  border: solid 1px var(--color);
  border-radius: 10px;
}
.issue .border_box dt {
  font-weight: 700;
  margin: 0 0 0.5em;
}
.issue .border_box dd ul {margin: 0;}

/* -----------------------------------------------------------
 knowhow
----------------------------------------------------------- */

.knowhow .knowhow_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.knowhow .knowhow_list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 48.5%;
  margin: 0 0 2%;
  padding: 20px;
  border: solid 1px var(--color);
  border-radius: 10px;
}
.knowhow .knowhow_list li::before {display: none!important;}
.knowhow .knowhow_list li img {margin: 0 15px 0 0;}
.knowhow .knowhow_list li p {margin: 0;}
.knowhow .knowhow_list li p span {
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.knowhow .table_box {margin: 40px 0 30px;}
.knowhow .scale,
.knowhow .table_box .table_caution {display: none;}
.knowhow .knowhow_table {
  width: 100%;
  line-height: 1.5;
  text-align: center;
}
.knowhow .knowhow_table th {
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 700;
  padding: 1em;
  border-bottom: solid 1px #D2D2D2;
  border-radius: 10px 10px 0 0;
}
.knowhow .knowhow_table th:nth-of-type(1) {
  width: 32%;
  color: #333333;
  font-size: 16px;
  text-align: left;
  padding: 1em 1em 1em 0;
}
.knowhow .knowhow_table th:nth-of-type(2) {width: 33%;background: var(--color);}
.knowhow .knowhow_table th:nth-of-type(3) {width: 33%;background: #1C95E1;}
.knowhow .knowhow_table td {
  font-size: 18px;
  padding: 1em;
  border-bottom: solid 1px #D2D2D2;
}
.knowhow .knowhow_table td:nth-of-type(1) {
  font-size: 16px;
  text-align: left;
  padding: 1em 1em 1em 0;
}
.knowhow .knowhow_table td:nth-of-type(2) {background: #FDF3F3;}
.knowhow .knowhow_table td:nth-of-type(3) {background: #F1F9FD;}


/* -----------------------------------------------------------
 static
----------------------------------------------------------- */


/* -----------------------------------------------------------
 static
----------------------------------------------------------- */




/* -----------------------------------------------------------
 download
----------------------------------------------------------- */

.download + footer .banner_dl {display: none!important;}
.download .kv_sub::before ,
.download .kv_sub::after {
  background: #E2F3E2;
}
.download .kv_sub .box h1 {color: var(--color_dl);}
.download .sub_contents h2 {
  color: var(--color_dl);
  border-top: solid 1px #C9E8C8;
  border-bottom: solid 1px #C9E8C8;
}
.download .sub_contents h3::before {background: var(--color_dl);}
.download .sub_contents ul li::before {background: var(--color_dl);}

.download ul.link li::before {
  border-right: solid 1px var(--color_dl);
  border-bottom: solid 1px var(--color_dl);
}


.dl_anc {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 3%;
  margin: 50px auto 0;
}
.dl_anc li {
  width: 30%;
  padding: 0!important;
  margin: 0 2%;
}
.dl_anc li::before {content: none!important;}
.dl_anc li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
  background: var(--color_dl);
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
}
.dl_anc li a:hover {opacity: 0.5;}
.dl_anc li a p {line-height: 1.3;}
.dl_anc li a p::before,
.dl_anc li a p::after {
  display: block;
  content: "";
}
.dl_anc li a p::before {
  width: 90px;
  height: 75px;
  margin: 0 auto 10px;
}
/*.dl_anc li:nth-of-type(1) a p::before {background: url("../img/download/ico_anc01.png") no-repeat center / 80%;}*/
.dl_anc li:nth-of-type(1) a p::before {background: url("../img/download/ico_anc02.png") no-repeat center / 60%;}
.dl_anc li:nth-of-type(2) a p::before {background: url("../img/download/ico_anc03.png") no-repeat center / 70%;}
.dl_anc li a p::after {
  width: 16px;
  height: 16px;
  border-right: solid 2px #FFFFFF;
  border-bottom: solid 2px #FFFFFF;
  transform: rotate(45deg);
  margin: 10px auto 0;
}
.dl_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.dl_list::after {
  order: 1;
  display: block;
  content: "";
  width: 32%;
  height: 0;
}
.dl_list li {
  width: 32%;
  margin: 20px 0 0;
  padding: 0!important;
  text-align: center;
}
.dl_list li::before {content: none!important;}
.dl_list li figure {
  width: 90%;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
}
.dl_list li figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dl_list li span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 20px;
}
.dl_list li .btn_dl {margin: 0 auto 10px;}
.dl_list li .btn_dl + span {
  font-size: 16px;
  font-weight: 400;
}
.dl_list.col02::after {width: 49%;}
.dl_list.col02 li {width: 49%;}
.dl_list li figure {max-width: 240px;}
.dl_list li h3 {
  margin-top: 20px;
  text-align: left;
}

.dl_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px auto;
  border: solid 1px #D2D2D2;
  border-radius: 20px;
}
.dl_box figure {
  width: 48%;
  margin: 0 0 0 2%;
  padding: 50px 0;
}
.dl_box figure img {
  width: 200px;
  margin: 0 auto;
}
.dl_box > div {
  width: 40%;
  text-align: center;
}
.dl_box > div .btn_dl {
  display: block;
  width: 220px;
  margin: 20px auto 20px;
}
.download .logomark {
  max-width: 210px;
  margin: 40px auto 0;
}
.download .concept {border-top: solid 1px #D2D2D2;}
.download .concept li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px!important;
  border-bottom: solid 1px #D2D2D2;
}
.download .concept li::before {content: none!important;}
.download .concept li figure {width: 32%;}
.download .concept li p {width: 62%;}

/* -----------------------------------------------------------
 other
----------------------------------------------------------- */

.other .sub_contents p a,
.other .sub_contents li a {
  text-decoration: underline;
  color: #00F;
}

.contact_box {
  margin: 70px auto 0;
  border: solid 1px #EAB5B7;
  border-radius: 4px;
  padding: 10px 20px;
}
.contact_box h2 {
  color: var(--color);
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 10px;
  margin: 0 0 15px;
  border: none;
  border-bottom: solid 1px #EAB5B7;
}
.contact_box p {font-size: 18px;}

.sitemap {
  margin: 70px auto 0;
  border-top: solid 2px #EAB5B7;
  border-bottom: solid 2px #EAB5B7;
}
.sitemap > p {
  font-weight: 700;
  padding: 0.75em 0;
  border-bottom: dashed 2px #BEBEBE;
}
.sitemap > ul {padding: 0 0 0 80px;}
.sitemap > ul > li span {
  display: block;
  padding: 0.75em 0;
  border-bottom: dashed 2px #BEBEBE;
}
.sitemap > ul > li > ul {
  padding: 0.75em 0 0.75em 80px;
  border-bottom: dashed 2px #BEBEBE;
}
.sitemap > ul > li > ul li::before {content: "- ";}
.sitemap > ul > li.sub {padding: 0.75em 0 0;}
.sitemap > ul > li.sub + li {padding: 0.5em 0 0;}
.sitemap > ul > li.sub:nth-last-of-type(1) {padding: 0.5em 0 0.75em;}




