@charset "utf-8";
.sp-only {
  display: none !important;
}
body {
  color: #333333;
  background: #F5F5F5;
  position: relative;
}
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: min(96%, 1280px);
}
.inner--big {
  margin: auto;
  width: min(96%, 1360px);
}
@media all and (max-width:1280px) {
  main {
    font-size: 1.25vw;
  }
}
.svgWrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
/*
.svgWrap svg {
  width: 100%;
  height: 100%;
}
*/
.svgWrap .svgLeft {
  width: 50%;
  height: 80%;
  transform: translateX(0);
}
.svgWrap canvas{
    width: 100vw;
    height: 90vh;
}
.svgWrap .svgRight {
  mix-blend-mode: screen;
  width: 50%;
  height: 80%;
  transform: translateX(0);
}

/* == header ============================================== */
@media all and (min-width:1025px) {
  #navTrigger {
    display: none;
  }
  header .h_inner {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2em 3em .5em;
    box-sizing: border-box;
    transition: transform .6s;
  }
  body.header--scroll header .h_inner {
    transform: translateY(-6.5em);
  }
  body.logged-in header .h_inner {
    top: 32px;
  }
  header .h_logo {
    width: 244px;
    height: 20px;
    margin: 0 auto 0 0;
  }
  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;
  }
  header .h_logo a:hover {
    opacity: .7;
  }
  header nav {
    display: flex;
    align-items: center;
  }
  .list_hNav {
    display: flex;
    gap: 0 2.5em;
    margin: 0 3em 0 0;
  }
  .list_hNav > li {
    font-size: 87.5%;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .list_hNav > li a {
    display: block;
    position: relative;
    padding: .629em 0;
  }
  .list_hNav > li a::before {
    content: '';
    width: .5em;
    height: .5em;
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.2em;
    margin: auto;
    border-radius: 50%;
    transition: all .4s;
    opacity: 0;
    transform: translateY(-.5em) scale(0);
  }
  .list_hNav > li:hover a::before, .list_hNav > li.active a::before {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  header .h_btns {
    display: flex;
    gap: 0 .608em;
  }
  header .h_btns .btn_link {
    text-align: center;
    line-height: 1;
    letter-spacing: 0;
    overflow: hidden;
  }
  header .h_btns .btn_link a {
    border-radius: 5em;
    background: #000;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 75%;
    font-weight: 500;
    padding: 1.167em 1.65em;
    transition: all .3s;
  }
  header .h_btns .btn_link a:hover {
    background: #fff;
    color: #000;
  }
}
@media all and (min-width:1025px) and (max-width:1280px) {
  header .h_inner {
    padding: 1.5em;
  }
  header .h_logo {
    width: 162px;
    height: 14px;
  }
  .list_hNav {
    gap: 0 1.5em;
    margin: 0 1.5em 0 0;
  }
  header .h_btns .btn_link a {
    padding: 1.167em 1em;
  }
}
@media all and (max-width:1024px) {
  header .h_inner {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 30px;
    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;
  }
  .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: 2em 0 0;
    display: flex;
    justify-content: center;
    gap: 0 2em;
  }
  header .h_btns .btn_link {
    background: #000;
    border-radius: 5em;
    text-align: center;
  }
  header .h_btns .btn_link a {
    display: block;
    padding: 1em 1.5em;
    color: #fff;
    font-weight: 500;
  }
}
/* == footer ============================================== */
footer {
  background: #000000;
  padding: 0 0 4em;
  overflow: hidden;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}
footer .f_links {
  display: flex;
  border-bottom: solid 1px #999;
}
footer .f_links .f_linkBtn {
  width: 50%;
  box-sizing: border-box;
}
footer .f_links .f_linkBtn + .f_linkBtn {
  border-left: solid 1px #999;
}
footer .f_linkBtn a {
  display: block;
  padding: 7.5% 11% 5.4%;
  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 a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}
