@charset "utf-8";
html[lang="ja"] {
  margin: 0 !important;
}
body {
  color: #333333;
  background: #F5F5F5;
  font-size: 3.733vw;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: #F5F5F5;
  z-index: 10000;
  opacity: 1;
  pointer-events: none;
  -webkit-animation: pageopen 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) .3s forwards;
  animation: pageopen 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) .3s forwards;
}
body.nav--open {
  overflow: hidden;
}
.inner {
  margin: auto;
  width: 90%;
}
.inner--big {
  margin: auto;
  width: min(96%, 1360px);
}
#wpadminbar, .pc-only {
  display: none !important;
}
.svgWrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.svgWrap canvas{
    width: 100vw;
    height: 100svh;
}
/* == header ============================================== */
header .h_inner {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 18px;
        transition: transform .6s;
}
  body.header--scroll header .h_inner {
    transform: translateY(-6.5em);
  }
body.nav--open header .h_inner {
  background: #F5F5F5;
}
header .h_logo {
  width: 150px;
  height: 12px;
}
header .h_logo a {
  display: block;
  height: 100%;
  white-space: nowrap;
  text-indent: 150%;
  overflow: hidden;
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all .3s;
}
#navTrigger {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 56px;
  height: 32px;
  background: #000;
  border-radius: 5em;
  cursor: pointer;
}
#navTrigger span {
  display: block;
  width: 50%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: all .4s;
}
#navTrigger span:nth-child(1) {
  transform: translateY(-4px);
}
#navTrigger span:nth-child(3) {
  transform: translateY(4px);
}
body.nav--open #navTrigger span:nth-child(1) {
  transform: translateY(0) rotate(30deg);
}
body.nav--open #navTrigger span:nth-child(2) {
  opacity: 0;
}
body.nav--open #navTrigger span:nth-child(3) {
  transform: translateY(0) rotate(-30deg);
}
header nav {
  position: absolute;
  width: 100%;
  height: calc(100svh - 72px);
  top: 72px;
  left: 0;
  background: #F5F5F5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .4s;
}
body.nav--open header nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.list_hNav {
  border-top: solid 1px #CCCCCC;
}
.list_hNav > li {
  border-bottom: solid 1px #CCCCCC;
  position: relative;
}
.list_hNav > li.active {
  background: #eee;
}
.list_hNav > li a {
  display: block;
  padding: 1em 2em;
  position: relative;
  font-weight: 500;
}
.list_hNav > li a::before {
  content: '';
  width: 2.5em;
  height: 1.2em;
  background: #000;
  border-radius: 5em;
  position: absolute;
  right: 1.75em;
  top: 0;
  bottom: 0;
  margin: auto;
}
.list_hNav > li a::after {
  content: '';
  width: 2.5em;
  height: 1.2em;
  position: absolute;
  right: 1.75em;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/arrow01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2em auto;
}
header .h_btns {
  margin: 3em 0 0;
  display: flex;
  justify-content: center;
  gap: 0 1em;
}
header .h_btns .btn_link {
  background: #000;
  border-radius: 5em;
  text-align: center;
}
header .h_btns .btn_link a {
  display: block;
  padding: 1em 1.2em;
  color: #fff;
  font-weight: 500;
  font-size: 86%;
}
/* == footer ============================================== */
footer {
  background: #000000;
  padding: 0 0 2em;
  border-top-left-radius: .7em;
  border-top-right-radius: .7em;
}
footer .f_links .f_linkBtn {
  box-sizing: border-box;
  border-bottom: solid 1px #999;
}
footer .f_linkBtn a {
  display: block;
  padding: 7.3% 5.4% 3.2%;
  position: relative;
}
footer .f_linkBtn a::before {
  content: '';
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, .8);
  right: 0;
  top: 0;
  position: absolute;
  transition: all .6s;
}
footer .f_linkBtn .en {
  font-size: 228.6%;
  line-height: 1.8;
}
footer .f_linkBtn .btn_more {
  position: absolute;
  right: 5%;
  bottom: 26%;
}
footer .f_linkBtn .title_base .jp, footer .f_linkBtn .title_base .en {
  transition: all .6s;
  position: relative;
  z-index: 5;
}
footer .f_linkBtn .title_base .jp span::before {
  transition: all .6s;
}
footer .fPosition {
  position: relative;
  margin: 2.5em 0 0;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.list_fNav {
  width: 60%;
}
.list_fNav > li {
  font-size: 86%;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}
.list_fNav > li + li {
  margin: 1.45em 0 0;
}
.list_fNav > li a {
  display: block;
  color: #fff;
  position: relative;
}
.list_fNav > li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all .5s;
}
footer .fPosition .copyright {
  width: 100%;
  text-align: center;
  letter-spacing: 0;
  padding: 7em 0 0;
}
footer .copyright {
  color: #fff;
  font-size: 86%;
  line-height: 1.2;
}
footer .list_fBlank {
  width: 40%;
  text-align: right;
}
.list_fBlank > li + li {
  margin: .7em 0 0;
}
.list_fBlank > li a {
  display: block;
  color: #fff;
  font-size: 86%;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0 1.8em 0 0;
  background-image: url(../img/icon_blank.svg);
  background-size: .8em auto;
  background-repeat: no-repeat;
  background-position: right center;
  position: relative;
}
.list_fBlank > li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all .5s;
}
/* == parts ============================================== */
.title_center {
  text-align: center;
}
.title_center .jp {
  font-weight: 400;
}
.title_center .jp span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  font-size: 86%;
}
.title_center .jp span::before {
  content: '';
  width: .75em;
  height: .75em;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.title_center .en {
  font-size: 314.3%;
  line-height: 1.5;
  letter-spacing: .09em;
}
/**/
.title_base .jp {
  font-weight: 400;
  font-size: 72%;
  letter-spacing: .1em;
}
.title_base .jp span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
}
.title_base .jp span::before {
  content: '';
  width: .75em;
  height: .75em;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.title_base .en {
  font-size: 314.3%;
  line-height: 1.5;
  letter-spacing: .09em;
}
.title_base.type--white {
  color: #fff;
}
.title_base.type--white .jp span::before {
  background-color: #fff;
}
/**/
.btn_more {
  font-family: "Inter", sans-serif;
}
.btn_more.align--right {
  text-align: right;
}
.btn_more.align--center {
  text-align: center;
}
.btn_more .link {
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  letter-spacing: .05em;
}
.btn_more .arrow {
  display: inline-block;
  vertical-align: middle;
  width: 1.8em;
  height: 1.2em;
  background: #000;
  border-radius: 5em;
  overflow: hidden;
  position: relative;
  margin: 0 0 0 .5em;
  transition: background .6s;
}
.btn_more .arrow::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% auto;
  background-image: url("../img/arrow01.webp");
  transition: all .6s;
}
.btn_more .arrow::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% auto;
  background-image: url("../img/arrow01--on.webp");
  transition: all .5s;
}
.btn_more.type--white .arrow {
  background: #fff;
}
.btn_more.type--white .arrow::before {
  background-image: url("../img/arrow01--on.webp");
}
.btn_more.type--white .arrow::after {
  background-image: url("../img/arrow01.webp");
}
/**/
.parts_underTitle {
  padding: 6em 0 0;
}
.parts_underTitle .bread {
  margin: 0 0 2.5em;
}
.parts_underTitle .title_base .en {
  font-size: 286%;
}
.parts_underTitle .case_singleCompany {
  margin: 0 0 1em;
  font-size: 86%;
}
.parts_underTitle .title_single {
  font-size: 143%;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .1em;
}
.parts_underTitle .case_singleCategory {
  color: #999999;
  font-size: 72%;
  margin: 1.8em 0 3em;
}
.list_bread {
  display: flex;
  flex-wrap: wrap;
  font-size: 60%;
  letter-spacing: .05em;
}
.list_bread > li + li::before {
  content: 'ー';
  margin: 0 .7em;
}
.list_bread a {
  display: inline-block;
  color: #000;
}
.list_bread span {
  color: #333;
}
.parts_pager {
  margin: 4em auto 0;
}
.wp-pagenavi {
  display: flex;
  line-height: 1.6;
  gap: 0 .9em;
}
.wp-pagenavi span.current {
  color: #999999;
}
.wp-pagenavi span, .wp-pagenavi a {
  display: block;
  width: 1.5em;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: 114.3%;
}
.parts_thanks {
  margin: 7em 0 6em;
}
.parts_thanks .thanks_title {
  font-size: 114.3%;
  font-weight: 400;
  margin: 0 0 1.5em;
  letter-spacing: 0;
}
.parts_thanks .btn_more {
  margin: 3em 0 0;
}
/* ==================================== 
page-name #front
====================================*/
.fixedAnimation {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.fixedAnimation #app {
  width: 85%;
  height: 85%;
  object-fit: contain;
  object-position: center;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 10%;
  right: 0;
}
.fixedAnimation::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 0.75);
  backdrop-filter: blur(30px);
  will-change: filter;
  opacity: 0;
  transition: opacity 1s;
  z-index: 10;
}
body.blurStart .fixedAnimation::before {
  opacity: 1;
}
#page_front .block_frontTop {
  margin: 0 0 10.3em;
}
.block_frontTop .area_top {
  height: 100vh;
  position: relative;
}
.block_frontTop .area_top .inner_big {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.block_frontTop .area_top .textBox {
  pointer-events: none;
  box-sizing: border-box;
  margin: 0 auto 8%;
  width: 90%;
}
.block_frontTop .area_top .textBox .top_title {
  width: 82%;
  height: 0;
  padding: 20% 0 0;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 150%;
  background-image: url(../img/top_title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0 6%;
}
.block_frontTop .area_top .textBox .top_lead {
  letter-spacing: .05em;
  line-height: 1;
  font-size: 86%;
}
.block_frontTop .area_top .newsBox {
  width: 90%;
  margin: 0 auto 5%;
}
.block_frontTop .area_top .newsBox .news_tips {
  display: none;
}
.block_frontTop .area_top .newsWrap {
  background: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3% 4%;
  border-radius: .5em;
}
.block_frontTop .area_top .newsWrap .news_thumbnail {
  width: 25%;
  overflow: hidden;
  border-radius: .3em
}
.block_frontTop .area_top .newsWrap .news_summaryBox {
  width: 71%;
}
.block_frontTop .area_top .newsWrap .news_excerpt {
  font-size: 71.43%;
  line-height: 1.6;
  letter-spacing: .05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin: 0 0 .5em;
}
.block_frontTop .area_top .newsWrap .news_info {
  color: #999999;
  font-size: 62.5%;
  font-weight: 500;
  letter-spacing: .05em;
}
.block_frontTop .area_top .newsWrap .news_info .news_category {
  display: inline-block;
  padding: 0 0 0 .4em;
  margin: 0 0 0 .4em;
  position: relative;
}
.block_frontTop .area_top .newsWrap .news_info .news_category::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 1em;
  background: #999999;
  margin: auto;
}
/*-----*/
.block_frontTop .area_message {
  padding: 32% 0 30%;
}
.block_frontTop .area_message .messageBox {
  font-size: 114.3%;
  line-height: 3.2;
  text-align: center;
}
/*-----*/
.block_frontTop .area_ticker {
  overflow: hidden;
}
.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker01 45s linear infinite;
  pointer-events: none;
  align-items: center;
}
.ticker.type--reverse {
  animation: ticker02 45s linear infinite;
  margin: 1.5em 0 0;
}
.ticker .ticker-slide {
  line-height: 1;
  text-align: center;
  width: auto !important;
  white-space: nowrap;
  margin: 0 .75em;
}
.ticker .ticker-slide.image {
  width: 18vw !important;
}
.ticker .en {
  color: #CCCCCC;
  font-size: 229%;
  letter-spacing: 0;
  font-weight: 400;
}
/*---------------------------------------------
#service
---------------------------------------------*/
.block_service.fvAnime {
  position: relative;
  overflow: hidden;
}
.block_service.fvAnime .fvBg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  overflow: hidden;
}
.block_service.fvAnime .fvBg.bg01 {
  width: 53.5%;
}
.block_service.fvAnime .fvBg.bg02 {
  width: 61.85%;
}
.block_service .area_summary {
  margin: 0 0 7.8em;
}
.block_service .area_summary .service_lead {
  margin: 2.6em 0 6em;
  text-align: left;
  font-feature-settings: "palt";
}
.list_serviceSummary {
  overflow: hidden;
}
.list_serviceSummary > li {
  background: rgba(255, 255, 255, .8);
  position: relative;
  overflow: hidden;
}
.list_serviceSummary > li.js--scroll {
  transform: translateX(-101%);
  transition: all .4s ease .1s;
}
.list_serviceSummary > li.scroll--start {
  transform: translateX(0);
}
.list_serviceSummary > li.js--scroll::after {
  content: '';
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  transition: all .6s ease .5s;
}
.list_serviceSummary > li.scroll--start::after {
  transform: translateX(101%);
}
.list_serviceSummary > li + li {
  margin: 1.5em 0 0;
}
.list_serviceSummary > li a {
  display: block;
  padding: 2.3em 1.5em 1.3em;
}
.list_serviceSummary > li .textBox {
  box-sizing: border-box;
  position: relative;
}
.list_serviceSummary > li .textBox .service_secTitle {
  font-size: 200%;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .05em;
  text-align: left;
  font-feature-settings: "palt";
}
.list_serviceSummary > li .textBox .service_chapter {
  letter-spacing: .05em;
  margin: 0 0 1.4em;
  font-size: 86%;
}
.list_serviceSummary > li .textBox .btn_more {
  margin: 1em 0 0;
}
.list_serviceSummary > li .imgBox {
  margin: 2.4em auto 0;
  overflow: hidden;
  border-radius: .5em;
}
.list_serviceSummary > li .imgBox img {
  transition: all .5s;
}
/**/
.block_service .area_chapterTitle {
  margin: 3.6em 0 6.4em;
}
.block_service .area_chapterTitle .inner {
  position: relative;
}
.block_service .area_chapterTitle .chapter_name {
  font-size: 86%;
  font-weight: 500;
  line-height: 2.8125;
  letter-spacing: .05em;
  margin: 0 0 1em;
}
.block_service .area_chapterTitle .chapter_title {
  font-size: 200%;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .05em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
}
.block_service .area_chapterTitle .chapter_img {
  overflow: hidden;
  border-radius: .5em;
  margin: 0 0 1.4em;
}
.block_service .area_chapterTitle .chapter_lead {
  margin: 1.5em 0 0;
}
.block_service .area_chapterTitle .chapter_lead p {
  letter-spacing: .05em;
}
/*-----*/
.block_service .area_contents .inner {
  width: 100%;
}
.block_service .area_contents .contentsSet {
  padding: 0 0 4.6em;
}
.block_service .area_contents .contentsSet + .contentsSet {
  border-top: none;
}
.block_service .area_contents .contents_titleFlex {
  width: 90%;
  margin: auto;
  border-top: solid 1px #CCCCCC;
  padding: 6.5em 0 0;
}
.block_service .area_contents .contents_title {
  font-size: 143%;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 1.5em;
}
.block_service .area_contents .contents_lead {
  letter-spacing: .05em;
  font-feature-settings: "palt";
  font-size: 114.3%;
}
.block_service .area_contents .whiteBg {
  background: #fff;
  padding: 4.4em 5%;
  margin: 3.8em 0 0;
  overflow: hidden;
  border-radius: .5em;
}
.list_serviceWall > li {
  position: relative;
  padding: 0 0 4.3em 12%;
  background-position: right 9% top 1%;
  background-size: 1.786em auto;
  background-repeat: no-repeat;
}
.list_serviceWall > li:nth-child(1) {
  background-image: url("../img/service/chapter_img01_sp01.webp");
}
.list_serviceWall > li:nth-child(2) {
  background-image: url("../img/service/chapter_img01_sp02.webp");
}
.list_serviceWall > li:nth-child(3) {
  background-image: url("../img/service/chapter_img01_sp03.webp");
}
.list_serviceWall > li:nth-child(4) {
  background-image: url("../img/service/chapter_img01_sp04.webp");
}
.list_serviceWall > li:last-child {
  padding: 0 0 0 12%;
}
.list_serviceWall > li::before {
  content: '';
  width: .6em;
  height: .6em;
  background: #000000;
  position: absolute;
  left: .1em;
  top: .9em;
  border-radius: 50%;
}
.list_serviceWall > li::after {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 1.2%;
  top: 1em;
  background: url(../img/service/dott.webp);
  background-repeat: repeat-y;
  background-size: 2px auto;
}
.list_serviceWall > li:last-child::before {
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  background: transparent;
  border-radius: 0;
  transform: rotateZ(135deg);
  left: 0;
  top: .7em;
}
.list_serviceWall > li:last-child::after {
  display: none;
}
.list_serviceWall > li .wall_time {
  margin: 0 0 1.5em;
}
.list_serviceWall > li .wall_time span {
  display: inline-block;
  background: #000;
  font-weight: 500;
  font-size: 86%;
  padding: 0 1.5em;
  color: #fff;
}
.list_serviceWall > li .wall_name {
  font-weight: 400;
  font-size: 143%;
  margin: 0 0 .5em;
}
.list_serviceWall > li .wall_desc {
  font-size: 87.5%;
  letter-spacing: .05em;
  font-feature-settings: "palt";
  margin: 0 0 1.9em;
}
.list_wallStep > li {
  background: #F5F5F5;
  border-radius: .3em;
  text-align: center;
  font-size: 86%;
  line-height: 1.4;
  letter-spacing: .05em;
  height: 4em;
  display: flex;
  position: relative;
}
.list_wallStep > li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  letter-spacing: 0;
}
.list_wallStep > li + li {
  margin: 1.15em 0 0;
}
.list_wallStep > li + li::before {
  content: '';
  width: .55em;
  height: .55em;
  background-color: #000;
  clip-path: polygon(50% .55em, 0% 0%, .55em 0%);
  position: absolute;
  left: 0;
  right: 0;
  top: -.85em;
  margin: auto;
}
.list_serviceApproach {
  font-feature-settings: "palt";
}
.list_serviceApproach > li + li {
  margin: 3.8em 0 0;
}
.list_serviceApproach > li .approach_num {
  text-align: center;
  margin: 0 0 1.8em;
}
.list_serviceApproach > li .approach_num .en {
  line-height: 1;
  display: inline-block;
  font-size: 229%;
  font-weight: 600;
  letter-spacing: .05em;
}
.list_serviceApproach > li .approach_name {
  text-align: center;
  font-size: 143%;
  line-height: 1.4;
  letter-spacing: .05em;
  margin: 0 0 1.05em;
}
.list_serviceApproach > li .approach_text {
  letter-spacing: .05em;
  width: 88%;
  margin: auto;
  font-size: 114.3%;
}
.block_service .area_contents .branding_img {
  margin: auto;
}
/*----------*/
.block_service .area_flow {
  margin: 0 0 7em;
}
.block_service .area_flow .inner {
  width: 100%;
}
.block_service .area_flow .sec_title {
  font-weight: 400;
  font-size: 143%;
  width: 90%;
  margin: auto;
  border-top: solid 1px #CCCCCC;
  padding: 4.4em 0 0;
}
.block_service .area_flow .list_flowSteps {
  margin: 3.6em 0 0;
}
.list_flowSteps > li {
  background: #fff;
  padding: 4.5em 0 4.7em;
  overflow: hidden;
  border-radius: .5em;
}
.list_flowSteps > li + li {
  margin: 3em auto 0;
}
.list_flowSteps > li .stepWrap {
  margin: auto;
}
.list_flowSteps > li .flow_titleBox {
  width: 90%;
  margin: auto;
}
.list_flowSteps > li .flow_title {
  margin: 0 0 2.2em;
}
.list_flowSteps > li .flow_title .en {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .05em;
  margin: 0 0 .8em;
  font-size: 86%;
}
.list_flowSteps > li .flow_title .jp {
  font-size: 143%;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .1em;
  font-feature-settings: "palt";
}
.list_flowSteps > li .flow_lead {
  letter-spacing: .05em;
  font-feature-settings: "palt";
}
.list_flowSteps > li .flow_image {
  margin: 4.1em 0 0;
}
.list_flowSteps > li .flow_image img {
  width: 90%;
  display: block;
  margin: auto;
}
.block_service .area_flow .list_flowStepsDesign {
  margin: 3.9em auto 0;
  width: 90%;
}
.list_flowStepsDesign > li {
  background: #F5F5F5;
  box-sizing: border-box;
  padding: 2em 0 2.9em;
  position: relative;
}
.list_flowStepsDesign > li + li {
  margin: 3.9em auto 0;
}
.list_flowStepsDesign > li + li::before {
  content: '';
  width: 1.7em;
  height: 1.3em;
  background-color: #000;
  clip-path: polygon(50% 1.3em, 0% 0%, 1.7em 0%);
  position: absolute;
  left: 0;
  right: 0;
  top: -2.6em;
  margin: auto;
}
.list_flowStepsDesign > li .en {
  text-align: center;
  font-size: 200%;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 .5em;
}
.list_flowStepsDesign > li .design_name {
  text-align: center;
  font-size: 128.6%;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
  font-feature-settings: "palt";
  margin: 0 0 .9em;
}
.list_flowStepsDesign > li .design_text {
  font-size: 86%;
  width: 88%;
  margin: auto;
  font-feature-settings: "palt";
}
/*----------*/
.block_service .area_chapterLinks {
  padding: 0 0 8.5em;
  margin: 2.4em 0 0;
}
.block_service .area_chapterLinks .inner {
  border-top: solid 1px #CCCCCC;
  padding: 6.4em 0 0;
}
.block_service .area_chapterLinks .chapterLinks_title {
  font-size: 114.3%;
  line-height: 1.875;
  margin: 0 0 1.2em;
}
.block_service .area_chapterLinks .list_serviceSummary > li .textBox .service_secTitle {
  font-size: 200%;
}
/*---------------------------------------------
#case
---------------------------------------------*/
.block_case .area_summary {
  margin: 0 0 7.6em;
}
.block_case .area_summary .list_caseSummary {
  margin: 3.4em 0 0;
}
.list_caseSummary > li {
  padding: 1.4em 0 3em;
  border-top: solid 1px #ccc;
}
.list_caseSummary > li:last-child {
  border-bottom: solid 1px #ccc;
}
.list_caseSummary > li .imgBox {
  overflow: hidden;
  border-radius: .5em;
}
.list_caseSummary > li .imgBox img {
  transition: all .5s;
}
.list_caseSummary > li .textBox {
  margin: 1em 0 0;
  box-sizing: border-box;
}
.list_caseSummary > li .textBox .case_company {
  line-height: 1.5;
  margin: 0 0 .7em;
}
.list_caseSummary > li .textBox .case_title {
  font-size: 114.3%;
  line-height: 1.5;
  margin: 0 0 .4em;
  text-align: left;
}
.list_caseSummary > li .textBox .case_info {
  color: #999999;
  font-size: 86%;
  line-height: 2;
  margin: 0 0 .4em;
}
.list_caseSummary > li .btn_more .arrow {
  margin: 0;
}
.block_case .area_summary .btn_more.align--right {
  margin: 2.9em 0 0;
  overflow: hidden;
  text-align: center;
}
/**/
.block_case .area_archive {
  margin: 7.6em 0 6em;
}
.list_caseArchive {
  border-top: solid 1px #CCCCCC;
}
.list_caseArchive > li {
  border-bottom: solid 1px #CCCCCC;
}
.list_caseArchive > li .imgBox {
  margin: 0 0 .7em;
  overflow: hidden;
  border-radius: .8em;
}
.list_caseArchive > li .case_company {
  margin: 0 0 .5em;
}
.list_caseArchive > li .case_title {
  font-size: 114.3%;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 .4em;
}
.list_caseArchive > li .case_info {
  color: #999999;
  font-size: 86%;
  margin: 0 0 .4em;
}
.list_caseArchive > li .btn_more .arrow {
  margin: 0;
}
.list_caseArchive > li a {
  display: block;
  padding: 1.4em 0 3em;
}
/**/
.block_case .area_single {
  margin: 3em 0 8em;
}
.block_case .area_single .inner {
  width: 100%;
}
.block_case .area_single .single_thumbnail {
  background: #9DA4AF;
  padding: 4.6em 0;
}
.block_case .area_single .single_thumbnail span {
  display: block;
  width: 90%;
  margin: auto;
  box-shadow: 64px 64px 64px 0 rgba(0, 0, 0, .1);
}
.block_case .area_single .single_contents{
    width: 90%;
    margin: auto;
}
/*
.list_singleStickyMenu {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4%;
}
.list_singleStickyMenu > li {
  width: 48%;
  border-bottom: solid 1px #CCCCCC;
}
.list_singleStickyMenu > li a {
  display: block;
  padding: .6em 0 .6em .6em;
  position: relative;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
}
.list_singleStickyMenu > li a::before {
  content: '';
  width: .6em;
  height: .6em;
  box-sizing: border-box;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  right: .6em;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(135deg);
}
*/
.block_case .area_single .stickyContents {
  border-top: solid 1px #CCCCCC;
}
.block_case .area_single .contentsSet {
  padding: 5.3em 0 5em;
  position: relative;
  width: 90%;
  margin: auto;
  border-bottom: solid 1px #CCCCCC;
}
.block_case .area_single .contentsSet .contents_title {
  font-size: 143%;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .05em;
  margin: 0 0 1.6em;
}
.block_case .area_single .contentsSet .contents_textarea {
  line-height: 1.9;
  letter-spacing: .05em;
}
.block_case .area_single .contentsSet .contents_textarea p + p {
  margin: 2.4em 0 0;
}
.list_caseMember {
  margin: 1.5em 0 0;
    word-break: break-all;
}
.list_caseMember > li {
  box-sizing: border-box;
  display: flex;
}
.list_caseMember > li + li {
  margin: .8em 0 0;
}
.list_caseMember > li span {
  display: block;
  line-height: 1.5;
}
.list_caseMember > li span.en {
  font-weight: 600;
  width: 32%;
  padding: .1em 0 0;
}
.list_caseMember > li span.name {
  width: 68%;
}
.block_case .area_single .single_imageGallery {
  margin: 5.6em 0 4em;
}
.list_imageGallery {
  pointer-events: none;
  width: 90%;
  margin: auto;
}
.list_imageGallery > li + li {
  margin: 1.3em 0 0;
}
.list_imageGallery > li {
  height: 0;
  padding: 53.226% 0 0;
  position: relative;
  overflow: hidden;
  border-collapse: .5em;
}
.list_imageGallery > li img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
  object-position: center;
}
/*---------------------------------------------
#download
---------------------------------------------*/
.block_download .area_summary {
  overflow: hidden;
  margin: 0 0 8.3em
}
.block_download .area_summary .textBox {
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}
.block_download .area_summary .textBox::before {
  content: '';
  width: 10vw;
  height: 100%;
  position: absolute;
  right: 100%;
}
.block_download .area_summary .download_lead {
  margin: 2.8em 0 3.8em;
  text-align: left;
}
.block_download .area_summary .slideBox {
  width: 100%;
}
#js_slideDownload {
  padding: 0 0 4.8em;
  overflow: visible;
}
#js_slideDownload .swiper-slide a {
  display: block;
}
#js_slideDownload .swiper-slide .slide_thumb {
  background: #9DA4AF;
  overflow: hidden;
  border-radius: .5em;
  padding: 12.4% 12.7%;
  position: relative;
  margin: 0 0 .5em;
}
#js_slideDownload .swiper-slide .slide_thumb::before {
  content: '';
  width: 7.845%;
  height: 0;
  padding: 7.845% 0 0;
  background: url(../img/icon_download.webp) no-repeat;
  background-size: contain;
  position: absolute;
  right: 2.4%;
  bottom: 3.3%;
}
#js_slideDownload .swiper-slide .slide_thumb img {
  box-shadow: 1em 1em 2em 0 rgba(0, 0, 0, .1);
}
#js_slideDownload .download_name {
  font-size: 114.3%;
  font-weight: 400;
  line-height: 2.4;
  margin: 0 0 .2em;
}
#js_slideDownload .download_desc {
  line-height: 1.6;
  letter-spacing: .05em;
  text-align: left;
  font-size: 86%;
}
#js_slideDownload .swiper-nav {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: .5em;
}
#js_slideDownload .swiper-nav svg {
  display: none;
}
#js_slideDownload .swiper-nav .swiper-button-next {
  width: 24px;
  height: 16px;
  display: block;
  box-sizing: border-box;
  border: solid 1px #999999;
  border-radius: 5em;
  left: calc(100% - 24px);
  right: auto;
  transition: background .3s;
}
#js_slideDownload .swiper-nav .swiper-button-next::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: .3em;
  height: .3em;
  box-sizing: border-box;
  transform: rotateZ(45deg);
  transform-origin: center;
}
#js_slideDownload .swiper-nav .swiper-button-prev {
  width: 24px;
  height: 16px;
  display: block;
  box-sizing: border-box;
  border: solid 1px #999999;
  border-radius: 5em;
  left: calc(100% - 55px);
  right: auto;
  transition: background .3s;
}
#js_slideDownload .swiper-nav .swiper-button-prev::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: .3em;
  height: .3em;
  box-sizing: border-box;
  transform: rotateZ(-135deg);
  transform-origin: center;
}
#js_slideDownload .swiper-nav .swiper-button-prev::after, #js_slideDownload .swiper-nav .swiper-button-next::after {
  display: none;
}
#js_slideDownload .swiper-pagination {
  text-align: left;
  font-size: 75%;
  letter-spacing: .5em;
}
.block_download .area_summary .btn_more {
  margin: 3.2em auto 0;
  text-align: center;
}
/**/
.block_download .area_archive {
  margin: 7em 0 8em;
}
.block_download .area_archive .archive_lead {
  letter-spacing: .1em;
}
.block_download .area_archive .list_downloadSummary {
  margin: 5em 0 0;
}
.list_downloadSummary > li + li {
  margin: 3.2em auto 0;
}
.list_downloadSummary > li a {
  display: block;
  position: relative;
}
.list_downloadSummary > li .download_thumbnail {
  background: #9DA4AF;
  overflow: hidden;
  position: relative;
  padding: 12.583%;
  border-radius: .5em;
}
.list_downloadSummary > li .download_thumbnail::before {
  content: '';
  width: 6.5%;
  height: 0;
  padding: 6.5% 0 0;
  background-image: url(../img/icon_download.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 3.2%;
  bottom: 5%;
  transition: background .4s;
}
.list_downloadSummary > li .download_thumbnail img {
  box-shadow: 1em 1px 2em 0 rgba(0, 0, 0, .1);
  transition: all .5s;
}
.list_downloadSummary .download_name {
  font-size: 114.3%;
  font-weight: 400;
  line-height: 1.6;
  margin: 1.3em 0 .4em;
  letter-spacing: .1em;
}
.list_downloadSummary .download_desc {
  line-height: 1.6;
  letter-spacing: .05em;
  font-size: 86%;
}
/**/
.block_download .area_single {
  margin: 7em 0 0;
}
.block_download .area_single .inner {
  width: 100%;
}
.block_download .area_single .single_titleBox {
  width: 90%;
  margin: 0 auto;
}
.block_download .area_single .single_title {
  font-size: 143%;
  font-weight: 400;
  margin: 0 0 1em;
}
#js_slideDownloadSingle {
  margin: 4em 0 5.4em;
  padding: 0 0 4em;
}
#js_slideDownloadSingle::before {
  content: '';
  background: #9DA4AF;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 4em);
  overflow: hidden;
}
#js_slideDownloadSingle .swiper-wrapper {
  padding: 5.8em 0;
  z-index: 10;
}
#js_slideDownloadSingle .slide_thumb {
  overflow: hidden;
  box-shadow: 2em 2em 4em 0 rgba(0, 0, 0, .1);
}
#js_slideDownloadSingle .swiper-nav {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: .5em;
}
#js_slideDownloadSingle .swiper-nav svg {
  display: none;
}
#js_slideDownloadSingle .swiper-nav .swiper-button-next {
  width: 38px;
  height: 24px;
  display: block;
  box-sizing: border-box;
  border: solid 1px #999999;
  border-radius: 5em;
  left: auto;
  right: 1.2em;
  transition: background .3s;
}
#js_slideDownloadSingle .swiper-nav .swiper-button-next::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: .3em;
  height: .3em;
  box-sizing: border-box;
  transform: rotateZ(45deg);
  transform-origin: center;
}
#js_slideDownloadSingle .swiper-nav .swiper-button-prev {
  width: 38px;
  height: 24px;
  display: block;
  box-sizing: border-box;
  border: solid 1px #999999;
  border-radius: 5em;
  left: 1.2em;
  right: auto;
  transition: background .3s;
}
#js_slideDownloadSingle .swiper-nav .swiper-button-prev::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: .3em;
  height: .3em;
  box-sizing: border-box;
  transform: rotateZ(-135deg);
  transform-origin: center;
}
#js_slideDownloadSingle .swiper-nav .swiper-button-prev::after, #js_slideDownloadSingle .swiper-nav .swiper-button-next::after {
  display: none;
}
#js_slideDownloadSingle .swiper-nav .swiper-button-next:hover, #js_slideDownloadSingle .swiper-nav .swiper-button-prev:hover {
  background: #fff;
}
#js_slideDownloadSingle .swiper-pagination {
  font-size: 75%;
  letter-spacing: .5em;
  top: auto;
  bottom: .8em;
  text-align: center;
  pointer-events: none;
}
.block_download .area_single .hubspotWrap {
  padding: 5em 0 0;
  margin: 0 auto 6em;
  border-top: solid 1px #CCCCCC;
  width: 90%;
}
/*---------------------------------------------
#feature
---------------------------------------------*/
.block_feature .area_summary {
  background: rgba(0, 0, 0, .6);
  padding: 6.6em 0 6.7em;
  position: relative;
  overflow: hidden;
  border-radius: .5em;
}
.block_feature .textBox {
  margin: 3.8em auto 0;
  color: #fff;
  text-align: left;
}
.block_feature .textBox .feature_lead {
  margin: 0 0 3.5em;
}
.block_feature .featureImgae {
  margin: 3.4em 0 0;
}
.block_feature .featureImgae > div {
  border-radius: .7em;
  overflow: hidden;
}
.block_feature .featureImgae > div.img02 {
  display: none;
}
.block_feature .featureImgae > div.img03 {
  display: none;
}
/*---------------------------------------------
#faq
---------------------------------------------*/
.block_faq .area_summary {
  padding: 7.9em 0 3em;
}
.block_faq .faqPosition {
  position: relative;
}
.block_faq .faq_lead {
  margin: 2.8em 0 3.9em;
  text-align: left;
  letter-spacing: .1em;
}
.list_faqSummary {
  border-top: solid 1px #CCCCCC;
  margin: .5em 0 0;
}
.list_faqSummary > li {
  border-bottom: solid 1px #CCCCCC;
  position: relative;
}
.list_faqSummary > li::before {
  content: '';
  width: 0;
  height: 1px;
  background: #333;
  position: absolute;
  right: 0;
  bottom: -1px;
  transition: all .8s;
}
.list_faqSummary dl {
  position: relative;
}
.list_faqSummary dl a{
    text-decoration: underline;
    transition: opacity .3s;
}
.list_faqSummary dl::before, .list_faqSummary dl::after {
  content: '';
  width: 1.2em;
  height: 2px;
  background: #333;
  position: absolute;
  right: 0;
  top: 2.4em;
  transform-origin: center;
  transition: all .3s;
}
.list_faqSummary dl::after {
  transform: rotateZ(90deg);
}
.list_faqSummary dl.active::after {
  transform: rotateZ(0);
}
.list_faqSummary dl dt {
  font-weight: 500;
  position: relative;
  padding: 1.4em 2em 1.4em 2.6em;
  letter-spacing: .1em;
  cursor: pointer;
}
.list_faqSummary dl dt::after {
  content: 'Q.';
  position: absolute;
  left: 0;
  top: 1.1em;
  font-size: 157.143%;
  font-weight: 400;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
.list_faqSummary dl .dd_text {
  padding: .1em 0 3em 2.7em;
  text-align: left;
}
.list_faqSummary dl dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.list_faqSummary dl.active dd {
  max-height: 30em;
}
.block_faq .area_summary .btn_more {
  margin: 4em auto 0;
  text-align: center;
}
/**/
.block_faq .area_archive {
  margin: 7em 0 6em;
}
.block_faq .area_archive .flexLeft {
  margin: 0 0 5em;
}
.block_faq .area_archive .faq_desc {
  font-feature-settings: "palt";
}
/*---------------------------------------------
#tips
---------------------------------------------*/
.block_tips {
  padding: 4.7em 0 8em;
}
.block_tips .area_summary .tipsPosition {
  position: relative;
}
.block_tips .tips_lead {
  margin: 2.7em 0 0;
  text-align: left;
}
.block_tips .area_summary .list_tipsSummary {
  margin: 3.5em 0 0;
}
.list_tipsSummary > li + li {
  margin: 2.3em 0 0;
}
.list_tipsSummary > li a {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.list_tipsSummary > li .tips_thumbnail {
  overflow: hidden;
  border-radius: .8em;
  width: 38%;
  position: relative;
  height: 0;
  padding: 25.9% 0 0;
}
.list_tipsSummary > li .tips_thumbnail img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .5s;
}
.list_tipsSummary > li .tipsCaption {
  width: 57.5%;
}
.list_tipsSummary > li .tips_title {
  line-height: 1.6;
  letter-spacing: .05em;
  margin: 0 0 .3em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  min-height: 4.8em;
}
.list_tipsSummary > li .tips_info {
  color: #999999;
  font-size: 75%;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
}
.list_tipsSummary > li .tips_info span.category {
  margin: 0 0 0 1em;
  padding: 0 0 0 1em;
  position: relative;
}
.list_tipsSummary > li .tips_info span.category::before {
  content: '';
  width: 1px;
  height: 1em;
  background: #999999;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.block_tips .area_summary .btn_more {
  margin: 3.5em auto 0;
}

/*---------------------------------------------
#topics
---------------------------------------------*/
.block_topics .area_archive {
  margin: 7.6em 0;
}
.block_topics .area_archive .inner {
  width: 100%;
}
.list_categoryLinks {
  display: flex;
  gap: .8em;
  margin: 0 0 3.5em;
  overflow-x: scroll;
  padding: 0 5% 1em;
}
.list_categoryLinks > li {
  white-space: nowrap;
}
.list_categoryLinks > li a {
  display: block;
  font-size: 86%;
  font-weight: 500;
  line-height: 1.6;
  padding: .5em 1.7em;
  border-radius: 5em;
  background: #fff;
  transition: all .4s;
  letter-spacing: 0;
}
.list_categoryLinks > li.active a {
  background: #000000;
  color: #fff;
}
.block_topics .area_archive .list_tipsSummary {
  width: 90%;
  margin: auto;
}
.block_topics .area_archive .parts_pager {
  width: 90%;
}
/**/
.block_topics .area_single {
  margin: 7em 0 6em;
  overflow: hidden;
}
.block_topics .area_single .btn_more {
  text-align: center;
  margin: 4em auto 0;
}
.block_topics .area_single .single_stickyWrap {
  position: relative;
  top: 0;
}
.block_topics .area_single .stickyFixed {
  border-top: solid 2px #000000;
}
.block_topics .area_single .stickyNav {
  position: sticky;
  left: 0;
  top: 0;
  padding: 1.5em 0 0;
}
.block_topics .area_single .stickyNav .toc_title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .05em;
}
.toc_list {
  margin: 1.3em 0 0;
}
.toc_list > li {
  border-bottom: solid 1px #999;
}
.toc_list a {
  display: block;
  font-size: 87.5%;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .1em;
  transition: all .3s;
  color: #666;
  padding: .8em 1.5em .8em 0;
  position: relative;
}
.toc_list a::before {
  content: '';
  width: .6em;
  height: .6em;
  box-sizing: border-box;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  right: .6em;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotateZ(135deg);
}
.toc_list a.active {
  color: #000;
}
.toc_list > li ul {
  margin: 0 0 0 1em;
}
.toc_list > li ul > li {
  border-top: dotted 1px #999;
}
.block_topics .single_others {
  border-top: solid 1px #CCCCCC;
  margin: 4em 0 0;
  padding: 2em 0 0;
}
.block_topics .single_others .others_title {
  font-size: 150%;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .05em;
}
.block_topics .single_others .others_lead {
  letter-spacing: .05em;
  font-feature-settings: "palt";
  margin: 1em 0 0;
}
.list_otherTopics {
  margin: 2.5em 0 0;
  border-top: solid 1px #CCCCCC;
}
.list_otherTopics > li {
  border-bottom: solid 1px #CCCCCC;
}
.list_otherTopics > li a {
  display: flex;
  justify-content: space-between;
  padding: 1.25em 0;
}
.list_otherTopics > li .other_thumbnail {
  width: 32.144%;
  overflow: hidden;
  position: relative;
  border-radius: .5em;
  height: 0;
  padding: 21.9% 0 0;
}
.list_otherTopics > li .other_thumbnail img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}
.list_otherTopics > li .textBox {
  width: 65%;
  box-sizing: border-box;
  position: relative;
}
.list_otherTopics > li .textBox .other_title {
  line-height: 1.6;
  letter-spacing: .05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.list_otherTopics > li .textBox .other_info {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #999999;
  font-size: 75%;
  line-height: 1.6;
  letter-spacing: .05em;
}
.list_otherTopics > li .other_info span.category {
  margin: 0 0 0 1em;
  padding: 0 0 0 1em;
  position: relative;
}
.list_otherTopics > li .other_info span.category::before {
  content: '';
  width: 1px;
  height: 1em;
  background: #999999;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.list_otherTopics > li .btn_more {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 1;
}
/*---------------------------------------------
#bnr
---------------------------------------------*/
.block_bnr {
  padding: 0 0 10em;
}
/* ==================================== 
#contact
====================================*/
.block_contact .area_form {
  margin: 7em 0 5em;
}