footer .f_linkBtn .en {
  font-size: 300%;
  line-height: 1.5;
}
footer .f_linkBtn .btn_more {
  position: absolute;
  right: 9%;
  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 .f_linkBtn a:hover .title_base .jp, footer .f_linkBtn a:hover .title_base .en {
  color: #000;
}
footer .f_linkBtn a:hover .title_base .jp span::before {
  background-color: #000;
}
footer .fPosition {
  position: relative;
  margin: 4.5em 0 0;
}
footer .list_fNav {
  display: flex;
  gap: 0 2em;
}
.list_fNav > li {
  font-size: 87.5%;
  font-weight: 500;
  line-height: 1.6;
}
.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;
}
.list_fNav > li a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
footer .fPosition .copyright {
  position: absolute;
  right: 0;
  bottom: 0;
  letter-spacing: 0.03em;
}
footer .copyright {
  color: #fff;
  font-size: 75%;
  line-height: 1.2;
}
footer .list_fBlank {
  margin: 4.1em 0 0;
}
.list_fBlank {
  display: flex;
  gap: 0 2.5em;
}
.list_fBlank > li a {
  display: block;
  color: #fff;
  font-size: 87.5%;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0 2em 0 0;
  background-image: url(../img/icon_blank.svg);
  background-size: 1em 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;
}
.list_fBlank > li a:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
@media all and (max-width:1024px) {
  footer .f_links {
    font-size: 1.5625vw;
  }
}
/* == 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;
}
.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: 400%;
  line-height: 1.3;
  letter-spacing: .09em;
}
/**/
.title_base .jp {
  font-weight: 400;
}
.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: 400%;
  line-height: 1.3;
  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: 2.375em;
  height: 1.5em;
  background: #000;
  border-radius: 5em;
  overflow: hidden;
  position: relative;
  margin: 0 0 0 .7em;
  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");
}
.btn_more .link:hover .arrow, a:hover .btn_more .link .arrow {
  background: rgba(255, 255, 255, .8);
}
.btn_more.type--white .link:hover .arrow, a:hover .btn_more.type--white .link .arrow {
  background: rgba(0, 0, 0, .8);
}
.btn_more .link:hover .arrow::before, a:hover .btn_more .link .arrow::before {
  transform: translateX(100%);
}
.btn_more .link:hover .arrow::after, a:hover .btn_more .link .arrow::after {
  transform: translateX(100%);
}
/**/
.parts_underTitle {
  padding: 13em 0 0;
}
.parts_underTitle .inner {
  position: relative;
}
.parts_underTitle .title_base .en {
  font-size: 500%;
}
.parts_underTitle .bread {
  position: absolute;
  right: 0;
  top: .3em;
}
.parts_underTitle .case_singleCompany {
  margin: 0 0 1.4em;
}
.parts_underTitle .title_single {
  font-size: 200%;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .1em;
}
.parts_underTitle .case_singleCategory {
  color: #999999;
  font-size: 87.5%;
  margin: 1.7em 0 0;
}
.list_bread {
  display: flex;
  font-size: 75%;
  letter-spacing: .05em;
}
.list_bread > li + li::before {
  content: 'ー';
  margin: 0 1em;
}
.list_bread a {
  display: inline-block;
  color: #000;
  transition: opacity .3s;
}
.list_bread a:hover {
  opacity: .6;
}
.list_bread span {
  color: #333;
}
.parts_pager {
  margin: 9.4em 0 0;
}
.wp-pagenavi {
  display: flex;
  line-height: 1.6;
  gap: 0 2em;
}
.wp-pagenavi span.current {
  color: #999999;
}
.wp-pagenavi span, .wp-pagenavi a {
  display: block;
  width: 1.5em;
  text-align: center;
  line-height: 1.5;
}
.wp-pagenavi a {
  transition: all .3s;
}
.wp-pagenavi a:hover {
  opacity: .7;
}
.parts_thanks {
  margin: 7.7em 0 10em;
}
.parts_thanks .thanks_title {
  font-size: 125%;
  font-weight: 400;
  margin: 0 0 2em;
}
.parts_thanks .btn_more {
  margin: 4em 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: 0;
  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);
  opacity: 0;
  transition: opacity 1s;
  z-index: 10;
}
body.blurStart .fixedAnimation::before {
  opacity: 1;
}
/*---------------------------------------------
#frontTop
---------------------------------------------*/
#page_front .block_frontTop {
  margin: 0 0 11.7em;
}
.block_frontTop .area_top {
  height: 100vh;
  position: relative;
}
.block_frontTop .area_top .inner_big {
  height: 100%;
  position: relative;
}
.block_frontTop .area_top .textBox {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  bottom: 5.4%;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0 0 0 3.5%;
}
.block_frontTop .area_top .textBox .top_title {
  font-size: 300%;
  line-height: 1.4;
  width: 33.4%;
  height: 0;
  padding: 8.04% 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 2.6%;
}
.block_frontTop .area_top .textBox .top_lead {
  letter-spacing: .05em;
  line-height: 1;
}
.block_frontTop .area_top .newsBox {
  position: absolute;
  right: 3.3%;
  bottom: 5.4%;
  width: 30%;
}
.block_frontTop .area_top .newsBox .news_tips {
  font-size: 75%;
  letter-spacing: .05em;
  margin: 0 0 .4em;
}
.block_frontTop .area_top .newsWrap {
  background: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7em 1.8em .7em .7em;
  border-radius: .5em;
}
.block_frontTop .area_top .newsWrap .news_thumbnail {
  width: 28.064%;
  overflow: hidden;
  border-radius: .3em
}
.block_frontTop .area_top .newsWrap .news_thumbnail img {
  transition: all .4s;
}
.block_frontTop .area_top .newsWrap:hover .news_thumbnail img {
  transform: scale(1.1);
}
.block_frontTop .area_top .newsWrap .news_summaryBox {
  width: 68%;
}
.block_frontTop .area_top .newsWrap .news_excerpt {
  font-size: 75%;
  line-height: 1.6;
  letter-spacing: .05em;
}
.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: 17em 0 12.8em;
}
.block_frontTop .area_message .messageBox {
  font-size: 112.5%;
  line-height: 3.2;
  text-align: center;
}
/*-----*/
.block_frontTop .area_ticker {
  overflow: hidden;
}
.ticker {
  display: inline-flex;
  white-space: nowrap;
  pointer-events: none;
  align-items: center;
  -webkit-animation: ticker01 45s linear infinite;
  animation: ticker01 45s linear infinite;
}
.ticker.type--reverse {
  margin: 2.4em 0 0;
  -webkit-animation: ticker02 45s linear infinite;
  animation: ticker02 45s linear infinite;
}
.ticker .ticker-slide {
  line-height: 1;
  text-align: center;
  width: auto !important;
  white-space: nowrap;
  margin: 0 1em;
}
.ticker .ticker-slide.image {
  width: 90px !important;
}
.ticker .en {
  color: #CCCCCC;
  font-size: 300%;
  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: 70.2%;
}
.block_service.fvAnime .fvBg.bg02 {
  width: 72.85%;
}
.block_service .area_summary {
  margin: 0 0 11.8em;
}
.block_service .area_summary .service_lead {
  margin: 3em 0 5.8em;
  text-align: center;
}
.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: 2.5em 0 0;
}
.list_serviceSummary > li a {
  display: flex;
  justify-content: space-between;
  padding: 1.25em;
}
.list_serviceSummary > li .textBox {
  width: 65%;
  box-sizing: border-box;
  margin: 2.8% 1% 2.8% 3.6%;
  position: relative;
}
.list_serviceSummary > li .textBox .service_secTitle {
  font-size: 331.25%;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .05em;
  font-feature-settings: "palt";
}
.list_serviceSummary > li .textBox .service_chapter {
  letter-spacing: .05em;
  margin: 0 0 1.8em;
}
.list_serviceSummary > li .textBox .btn_more {
  position: absolute;
  left: 0;
  bottom: .5em;
}
.list_serviceSummary > li .imgBox {
  width: 30.324%;
  overflow: hidden;
  border-radius: .5em;
}
.list_serviceSummary > li .imgBox img {
  transition: all .5s;
}
.list_serviceSummary > li a:hover .imgBox img {
  transform: scale(1.05);
}
/*---------------------------------------------
#case
---------------------------------------------*/
.block_case .area_summary {
  margin: 0 0 11.6em;
}
.block_case .area_summary .list_caseSummary {
  margin: 3.85em 0 0;
}
.list_caseSummary > li {
  padding: 1.25em 0;
  border-top: solid 1px #ccc;
}
.list_caseSummary > li:last-child {
  border-bottom: solid 1px #ccc;
}
.list_caseSummary > li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_caseSummary > li .imgBox {
  width: 48.438%;
  overflow: hidden;
  border-radius: .5em;
}
.list_caseSummary > li .imgBox img {
  transition: all .5s;
}
.list_caseSummary > li a:hover .imgBox img {
  transform: scale(1.05);
}
.list_caseSummary > li .textBox {
  width: 48.438%;
  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: 150%;
  line-height: 1.5;
  margin: 0 0 .4em;
}
.list_caseSummary > li .textBox .case_info {
  color: #999999;
  font-size: 87.5%;
  line-height: 2.4;
  margin: 0 0 1em;
}
.list_caseSummary > li .btn_more .arrow {
  margin: 0;
}
.block_case .area_summary .btn_more.align--right {
  margin: 3.6em 0 0;
  overflow: hidden;
}
.block_case .area_archive {
  margin: 8.6em 0 12.3em;
}
.list_caseArchive {
  display: flex;
  flex-wrap: wrap;
  gap: 4em 3.124%;
}
.list_caseArchive > li {
  width: 48.438%;
}
.list_caseArchive > li .imgBox {
  margin: 0 0 1em;
  overflow: hidden;
  border-radius: .8em;
}
.list_caseArchive > li .imgBox img {
  transition: all .4s;
}
.list_caseArchive > li a:hover .imgBox img {
  transform: scale(1.05);
}
.list_caseArchive > li .case_company {
  margin: 0 0 .5em;
}
.list_caseArchive > li .case_title {
  font-size: 150%;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 .5em;
}
.list_caseArchive > li .case_info {
  color: #999999;
  font-size: 87.5%;
  margin: 0 0 1.1em;
}
.list_caseArchive > li .btn_more .arrow {
  margin: 0;
}
/**/
.block_case .area_single {
  margin: 2.5em 0 12.4em;
}
.block_case .area_single .single_thumbnail {
  background: #9DA4AF;
  border-radius: .5em;
  padding: 5.9em 0;
  margin: 0 0 5em;
}
.block_case .area_single .single_thumbnail span {
  display: block;
  width: min(86%, 928px);
  margin: auto;
  box-shadow: 64px 64px 64px 0 rgba(0, 0, 0, .1);
}

.block_case .area_single .single_stickyWrap {
  position: relative;
  z-index: 2;
  top: 0;
}
.block_case .area_single .stickyFixed {
  position: absolute;
  width: 200px;
  height: 100%;
  left: 0;
  top: 4.3em;
  z-index: 5;
}
.block_case .area_single .stickyFixed .list_singleStickyMenu {
  position: sticky;
  left: 0;
  top: 5em;
}
body.logged-in .block_case .area_single .stickyFixed .list_singleStickyMenu {
  top: calc(5em + 32px);
}
.list_singleStickyMenu > li a {
  display: block;
  padding: .6em 0 .6em 1.2em;
  position: relative;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
}
.list_singleStickyMenu > li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2em;
  width: .5em;
  height: .5em;
  background: #000000;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all .4s;
}
.list_singleStickyMenu > li a.active::before, .list_singleStickyMenu > li a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.block_case .area_single .stickyContents {
  width: min(85%, 840px);
  margin: 0 0 0 auto;
}
.block_case .area_single .contentsSet {
  padding: 4.33em 0;
}
.block_case .area_single .contentsSet + .contentsSet {
  border-top: solid 1px #CCCCCC;
}
.block_case .area_single .contentsSet .contents_title {
  font-size: 150%;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .05em;
  margin: 0 0 1.2em;
}
.block_case .area_single .contentsSet .contents_textarea {
  line-height: 1.9;
  letter-spacing: .05em;
}
.block_case .area_single .contentsSet .contents_textarea p + p {
  margin: 1.3em 0 0;
}
.list_caseMember {
  display: flex;
  flex-wrap: wrap;
      gap: 1em 1.5em;
}
.list_caseMember > li {
  box-sizing: border-box;
  display: flex;
  padding: 0 1.5em 0 0;
    white-space: nowrap;
}
.list_caseMember > li span {
  display: block;
  line-height: 1.5;
}
.list_caseMember > li span.en {
  font-weight: 600;
  padding: .1em 0 0;
    margin: 0 .5em 0 0;
}
.list_caseMember > li span.name {
  box-sizing: border-box;
  padding: 0 0 0 5%;
}
.block_case .area_single .single_imageGallery {
  margin: 6em 0 9.5em;
}
.list_imageGallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em 3.125%;
  pointer-events: none;
}
.list_imageGallery > li {
  width: 48.4375%;
  height: 0;
  padding: 25.78125% 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;
}
@media all and (max-width:1024px) {
  .block_case .area_single .stickyFixed .list_singleStickyMenu {
    top: calc(72px + 1em);
  }
}
/*---------------------------------------------
#service
---------------------------------------------*/
.block_service .area_chapterTitle {
  margin: 7.6em 0 0;
  padding: 0 0 12.7em;
}
.block_service .area_chapterTitle .inner {
  position: relative;
}
.block_service .area_chapterTitle .chapter_name {
  font-weight: 500;
  line-height: 2.8125;
  letter-spacing: .05em;
  margin: 0 0 3em;
}
.block_service .area_chapterTitle .chapter_title {
  font-size: 300%;
  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 {
  position: absolute;
  right: 0;
  top: 1em;
  width: 31.25%;
  overflow: hidden;
  border-radius: .5em;
}
.block_service .area_chapterTitle .chapter_lead {
  margin: 3.1em 0 0;
  width: min(65%, 730px);
}
.block_service .area_chapterTitle .chapter_lead p {
  letter-spacing: .05em;
}
/*-----*/
.block_service .area_contents .contentsSet {
  border-top: solid 1px #CCCCCC;
  padding: 9em 0 10.2em;
  border-bottom: solid 1px #CCCCCC;
}
.block_service .area_contents .contentsSet + .contentsSet {
  border-top: none;
}
.block_service .area_contents .contents_titleFlex {
  display: flex;
  justify-content: space-between;
}
.block_service .area_contents .contents_title {
  font-size: 200%;
  font-weight: 400;
  line-height: 1.6;
  width: 35%;
}
.block_service .area_contents .contents_lead {
  width: 48.5%;
  letter-spacing: .05em;
  font-feature-settings: "palt";
}
.block_service .area_contents .whiteBg {
  background: #fff;
  padding: 4.8em 0;
  margin: 5.8em 0 0;
  overflow: hidden;
  border-radius: .5em;
}
.block_service .area_contents .list_serviceWall {
  width: min(95%, 1120px);
  margin: 0 auto 0;
  background: url("../img/service/wall01.webp");
  background-repeat: no-repeat;
  background-size: min(100%, 1095px) auto;
  background-position: center top 62.8%;
}
.list_serviceWall {
  display: flex;
  justify-content: space-between;
}
.list_serviceWall > li {
  width: 22.322%;
}
.list_serviceWall > li .wall_time {
  text-align: center;
  margin: 0 0 1.7em;
}
.list_serviceWall > li .wall_time span {
  display: inline-block;
  background: #000;
  font-weight: 500;
  font-size: 87.5%;
  padding: 0 1em;
  color: #fff;
}
.list_serviceWall > li .wall_name {
  text-align: center;
  font-weight: 400;
  font-size: 125%;
  margin: 0 0 .9em;
}
.list_serviceWall > li .wall_desc {
  font-size: 87.5%;
  letter-spacing: .05em;
  font-feature-settings: "palt";
  margin: 0 0 25.4em;
}
.list_wallStep > li {
  background: #F5F5F5;
  border-radius: .3em;
  text-align: center;
  font-size: 75%;
  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 {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: min(95%, 1130px);
}
.list_serviceApproach > li {
  width: 28%;
}
.list_serviceApproach > li .approach_num {
  text-align: center;
  margin: 0 0 2em;
}
.list_serviceApproach > li .approach_num .en {
  line-height: 1;
  display: inline-block;
  font-size: 200%;
  font-weight: 600;
  letter-spacing: .05em;
}
.list_serviceApproach > li .approach_name {
  text-align: center;
  font-size: 125%;
  line-height: 1.4;
  letter-spacing: .05em;
  margin: 0 0 1em;
}
.list_serviceApproach > li .approach_text {
  letter-spacing: .05em;
}
.block_service .area_contents .branding_img {
  width: min(95%, 1120px);
  margin: auto;
}
/*----------*/
.block_service .area_flow .sec_title {
  font-weight: 400;
  font-size: 200%;
}
.block_service .area_flow .inner {
  border-top: solid 1px #CCCCCC;
  border-bottom: solid 1px #CCCCCC;
  padding: 8.4em 0 10em;
}
.block_service .area_flow .list_flowSteps {
  margin: 5.25em 0 0;
}
.list_flowSteps > li {
  background: #fff;
  padding: 4.8em 0 5em;
  overflow: hidden;
  border-radius: .5em;
}
.list_flowSteps > li + li {
  margin: 3em auto 0;
}
.list_flowSteps > li .stepWrap {
  width: min(95%, 1120px);
  margin: auto;
}
.list_flowSteps > li .flow_titleBox {
  display: flex;
  justify-content: space-between;
}
.list_flowSteps > li .flow_title {
  width: 40%;
}
.list_flowSteps > li .flow_title .en {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .05em;
  margin: 0 0 .8em;
}
.list_flowSteps > li .flow_title .jp {
  font-size: 150%;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .1em;
  font-feature-settings: "palt";
}
.list_flowSteps > li .flow_lead {
  width: 55.4%;
  letter-spacing: .05em;
  font-feature-settings: "palt";
}
.list_flowSteps > li .flow_image {
  margin: 4.4em 0 0;
}
.list_flowStepsDesign {
  display: flex;
  justify-content: space-between;
}
.block_service .area_flow .list_flowStepsDesign {
  margin: 4.4em 0 0;
}
.list_flowStepsDesign > li {
  width: 22.321429%;
  background: #F5F5F5;
  box-sizing: border-box;
  padding: 1.7em 0 2.9em;
}
.list_flowStepsDesign > li .en {
  text-align: center;
  font-size: 200%;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 .6em;
}
.list_flowStepsDesign > li .design_name {
  text-align: center;
  font-size: 112.5%;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .05em;
  font-feature-settings: "palt";
  margin: 0 0 1.4em;
}
.list_flowStepsDesign > li .design_name span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.2em;
}
.list_flowStepsDesign > li .design_text {
  font-size: 87.5%;
  letter-spacing: .05em;
  width: min(95%, 200px);
  margin: auto;
  font-feature-settings: "palt";
}
/*----------*/
.block_service .area_chapterLinks {
  padding: 9em 0 9.8em;
}
.block_service .area_chapterLinks .chapterLinks_title {
  font-size: 150%;
  line-height: 1.875;
  margin: 0 0 1.2em;
}
.block_service .area_chapterLinks .list_serviceSummary > li .textBox .service_secTitle {
  font-size: 300%;
}
/*---------------------------------------------
#download
---------------------------------------------*/
.block_download .area_summary {
  overflow: hidden;
  padding: 0 0 12em;
  box-sizing: border-box;
}
.block_download .area_summary .downloadWrap {
  position: relative;
  min-height: 35.4em;
}
.block_download .area_summary .textBox {
  width: 22.5em;
  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 {
  line-height: 1.6;
  margin: 3.5em 0 5em;
}
.block_download .area_summary .slideBox {
  position: absolute;
  left: 0;
  top: .7em;
  width: 100%;
  transform: translateX(34.3em);
}
#js_slideDownload {
  padding: 0 0 6.5em;
}
#js_slideDownload .swiper-slide .slide_thumb {
  background: #9DA4AF;
  overflow: hidden;
  border-radius: .5em;
  padding: 12.4% 12.7%;
  position: relative;
  margin: 0 0 .3em;
}
#js_slideDownload .swiper-slide .slide_thumb::before {
  content: '';
  width: 7.845%;
  height: 0;
  padding: 7.845% 0 0;
  background-image: url(../img/icon_download.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 2.4%;
  bottom: 3.3%;
  transition: background .4s;
}
#js_slideDownload .swiper-slide a {
  display: block;
}
#js_slideDownload .swiper-slide a:hover .slide_thumb::before {
  background-image: url(../img/icon_download--on.webp);
}
#js_slideDownload .swiper-slide .slide_thumb img {
  box-shadow: 1em 1em 2em 0 rgba(0, 0, 0, .1);
  transition: all .4s;
}
#js_slideDownload .swiper-slide a:hover .slide_thumb img {
  transform: scale(1.05);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, .1);
}
#js_slideDownload .download_name {
  font-size: 125%;
  font-weight: 400;
  line-height: 2.4;
  margin: 0 0 .2em;
}
#js_slideDownload .download_desc {
  line-height: 1.6;
  letter-spacing: .05em;
  width: 78%;
}
#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: 38px;
  height: 24px;
  display: block;
  box-sizing: border-box;
  border: solid 1px #999999;
  border-radius: 5em;
  left: 50%;
  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: 38px;
  height: 24px;
  display: block;
  box-sizing: border-box;
  border: solid 1px #999999;
  border-radius: 5em;
  left: calc(50% - 50px);
  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-nav .swiper-button-next:hover, #js_slideDownload .swiper-nav .swiper-button-prev:hover {
  background: #fff;
}
#js_slideDownload .swiper-pagination {
  font-size: 75%;
  letter-spacing: .5em;
  text-align: left;
}
/**/
.block_download .area_archive {
  margin: 8.2em 0 12em;
}
.block_download .area_archive .archive_lead {
  line-height: 1.6;
  letter-spacing: .05em;
}
.list_downloadSummary {
  display: flex;
  flex-wrap: wrap;
  gap: 4.5em 3.125%;
}
.block_download .area_archive .list_downloadSummary {
  margin: 7.1em 0 0;
}
.list_downloadSummary > li {
  width: 48.4375%;
}
.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 a:hover .download_thumbnail::before {
  background-image: url(../img/icon_download--on.webp);
}
.list_downloadSummary > li .download_thumbnail img {
  box-shadow: 1em 1px 2em 0 rgba(0, 0, 0, .1);
  transition: all .5s;
}
.list_downloadSummary > li a:hover .download_thumbnail img {
  transform: scale(1.05);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, .1);
}
.list_downloadSummary .download_name {
  font-size: 125%;
  font-weight: 400;
  line-height: 1.6;
  margin: .9em 0 .5em;
  letter-spacing: .1em;
}
.list_downloadSummary .download_desc {
  line-height: 1.6;
  letter-spacing: .05em;
  width: 88%;
}
/**/
.block_download .area_single {
  margin: 7.8em 0 0;
}
.block_download .area_single .single_titleBox {
  display: flex;
  justify-content: space-between;
}
.block_download .area_single .single_title {
  font-size: 125%;
  font-weight: 400;
  width: 40%;
}
.block_download .area_single .single_desc {
  width: 57%;
}
#js_slideDownloadSingle {
  margin: 5.5em 0 8.8em;
  padding: 0 0 4em;
}
#js_slideDownloadSingle::before {
  content: '';
  background: #9DA4AF;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 4em);
  border-radius: .5em;
  overflow: hidden;
}
#js_slideDownloadSingle .swiper-wrapper {
  padding: 7.7em 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: 0;
  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: auto;
  right: 50px;
  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;
  text-align: left;
  top: auto;
  bottom: .8em;
}
.block_download .area_single .hubspotWrap {
  padding: 9em 0 0;
  margin: 0 0 10em;
  border-top: solid 1px #CCCCCC;
}
/*---------------------------------------------
#feature
---------------------------------------------*/
.block_feature .area_summary {
  background: rgba(0, 0, 0, .6);
  padding: 12em 0 31.2em;
  position: relative;
  overflow: hidden;
}
.block_feature .textBox {
  width: min(32%, 400px);
  margin: 4.4em auto 0;
  color: #fff;
}
.block_feature .textBox .feature_lead {
  margin: 0 0 3em;
}
.block_feature .featureImgae > div {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  overflow: hidden;
}
.block_feature .featureImgae > div.img01 {
  width: min(28.473%, 410px);
  right: 72%;
  top: 33.7%;
  border-top-right-radius: .7em;
  border-bottom-right-radius: .7em;
}
.block_feature .featureImgae > div.img02 {
  width: min(25.695%, 370px);
  left: 74.3%;
  top: 17.4%;
  border-top-left-radius: .7em;
  border-bottom-left-radius: .7em;
}
.block_feature .featureImgae > div.img03 {
  width: min(22.709%, 327px);
  left: 41.2%;
  top: 63.4%;
  border-radius: .7em;
}
/*---------------------------------------------
#faq
---------------------------------------------*/
.block_faq .area_summary {
  padding: 11.9em 0 4em;
            min-height: 50em;
    box-sizing: border-box;
}
.block_faq .faqPosition {
  position: relative;
}
.block_faq .faqPosition .positionLeft{
    position:absolute;
    left:0;
    top:0;
    width: 30%;
}
.block_faq .faqPosition .positionRight{
  width: 66%;
    margin: 0 0 0 auto;
}
.block_faq .faq_lead {
  margin: 3em 0 3.1em;
  width: min(100%,285px);
}
.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 > li:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.list_faqSummary dl {
  position: relative;
}
.list_faqSummary dl::before, .list_faqSummary dl::after {
  content: '';
  width: 1em;
  height: 2px;
  background: #333;
  position: absolute;
  right: 1em;
  top: 3.1em;
  transform-origin: center;
  transition: all .3s;
}
.list_faqSummary dl::after {
  transform: rotateZ(90deg);
}
.list_faqSummary dl.active::after {
  transform: rotateZ(0);
}
.list_faqSummary dl a{
    text-decoration: underline;
    transition: opacity .3s;
}
.list_faqSummary dl a:hover{
    opacity: .7;
}
.list_faqSummary dl dt {
  font-size: 112.5%;
  font-weight: 500;
  position: relative;
  padding: 1.7em 3em 1.7em 5em;
  letter-spacing: .1em;
  cursor: pointer;
}
.list_faqSummary dl dt::after {
  content: 'Q.';
  position: absolute;
  left: .65em;
  top: .9em;
  font-size: 177.778%;
  font-weight: 400;
  line-height: 1.40625;
  font-family: "Inter", sans-serif;
}
.list_faqSummary dl .dd_text {
  padding: .1em 0 3.4em 5.7em;
}

.list_faqSummary dl dd {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
}
.list_faqSummary dl.active dd {
  max-height: 15em;
}
@media all and (max-width:1024px) {
    .block_faq .area_summary {
        min-height: inherit;
    }
}
/**/
.block_faq .area_archive {
  margin: 8.2em 0 12.5em;
}
.block_faq .area_archive .faqFlex {
  display: flex;
  justify-content: space-between;
}
.block_faq .area_archive .flexLeft {
  width: 30%;
}
.block_faq .area_archive .faq_desc {
  width: min(100%, 290px);
  letter-spacing: .05em;
  line-height: 1.6;
}
.block_faq .area_archive .flexRight {
  width: 65.625%;
}
/*---------------------------------------------
#tips
---------------------------------------------*/
.block_tips {
  padding: 14.4em 0 12.4em;
}
.block_tips .area_summary .tipsPosition {
  position: relative;
}
.block_tips .tips_lead {
  position: absolute;
  right: 0;
  width: min(80%, 840px);
  top: 2.7em;
}
.list_tipsSummary {
  display: flex;
  flex-wrap: wrap;
  gap: 4em 3.125%;
}
.block_tips .area_summary .list_tipsSummary {
  margin: 5.2em 0 0;
}
.list_tipsSummary > li {
  width: 22.65625%;
}
.list_tipsSummary > li a {
  display: block;
  position: relative;
}
.list_tipsSummary > li .tips_thumbnail {
  overflow: hidden;
  border-radius: .5em;
  position: relative;
  height: 0;
  padding: 66.667% 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 a:hover .tips_thumbnail img {
  transform: scale(1.1);
}
.list_tipsSummary > li .tipsCaption {
  margin: 1.1em 0 0;
}
.list_tipsSummary > li .tips_title {
  line-height: 1.6;
  letter-spacing: .05em;
  margin: 0 0 1.1em;
  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: 4.5em auto 0;
}
/*---------------------------------------------
#topics
---------------------------------------------*/
.block_topics .area_archive {
  margin: 8.6em 0;
}
.list_categoryLinks {
  display: flex;
  gap: 1em;
  margin: 0 0 5em;
}
.list_categoryLinks > li a {
  display: block;
  font-size: 75%;
  font-weight: 500;
  line-height: 1.6;
  padding: .535em 1.6em;
  border-radius: 5em;
  background: #fff;
  transition: all .4s;
  letter-spacing: 0;
}
.list_categoryLinks > li a:hover, .list_categoryLinks > li.active a {
  background: #000000;
  color: #fff;
}
/**/
.block_topics .area_single {
  margin: 7.5em 0 12.5em
}
.block_topics .area_single .single_stickyWrap {
  position: relative;
  top: 0;
}
.block_topics .area_single .stickyFixed {
  position: absolute;
  left: 0;
  top: 0;
  width: 290px;
  height: 100%;
}
.block_topics .area_single .stickyNav {
  position: sticky;
  left: 0;
  top: 6em;
}
.block_topics .area_single .stickyNav .toc_title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .05em;
}
.toc_list, .ez-toc-list {
  margin: .9em 0 0;
}
.toc_list > li + li, .ez-toc-list > li + li {
  margin: 1.2em 0 0;
}
.toc_list a, .ez-toc-list a {
  display: block;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .1em;
  transition: all .3s;
  color: #999;
  position: relative;
  padding: 0 0 0 1.1em;
}
.toc_list a::before, .ez-toc-list a::before {
  content: '';
  width: .5em;
  height: .5em;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 0;
  top: .5em;
  opacity: 0;
  transition: all .3s;
}
.toc_list a:hover, .toc_list a.active, .ez-toc-list a:hover, .ez-toc-list a.active {
  color: #000;
}
.toc_list a.active::before, .ez-toc-list a.active::before {
  opacity: 1;
}
.toc_list > li ul, .ez-toc-list > li ul {
  margin: 1em 0 0 1em;
}
.toc_list > li ul > li + li, .ez-toc-list > li ul > li + li {
  margin: 1em 0 0;
}
.block_topics .area_single .stickyNav .btn_more {
  margin: 3.3em 0 0;
}
.block_topics .area_single .stickyContents {
  width: min(70%, 840px);
  margin: 0 0 0 auto;
}
.block_topics .single_others {
  border-top: solid 1px #CCCCCC;
  margin: 7.5em 0 0;
  padding: 6em 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 {
  margin: 2em 0 0;
  letter-spacing: .05em;
  font-feature-settings: "palt";
}
.list_otherTopics {
  margin: 3.4em 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 a:hover .other_thumbnail img {
  transform: scale(1.08);
}
.list_otherTopics > li .textBox {
  width: 60.8%;
  box-sizing: border-box;
  position: relative;
}
.list_otherTopics > li .textBox .other_title {
  font-size: 112.5%;
  line-height: 1.6;
  letter-spacing: .05em;
  margin: 2em 0 0;
  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;
}
@media all and (max-width:1024px) {
  .block_topics .area_single .stickyFixed {
    display: none;
  }
  .block_topics .area_single .stickyContents {
    margin: 0;
    width: 100%;
  }
  .block_topics .area_single .single_stickyWrap {
    font-size: 125%;
  }
}
/*---------------------------------------------
#bnr
---------------------------------------------*/
.block_bnr {
  padding: 0 0 12.5em;
}
.block_bnr .bnr_image{
    width:min(95%,1040px);
    margin: auto;
}
.block_bnr .bnr_image a{
    display: block;
    transition: all .3s;
}
.block_bnr .bnr_image a:hover{
    opacity: .7;
}
/* ==================================== 
#contact
====================================*/
.block_contact .area_form {
  margin: 5em 0 8em;
}