@charset "utf-8";
.sp-only {
  display: none !important;
}
body {
  color: #1A1A1A;
}
html, body, a, .cursorNo {
  cursor: none;
}
/*
@media all and (min-width:768px) and (max-width:1450px) {
  body {
    font-size: 1.38vw;
  }
}

@media all and (min-width:1451px) {
  body {
    font-size: 20px;
  }
}
*/
.inner {
  width: calc(100% - 100px);
  max-width: 1600px;
  margin: auto;
}
main {
  overflow: hidden;
}
.thumbnail {
  display: block;
  height: 0;
  overflow: hidden;
  position: relative;
}
.thumbnail img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  width: auto;
  transition: transform .4s;
}
.thumbnail:hover img {
  transform: scale(1.05);
}
#mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #FDF854;
  border-radius: 50%;
  transform: translate(0, 0);
  transition: width .2s, height .2s, background-color .2s, top .2s, left .2s;
  transition-timing-function: ease;
  z-index: 999;
}
#mouse-stalker.is_active {
  top: -25px;
  left: -25px;
  width: 50px;
  height: 50px;
  background: rgba(253, 248, 84, 0.5);
}
#mouse-stalker::before {
  content: '';
  width: 8vw;
  height: 8vw;
  background: url(../img/mouse.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: -2.5vw;
  top: -2.5vw;
  opacity: 0;
  transform: scale(0);
  transition: all .3s;
}
#mouse-stalker.slideHover::before {
  opacity: 1;
  transform: scale(1);
}
#splash {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  z-index: 1000;
  background: #fff;
  transition: all .4s ease .6s;
}
#splash img {
  width: 390px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s ease .2s;
}
#u_splash {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  z-index: 1000;
  background: #fff;
  pointer-events: none;
  -webkit-animation: uSplash 1.2s ease-out .3s 1 forwards;
  animation: uSplash 1.2s ease-out .3s 1 forwards;
}
/* == parts ============================================== */
.title_section {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.title_page {
  font-size: 150%;
  font-weight: 700;
  margin: 0 0 min(1.6%, 20px);
}
.link_text {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  display: inline-block;
  padding: 0 0 0 1.8em;
  position: relative;
  overflow: hidden;
  margin: 0 0 0 -.6em;
}
.link_text::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: .8em;
  top: 0;
  bottom: 0;
  margin: auto;
}
.link_text:hover::before {
  -webkit-animation: diffusion .6s ease 0s !important;
  animation: diffusion .6s ease 0s !important;
}
.link_text span {
  display: block;
  transition: all .6s;
  transition-timing-function: cubic-bezier(.25, .74, .22, .99);
}
.link_text span.hov--on {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(1em);
  opacity: 0;
}
.link_text:hover span.hov--off {
  transform: translateY(-1em);
  opacity: 0;
}
.link_text:hover span.hov--on {
  transform: translateY(0);
  opacity: 1;
}
.scroll--start .link_text::before {
  -webkit-animation: diffusion2 .8s ease 0s;
  animation: diffusion2 .8s ease 0s;
}
.scroll--start .link_text span.hov--off {
  -webkit-animation: link--off 1s ease 0s 1;
  animation: link--off 1s ease 0s 1;
}
.scroll--start .link_text span.hov--on {
  -webkit-animation: link--on 1s ease 0s 1;
  animation: link--on 1s ease 0s 1;
}
/* == header ============================================== */
header .h_inner {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .h_logo {
  width: 32px;
  position: absolute;
  left: 50px;
  top: 35px;
}
header .h_logo a {
  display: block;
  height: 100%;
  white-space: nowrap;
  text-indent: 150%;
  background-image: url("../img/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  transition: all 3s;
}
header nav {
  position: absolute;
  z-index: 1000;
  right: 38px;
  top: 38px;
  color: #000;
}
header nav .nav_menu {
  position: absolute;
  right: 14px;
  top: 0;
  pointer-events: none;
  opacity: 0;
  transition: all .4s;
}
header nav .nav_menu span {
  transition-timing-function: cubic-bezier(.25, .74, .22, .99);
  display: block;
  color: #1a1a1a;
  transition: transform .6s, opacity .6s, color 3s;
}
header nav .nav_menu span.hov--on {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  transform: translateY(1em);
  opacity: 0;
  color: rgba(25, 27, 29, 0.5);
}
header nav .nav_menu:hover span.hov--off {
  transform: translateY(-1em);
  opacity: 0;
}
header nav .nav_menu:hover span.hov--on {
  transform: translateY(0);
  opacity: 1;
}
.list_mainNav {
  display: flex;
  transition: all .4s;
}
.list_mainNav a {
  display: block;
  overflow: hidden;
  padding: 0 .9em;
  position: relative;
  transition: all .4s;
  transition-timing-function: cubic-bezier(.25, .74, .22, .99);
  line-height: 1.5;
}
.list_mainNav a::before {
  content: '';
  width: calc(100% - 26px);
  height: 2px;
  background: #000000;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}
.list_mainNav li.active a::before {
  opacity: 1;
}
.list_mainNav a::after {
  content: attr(data-item);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  transform: translateY(1.3em);
  transition: transform .5s, color 4s;
}
.list_mainNav a:hover span.hov--off {
  transform: translateY(-1.3em);
  opacity: 0;
}
.list_mainNav a:hover::after {
  transform: translateY(0);
  opacity: 1;
}
.list_mainNav a > span {
  transition: all .6s;
  transition-timing-function: cubic-bezier(.25, .74, .22, .99);
  display: block;
}
.list_mainNav a > span.hov--on {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  transform: translateY(1em);
  opacity: 0;
}
header.is--fixed nav .list_mainNav {
  opacity: 0;
  pointer-events: none;
}
header.is--fixed nav .list_mainNav > li span.hov--off {
  transform: translateY(-1em);
}
header nav .list_mainNav > li:nth-child(1) a > span {
  transition-delay: .01s;
}
header nav .list_mainNav > li:nth-child(2) a > span {
  transition-delay: .02s;
}
header nav .list_mainNav > li:nth-child(3) a > span {
  transition-delay: .03s;
}
header nav .list_mainNav > li:nth-child(4) a > span {
  transition-delay: .04s;
}
header nav .list_mainNav > li:nth-child(5) a > span {
  transition-delay: .05s;
}
header nav .list_mainNav > li:nth-child(6) a > span {
  transition-delay: .06s;
}
header nav .list_mainNav > li:nth-child(7) a > span {
  transition-delay: .07s;
}
header.is--fixed nav .nav_menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0px);
}
/**/
header .list_mainNav > li span.color--change {
  transition: all 3s;
}
header.type--white:not(.is--over) .h_logo a {
  background-image: url("../img/logo--white.svg");
}
header.type--black .list_mainNav a::after, header.type--black .list_mainNav > li span.color--change {
  color: #1A1A1A;
}
header.type--white:not(.is--over) .list_mainNav a::after, header.type--white:not(.is--over) .list_mainNav > li span.color--change {
  color: #fff;
}
header.type--white:not(.is--over) nav .nav_menu span.hov--on, header.type--white:not(.is--over) nav .nav_menu span.hov--off {
  color: #fff;
}
/* == footer ============================================== */
footer .inner {
  max-width: none;
  border-top: solid 1px #CCCCCC;
  padding: min(5.2%, 70px) 0 min(1.7%, 20px);
}
footer .f_logo {
  width: 196px;
  margin: 0 0 1px;
}
footer .f_logo img {
  vertical-align: top;
}
footer .f_address {
  font-size: 75%;
  display: inline-block;
  letter-spacing: .05em;
}
footer .f_tel {
  font-size: 75%;
  display: inline-block;
  letter-spacing: .05em;
  margin: 0 0 0 2.5em;
}
footer .f_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
footer .f_links {
  display: inline-block;
  margin: 0 5em 0 0;
}
footer .f_links a {
  font-family: 'Inter', sans-serif;
  font-size: 75%;
  display: inline-block;
}
footer .f_links a + a {
  margin: 0 0 0 2em;
}
footer .f_links a:hover {
  text-decoration: underline;
}
footer .f_copyright {
  font-family: 'Inter', sans-serif;
  font-size: 75%;
  display: inline-block;
}
@media all and (max-width:850px) {
  footer .f_address {
    margin: 10px 0 5px;
  }
  footer .f_wrap {
    display: block;
  }
}
/* == frontpage ==============================================*/
.block_frontSlide {
  position: relative;
  z-index: 0;
}
.block_frontSlide .slide_banner {
  position: absolute;
  z-index: 100;
  right: 30px;
  bottom: 30px;
  width: 200px;
}
.block_frontSlide .slide_banner a {
  display: block;
  transition: all .2s;
}
.block_frontSlide .slide_banner a:hover {
  opacity: .7;
}
.block_frontSlide .slide_banner img {
  vertical-align: top;
}
#jq_topSlide .slick-list {
  height: 0;
  padding: 65.89% 0 0;
}
#jq_topSlide .slick-track, #jq_topSlide .slick-slide, #jq_topSlide .slick-slide > div, #jq_topSlide .slide_contents {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#jq_topSlide .slide_contents .slide_image {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#jq_topSlide .slick-slide .slide_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transition: transform 5s linear 1s;
}
#jq_topSlide .slide_contents .slide_link {
  position: absolute;
  right: 50px;
  bottom: 30px;
  z-index: 5;
}
#jq_topSlide .slick-slide.slide-animation .slide_image img {
  -webkit-animation: scale 8s linear 0s forwards;
  animation: scale 8s linear 0s forwards;
}
/*--------------------------------------------------*/
.block_frontNews {
  padding: 0 0 10.5em;
  background: #fff;
  position: relative;
  z-index: 5;
}
.block_frontNews .inner {
  position: relative;
}
.list_newsSummary a {
  display: flex;
  align-items: center;
  font-size: 87.5%;
  padding: 2em 0;
  position: relative;
}
.list_newsSummary a::before {
  content: '';
  width: 100%;
  height: 1px;
  background: #CCCCCC;
  position: absolute;
  left: 0;
  bottom: 0;
}
.list_newsSummary a::after {
  content: '';
  width: 0;
  height: 1px;
  background: #000000;
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  transition: all 1s;
}
.list_newsSummary a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.list_newsSummary span.news_title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 280px);
  box-sizing: border-box;
}
.list_newsSummary span.news_cat {
  display: block;
  width: 160px;
  font-family: 'Inter', sans-serif;
  color: #999999;
  margin: 0 0 0 20px;
}
.list_newsSummary span.news_time {
  display: block;
  width: 80px;
  margin: 0 0 0 20px;
  font-family: 'Inter', sans-serif;
  color: #999999;
}
.block_frontNews .list_newsSummary span.news_title {
  padding: 0 0 0 110px;
}
.block_frontNews .title_section {
  position: absolute;
  left: 0;
  top: 30%;
}
/*--------------------------------------------------*/
.block_frontAbout {
  margin: 0 0 min(11.5%, 160px);
  background: #fff;
  position: relative;
  z-index: 5;
}
.block_frontAbout .inner {
  position: relative;
}
.block_frontAbout .inner .scroll--filter {
  padding: 10px 0 0;
}
.block_frontAbout .about_textBox {
  margin: 0 0 0 34%;
}
.block_frontAbout .title_section {
  position: absolute;
  left: 0;
  top: 31.5%;
}
.block_frontAbout .about_leadEn {
  font-size: 300%;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin: 0 0 .5em;
  letter-spacing: .02em;
  text-align: left;
  transform: translateY(-10px);
}
.block_frontAbout .about_leadJp {
  font-weight: 500;
  margin: 0 0 4em;
  letter-spacing: .05em;
}
.block_frontAbout .about_text {
  line-height: 2.285;
  font-size: 87.5%;
  margin: 0 0 3.7em;
  letter-spacing: .04rem;
  text-align: left;
}
.block_frontAbout .area_ticker {
  margin: min(11%, 150px) auto 0;
}
#jq_ticker {
  pointer-events: none;
}
#jq_ticker .slick-track {
  position: relative;
}
#jq_ticker .slick-slide {
  margin: 0 15px;
  text-align: center;
}
#jq_ticker .slide_contents img {
  vertical-align: top;
  max-width: none;
  width: 100%;
}
/*--------------------------------------------------*/
.block_frontTalk .inner {
  position: relative;
  padding: min(12%, 160px) 0 min(12%, 160px);
  border-top: solid 1px #CCCCCC;
  border-bottom: solid 1px #CCCCCC;
}
.parts_talk {
  display: flex;
  align-items: center;
  margin: auto;
}
.block_frontTalk .parts_talk {
  width: 85%;
}
.parts_talk .talk_leadBox {
  width: 30%;
}
.parts_talk .talk_leadBox .talk_title {
  font-size: 87.5%;
  color: #999999;
  margin: 0 0 min(10%, 30px);
}
.parts_talk .talk_leadBox .talk_title span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
}
.parts_talk .talk_leadBox .talk_title span::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #999999;
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.parts_talk .talk_leadBox .talk_text {
  font-size: 150%;
}
.parts_talk .talk_imageBox {
  width: 30%;
  margin: 0 5%;
  overflow: hidden;
}
.parts_talk .talk_imageBox a {
  display: block;
}
.parts_talk .talk_imageBox .thumbnail {
  padding: 121% 0 0;
}
.parts_talk .talk_textBox {
  width: 30%;
  text-align: right;
}
.parts_talk .talk_textBox .text_name {
  margin: 0 0 min(6%, 20px);
}
.parts_talk .talk_textBox .text_name span {
  font-size: 87.5%;
  display: inline-block;
}
.parts_talk .talk_textBox .text_name strong {
  display: inline-block;
  font-size: 150%;
  font-weight: 400;
  margin: 0 .2em 0 .5em;
}
/*--------------------------------------------------*/
.block_frontRecruit {
  margin: 0 0 6.4%;
}
.block_frontRecruit .inner {
  position: relative;
  border-top: solid 1px #CCCCCC;
  padding: 11% 0 0;
}
.block_frontRecruit .title_section {
  position: absolute;
  left: 0;
  top: 45%;
}
.list_recruitSummary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.block_frontRecruit .list_recruitSummary {
  margin: 0 0 0 34%;
}
.list_recruitSummary > li {
  width: 50%;
  margin: 0 0 min(8%, 60px);
}
.list_recruitSummary .recruit_name {
  margin: 0 0 min(9%, 35px);
}
.list_recruitSummary .recruit_name span.en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 150%;
}
.list_recruitSummary .recruit_name span.jp {
  display: block;
  color: #999999;
  font-size: 87.5%;
}
/*--------------------------------------------------*/
.block_frontService .inner {
  border-top: solid 1px #CCCCCC;
  padding: 11.5% 50px 11.85%;
}
.list_serviceSummary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 4.5% 0 0;
}
.list_serviceSummary::after {
  content: '';
  width: 31.545%;
  display: block;
}
.list_serviceSummary > li {
  width: 31.545741%;
}
.list_serviceSummary .thumbnail {
  padding: 75% 0 0;
}
/*--------------------------------------------------*/
.block_frontContact {
  background: #fff;
  position: relative;
  z-index: 5;
}
.block_frontContact .inner {
  border-top: solid 1px #CCCCCC;
  padding: min(20%, 270px) 0 min(18%, 240px);
}
.block_frontContact .contact_text {
  text-align: center;
  font-size: 500%;
  overflow: hidden;
}
.block_frontContact .contact_text a.link_text {
  line-height: 1;
  padding: 0 0 0 1.5em;
}
.block_frontContact .contact_text a.link_text::before {
  width: 0.45em;
  height: 0.45em;
}
/* == underpage ============================================== */
/* ====== 
page-name #about
======*/
.block_about {
  padding: min(15%, 200px) 0 0;
}
.block_about .area_top {
  margin: 0 0 min(16%, 220px);
}
.block_about .area_top .about_title {
  font-size: 300%;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: .5;
  margin: 0 0 .75em;
  letter-spacing: .02em;
}
.block_about .area_top .about_lead {
  font-weight: 500;
  margin: 0 0 3em;
  letter-spacing: .05em;
}
.block_about .area_top .box_text {
  margin: 0 0 min(12%, 160px) 34%;
  line-height: 2.285;
  font-size: 87.5%;
  font-weight: 500;
  letter-spacing: .03rem;
}
#jq_aboutTicker {
  margin: auto;
}
#jq_aboutTicker .slick-slide {
  margin: 0 15px;
}
/**/
.block_about .area_profile .inner {
  padding: min(12%, 160px) 0 min(15%, 200px);
  border-top: solid 1px #CCCCCC;
  border-bottom: solid 1px #CCCCCC;
  position: relative;
}
.block_about .area_profile .title_section {
  position: absolute;
  left: 0;
  top: 9.5%;
}
.block_about .area_profile .profile_box {
  margin: 0 0 min(11%, 140px) 25.5%;
  columns: 2;
}
.block_about .area_profile .profile_box ul li + li {
  margin: min(8.5%, 40px) 0 0;
}
.block_about .area_profile .profile_box dl {
  display: flex;
  font-size: 87.5%;
}
.block_about .area_profile .profile_box dl + dl {
  margin: 3% 0 0;
}
.block_about .area_profile .profile_box dt {
  width: 100px;
  font-weight: 500;
  color: #999999;
}
.block_about .area_profile .profile_box dd {
  width: calc(100% - 100px);
}
.block_about .area_profile .map_wrap {
  height: 0;
  padding: 42.5% 0 0;
  margin: 0 0 min(3%, 20px);
  position: relative;
  filter: grayscale(1);
  overflow: hidden;
}
.block_about .area_profile .map_wrap iframe {
  position: absolute;
  left: 0;
  top: -30%;
  width: 100%;
  height: 160%;
}
.block_about .area_profile .map_text {
  font-size: 87.5%;
}
/**/
.block_about .area_members {
  padding: min(12%, 160px) 0 min(15%, 200px);
}
.list_members {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.list_members::before {
  content: '';
  display: block;
  width: 23.66%;
  order: 1;
}
.list_members::after {
  content: '';
  display: block;
  width: 23.66%;
}
.list_members li {
  width: 23.66%;
  margin: 60px 0 0;
}
.list_members a {
  display: block;
}
.list_members .thumbnail {
  padding: 122% 0 0;
  margin: 0 0 10px;
}
.list_members .members_text {
  font-family: 'Inter', sans-serif;
}
.list_members .members_text span.position {
  display: block;
  font-size: 75%;
  color: #999999;
}
.list_members .members_text span.name {
  display: block;
  line-height: 25px;
  pointer-events: none;
  margin: 3px 0 0;
}
.list_members .members_text span.name img {
  vertical-align: top;
  display: block;
  max-width: 250px;
}
/**/
.block_about .area_memberDetail {
  margin: 0 0 min(17%, 220px);
}
.block_about .area_memberDetail .inner {
  position: relative;
}
.block_about .area_memberDetail .member_name {
  position: absolute;
  max-width: 1600px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  box-sizing: border-box;
}
/*
.block_about .area_memberDetail[class*="active"] .member_name {
  position: fixed;
  top: min(6vw, 100px);
}
*/
.block_about .area_memberDetail.last--slide .member_name {
  position: absolute;
  top: 0;
}
.block_about .area_memberDetail .member_name span.position {
  display: block;
  color: #999999;
}
.block_about .area_memberDetail .member_name span.name {
  display: block;
}
.block_about .area_memberDetail .member_name span.name img {
  vertical-align: top;
  display: block;
  margin: 5px 0 0;
  max-width: 250px;
}
.block_about .memberDetail_wrap {
  position: relative;
  display: flex;
  padding: 0 0 min(16%, 200px);
}
.block_about .memberDetail_wrap .wrap_left {
  width: 23.5%;
  margin: 0 10.5% 0 0;
  position: relative;
}
.block_about .memberDetail_wrap .contents_set {
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
  width: 100%;
  height: calc(100vh);
  transition: all .35s;
  display: flex;
  align-items: center;
}
#fixed .contents_set .set--flex {
  opacity: 0;
  transition: all .4s;
  text-align: left;
  word-break: break-all;
}
#fixed .contents_set .thumbnail {
  opacity: 0;
  filter: blur(5px);
  transition: all .4s;
}
#fixed .contents_set:nth-child(1) .set--flex, #fixed .contents_set:nth-child(1) .thumbnail {
  opacity: 1;
  filter: blur(0);
}
#fixed.active1 .contents_set:nth-child(2) .set--flex, #fixed.active2 .contents_set:nth-child(3) .set--flex, #fixed.active3 .contents_set:nth-child(4) .set--flex, #fixed.active4 .contents_set:nth-child(5) .set--flex, #fixed.active5 .contents_set:nth-child(6) .set--flex, #fixed.active6 .contents_set:nth-child(7) .set--flex, #fixed.active7 .contents_set:nth-child(8) .set--flex, #fixed.active8 .contents_set:nth-child(9) .set--flex, #fixed.active9 .contents_set:nth-child(10) .set--flex {
  opacity: 1;
  filter: blur(0);
}
#fixed.active1 .contents_set:nth-child(1) .set--flex, #fixed.active2 .contents_set:nth-child(1) .set--flex, #fixed.active3 .contents_set:nth-child(1) .set--flex, #fixed.active4 .contents_set:nth-child(1) .set--flex, #fixed.active5 .contents_set:nth-child(1) .set--flex, #fixed.active6 .contents_set:nth-child(1) .set--flex, #fixed.active7 .contents_set:nth-child(1) .set--flex, #fixed.active8 .contents_set:nth-child(1) .set--flex, #fixed.active9 .contents_set:nth-child(1) .set--flex {
  opacity: 0;
}
#fixed.active1 .contents_set:nth-child(1) .thumbnail, #fixed.active2 .contents_set:nth-child(1) .thumbnail, #fixed.active3 .contents_set:nth-child(1) .thumbnail, #fixed.active4 .contents_set:nth-child(1) .thumbnail, #fixed.active5 .contents_set:nth-child(1) .thumbnail, #fixed.active6 .contents_set:nth-child(1) .thumbnail, #fixed.active7 .contents_set:nth-child(1) .thumbnail, #fixed.active8 .contents_set:nth-child(1) .thumbnail, #fixed.active9 .contents_set:nth-child(1) .thumbnail {
  opacity: 0;
  filter: blur(5px);
}
#fixed.active1 .contents_set:nth-child(2) .thumbnail, #fixed.active2 .contents_set:nth-child(3) .thumbnail, #fixed.active3 .contents_set:nth-child(4) .thumbnail, #fixed.active4 .contents_set:nth-child(5) .thumbnail, #fixed.active5 .contents_set:nth-child(6) .thumbnail, #fixed.active6 .contents_set:nth-child(7) .thumbnail, #fixed.active7 .contents_set:nth-child(8) .thumbnail, #fixed.active8 .contents_set:nth-child(9) .thumbnail, #fixed.active9 .contents_set:nth-child(10) .thumbnail {
  opacity: 1;
  filter: blur(0);
}
.block_about .memberDetail_wrap .contents_set h2 {
  font-size: 125%;
  font-weight: 500;
  margin: 0 0 min(25%, 80px);
}
.block_about .memberDetail_wrap .contents_set h3 {
  margin: min(16%, 50px) 0 10px;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 1.5em;
}
.block_about .memberDetail_wrap .contents_set h3::before {
  content: '';
  width: 1em;
  height: 1px;
  background: #1A1A1A;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.block_about .memberDetail_wrap .contents_set h4 {
  margin: min(16%, 50px) 0;
  font-size: 87.5%;
  font-weight: 400;
}
.block_about .memberDetail_wrap .contents_set p {
  font-size: 87.5%;
  line-height: 2;
}
.block_about .memberDetail_wrap .contents_set p + p {
  margin: 1em 0 0;
}
.block_about .memberDetail_wrap .contents_set .interest_title {
  margin: 0 0 min(16%, 50px)
}
.block_about .memberDetail_wrap .wrap_right {
  width: 66%;
}
.list_memberDetail img {
  vertical-align: top;
  pointer-events: none;
}
.list_memberDetail li {
  padding: 14px 0;
  margin: -1px 0 0;
}
/* ====== 
page-name #works
======*/
.block_works {
  padding: min(13.4%, 180px) 0 0;
  margin: 0 0 min(11%, 150px);
}
.list_category {
  margin: 0 0 min(5.5%, 70px);
}
.list_category li {
  display: inline-block;
  margin: 0 20px 0 0;
}
.list_category a {
  display: inline-block;
  color: #999999;
  transition: all .2s;
}
.list_category a sup {
  font-size: 10px;
}
.list_category li.active a, .list_category li:hover a {
  color: #000000;
}
.list_worksContents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list_worksContents li {
  width: 49%;
  margin: 0 0 min(5.5%, 70px);
}
.list_worksContents .thumbnail {
  padding: 53.7% 0 0;
  margin: 0 0 min(2.5%, 15px);
  transition: all 1s;
  overflow: hidden;
}
.list_worksContents .thumbnail img {
  -webkit-animation: bokashi 1.5s ease 0s 1;
  animation: bokashi 1.5s ease 0s 1;
}
.list_worksContents .box {
  position: relative;
}
.list_worksContents .box .contents_title {
  margin: 0 100px 0 0;
}
.list_worksContents .box .contents_text {
  font-size: 75%;
  color: #999999;
}
.list_worksContents .box .contents_cat {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 75%;
  color: #999999;
}
/**/
.block_works .area_worksSingle .single_cat {
  color: #999999;
  margin: 0 0 min(1.6%, 20px);
}
.block_works .area_worksSingle .single_cat a {
  display: inline-block;
  padding: 0 1em 0 0;
}
.block_works .area_worksSingle .single_cat a + a {
  margin: 0 0 0 1em;
}
.block_works .area_worksSingle .single_cat a:hover {
  color: #333;
}
.block_works .area_worksSingle .infoBox {
  margin: 0 0 min(4%, 50px);
  position: relative;
  display: flex;
}
.block_works .area_worksSingle .single_title {
  font-size: 150%;
  font-weight: 400;
  width: 67%;
  line-height: 1.3;
}
.block_works .area_worksSingle .single_person {
  width: 23.5%;
  font-size: 87.5%;
  margin: 0 0 0 3%;
}
.block_works .area_worksSingle time {
  width: 6.5%;
  text-align: right;
  font-size: 87.5%;
}
.block_works .area_worksSingle .single_image {
  margin: 0 auto min(4%, 50px);
  text-align: center;
  transition: all 1s;
  -webkit-animation: bokashi 1.5s ease 0s 1 forwards;
  animation: bokashi 1.5s ease 0s 1 forwards;
}
.block_works .area_worksSingle .spot_detail {
  text-align: right;
  margin: min(12.8%, 160px) 0 0;
  line-height: 2.5;
}
.block_works .area_worksSingle .textBox {
  position: relative;
  margin: 0 0 min(14%, 180px);
}
.block_works .area_worksSingle .textBox .single_text {
  width: 600px;
  font-size: 87.5%;
  line-height: 2;
}
.block_works .area_worksSingle .textBox .single_link {
  position: absolute;
  right: 0;
  top: 0;
}
.block_works .area_worksSingle .separate {
  display: flex;
  justify-content: space-between;
  margin: 0 0 min(2.4%, 30px);
}
.block_works .area_worksSingle .separate img {
  width: 48.9%;
}
.block_works .area_worksSingle .right_text {
  width: 47.5%;
  margin: min(3%, 40px) 0 min(14%, 180px) auto;
}
.block_works .area_worksSingle .left_text {
  width: 47.5%;
  margin: min(3%, 40px) 0 min(14%, 180px);
}
/* ====== 
page-name #talk
======*/
.block_talk {
  padding: min(7%, 100px) 0 0;
  margin: 0 0 min(16%, 200px);
}
.block_talk#fixed {
  padding: 0;
}
.block_talk .talk_title {
  font-size: 150%;
  font-weight: 700;
  margin: 0 0 min(5.5%, 70px);
}
.block_talk .talk_lead {
  margin: 0 0 min(13%, 150px) 33.912%;
  font-size: 87.5%;
  line-height: 2.285;
}
.block_talk .talk_lead p + p {
  margin: 20px 0 0;
}
.list_talk > li {
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}
.list_talk > li + li {
  margin: min(12%, 150px) 0 0;
}
.list_talk .parts_talk {
  max-width: none;
  width: 100%;
}
.list_talk .talk_leadBox {
  width: 34%;
}
.list_talk .talk_imageBox {
  width: 31.55%;
  margin: 0;
}
.list_talk .talk_textBox {
  width: 34.45%;
  text-align: left;
  box-sizing: border-box;
  padding: 0 0 0 10%;
}
.list_talk .talk_textBox .text_name span.name--position {
  display: block;
}
.list_talk .talk_textBox .text_name strong {
  margin: 0;
}
.list_talk .talk_textBox .text_desc {
  font-size: 87.5%;
  line-height: 2;
  margin: 0 0 40px;
}
.block_talk .area_talkSingle {
  display: flex;
  position: relative;
}
.block_talk .area_talkSingle .leftBox {
  width: 65%;
  margin: 0 10% 0 0;
  position: relative;
}
.block_talk .area_talkSingle .contents_set {
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  transition: all .5s;
}
.block_talk .area_talkSingle .contents_set .single_title {
  width: 50%;
  position: relative;
  transform: translateY(1em);
  opacity: 0;
  transition: all .5s;
}
.block_talk .area_talkSingle .contents_set .single_title .title_text {
  font-size: 87.5%;
  color: #999999;
  margin: 0 0 min(10%, 30px);
}
.block_talk .area_talkSingle .contents_set .single_title .title_text span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
}
.block_talk .area_talkSingle .contents_set .single_title .title_text span::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #999999;
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.block_talk .area_talkSingle .contents_set .single_title .title_lead {
  font-weight: 500;
  position: relative;
}
.block_talk .area_talkSingle .contents_set:nth-child(1) .single_title {
  opacity: 1;
  transform: translateY(0);
}
#fixed.active1 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active2 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active3 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active4 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active5 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active6 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active7 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active8 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active9 .area_talkSingle .contents_set:nth-child(1) .single_title, #fixed.active10 .area_talkSingle .contents_set:nth-child(1) .single_title {
  opacity: 0;
  transform: translateY(1em);
}
#fixed.active1 .contents_set:nth-child(2) .single_title, #fixed.active2 .contents_set:nth-child(3) .single_title, #fixed.active3 .contents_set:nth-child(4) .single_title, #fixed.active4 .contents_set:nth-child(5) .single_title, #fixed.active5 .contents_set:nth-child(6) .single_title, #fixed.active6 .contents_set:nth-child(7) .single_title, #fixed.active7 .contents_set:nth-child(8) .single_title, #fixed.active8 .contents_set:nth-child(9) .single_title, #fixed.active9 .contents_set:nth-child(10) .single_title {
  opacity: 1;
  transform: translateY(0);
}
.block_talk .area_talkSingle .contents_set .thumbnail {
  padding: 61% 0 0;
  width: 50%;
}
.block_talk .area_talkSingle .contents_set .thumbnail img {
  transform: scale(1) !important;
  pointer-events: none;
  transition: all .4s;
}
.block_talk .area_talkSingle .contents_set .thumbnail .count2 {
  opacity: 0;
  filter: blur(5px);
}
.block_talk[class*="second"] .area_talkSingle .contents_set .thumbnail .count1 {
  opacity: 0;
  filter: blur(5px);
}
.block_talk[class*="second"] .area_talkSingle .contents_set .thumbnail .count2 {
  opacity: 1;
  filter: blur(0);
}
.block_talk .area_talkSingle .rightBox {
  width: 25%;
}
.block_talk .area_talkSingle .flexBox {
  min-height: 100vh;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 160px 0;
}
.block_talk .area_talkSingle .text_set {
  width: 100%;
  height: 100%;
}
.block_talk .area_talkSingle .text_set .single_position {
  font-size: 87.5%;
  margin: 0 0 16px
}
.block_talk .area_talkSingle .text_set .single_name {
  margin: 0 0 48px;
  font-size: 114.3%;
  font-weight: 500;
}
.block_talk .area_talkSingle .text_set .single_name strong {
  font-size: 125%;
  font-weight: 400;
  display: inline-block;
  margin: 0 2% 0 0;
}
.block_talk .area_talkSingle .text_set p {
  font-size: 87.5%;
  line-height: 2;
  letter-spacing: .03em;
}
.block_talk .area_talkSingle .text_set .second_text {
  margin: -40px 0 0;
  padding: 160px 0 0;
}
/* ====== 
page-name #news
======*/
.block_news {
  padding: min(13.4%, 180px) 0 0;
  margin: 0 0 min(18%, 220px);
}
.block_news .single_cat {
  color: #999999;
  margin: 0 0 2%;
}
.block_news .title_page {
  font-weight: 400;
  width: 35%;
}
.block_news .list_newsSummary {
  border-top: solid 1px #CCCCCC;
}
.block_news time {
  font-size: 87.5%;
  color: #999999;
}
.block_news .single_newsWrap {
  position: relative;
}
.block_news .single_newsWrap .wp-editor {
  min-height: 20em;
  margin: 6em 0 0 41%;
}
.block_news .single_newsWrap .news_backLink {
  position: absolute;
  left: 0;
  bottom: -5px;
}
/* ====== 
page-name #contact
======*/
.block_contact {
  padding: 12.8em 0 0;
  margin: 0 0 min(18%, 220px);
}
.block_contact .form_title {
  font-weight: 500;
}
.block_contact .contact_wrap {
  display: flex;
  justify-content: space-between;
  margin: 5.5em 0 0;
}
.block_contact .contact_wrap .wrap_left {
  width: 35%;
}
.list_contactFlow li {
  color: #999999;
  margin: 0 0 min(3.7%, 20px);
  font-weight: 400;
}
.list_contactFlow li.active {
  color: #1A1A1A;
}
.mw_wp_form_input .list_contactFlow li:nth-child(1), .mw_wp_form_confirm .list_contactFlow li:nth-child(2), .mw_wp_form_complete .list_contactFlow li:nth-child(3) {
  color: #1A1A1A;
}
.block_contact .contact_wrap .wrap_right {
  width: 57.5%;
}
.block_contact span.att {
  color: #FF0000;
}
.block_contact .contact_att {
  line-height: 2.5;
  margin: 0 0 4.6em;
}
/**/
.block_contact .contact_select {
  display: flex;
  margin: 0 0 5%;
}
.block_contact .contact_select .selectLeft {
  width: 31%;
}
.block_contact .contact_select .selectRight {
  width: 73%;
  position: relative;
}
.block_contact .contact_select .selectRight label {
  position: relative;
  display: block;
}
/**/
.list_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list_form > li {
  width: 48%;
  margin: 0 0 min(7%, 50px);
}
.list_form .input_wrap {
  border-bottom: solid 1px #CCCCCC;
}
.list_form .input_wrap.isVal {
  min-height: 1em;
  border-bottom: solid 1px #333333;
}
.list_form > li.long {
  width: 100%;
}
.list_form .input_wrap {
  position: relative;
}
.list_form .input_wrap label {
  pointer-events: none;
  font-weight: 400;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  transition: all .3s;
}
.block_contact .wpcf7-radio .wpcf7-list-item {
  display: block;
  position: relative;
  margin: 0;
}
.block_contact .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item {
  margin: 1.6em 0 0;
}
.block_contact .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding: 0 0 0 1.8em;
}
.block_contact .wpcf7-radio .wpcf7-list-item input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.block_contact .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  content: '';
  width: 1.5em;
  height: 1.5em;
  box-sizing: border-box;
  border: solid 1px #CCCCCC;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.block_contact .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  content: '';
  width: 1.5em;
  height: 1.5em;
  box-sizing: border-box;
  background: #000000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0);
  transition: all .4s;
}
.block_contact .wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  transform: scale(.45);
}
.list_form .input_wrap input[type="text"], .list_form .input_wrap input[type="email"], .list_form .input_wrap input[type="tel"], .list_form .input_wrap input[type="url"], .list_form .input_wrap textarea {
  border: none;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.list_form .input_wrap.isFocus label, .list_form .input_wrap.isVal label, body.page--confirm .list_form .input_wrap label {
  font-size: 80%;
  color: #999;
  top: -20px;
}
.block_contact .area_confirm {
  margin: -20px 0 min(11%, 80px);
  position: relative;
}
.block_contact .area_confirm.disabled, .block_contact .area_confirm .disabled + span {
  pointer-events: none;
  opacity: .4;
}
.block_contact .area_confirm input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
}
.block_contact .area_confirm .wpcf7-list-item {
  margin: 0;
}
.block_contact .area_confirm label {
  display: inline-block;
  position: relative;
}
.block_contact .area_confirm span.wpcf7-list-item-label {
  display: block;
  position: relative;
  padding: 0 0 0 1.8em;
}
.block_contact .area_confirm span.wpcf7-list-item-label::before {
  content: '';
  width: 20px;
  height: 20px;
  border: solid 1px #333;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.block_contact .area_confirm span.wpcf7-list-item-label::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #333;
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
  opacity: 0;
  transform: scale(0);
}
.block_contact .area_confirm input:checked + span.wpcf7-list-item-label::after {
  opacity: 1;
  transform: scale(1);
}
.block_contact .area_confirm a {
  text-decoration: underline;
  transition: all .2s;
}
.block_contact .area_confirm a:hover {
  color: blue;
}
.block_contact .area_confirm .mwform-checkbox-field-text {
  display: none;
}
.block_contact .btn_submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background: #000000;
  border: solid 1px #000000;
  text-align: center;
  color: #fff;
  display: inline-block;
  width: 200px;
  border-radius: 50px;
  padding: 0;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 50px;
  transition: all .2s;
}
.block_contact .btn_submit:hover {
  background: #fff;
  color: #000;
}
.block_contact .btn_submit:disabled {
  opacity: .5;
  pointer-events: none;
}
.block_contact .btn_back {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background: #fff;
  border: solid 1px #CCCCCC;
  text-align: center;
  color: #000000;
  display: inline-block;
  width: 200px;
  border-radius: 50px;
  padding: 0;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 50px;
  transition: all .2s;
  margin: 0 0 0 25px;
}
.block_contact .btn_back:hover {
  background: #CCCCCC;
  color: #fff;
}
.block_contact .thanks_title {
  font-size: 150%;
  font-weight: 500;
  margin: 0 0 min(8%, 60px);
}
.block_contact .thanks_text {
  font-size: 87.5%;
  line-height: 2;
  margin: 0 0 min(8%, 60px);
}
.block_contact .mw_wp_form_confirm .list_form label {
  font-size: 80%;
  color: #999;
  top: -20px;
}
.block_contact .mw_wp_form_confirm .contact_att, .block_contact .mw_wp_form_confirm .area_confirm, .block_contact .mw_wp_form_confirm .contact_policyWrap {
  display: none;
}
.block_contact .mw_wp_form .error {
  position: absolute;
  left: 0;
  top: 100%;
}
.block_contact .entryFlex {
  display: flex;
  justify-content: space-between;
}
.block_contact .entryFlex .entryTitle {
  width: 30%;
}
.block_contact .entryFlex .entryFile {
  width: 70%;
}
.block_contact .entryFlex .entryFile .entryFile_btn {
  margin: 0 0 .5em;
}
.block_contact .entryFlex .entryFile .entryFile_btn a {
  display: inline-block;
  padding: .7em 2.3em;
  box-sizing: border-box;
  border: solid 1px #CCCCCC;
  border-radius: 3em;
  text-align: center;
  letter-spacing: .04em;
  transition: all .2s;
}
.block_contact .entryFlex .entryFile .entryFile_btn a:hover {
  background: #CCCCCC;
  color: #fff;
}
.block_contact .entryFlex .entryFile .entryFile_text {
  font-size: 87.5%;
}
/* ====== 
page-name #recruit
======*/
body#page_recruit main {
  overflow: visible;
}
.block_recruit {
  padding: 12.8em 0 0;
  margin: 0 0 14em;
}
.block_recruit .area_title {
  display: flex;
  margin: 0 0 70px;
}
.block_recruit .area_title .base_title {
  width: 50%;
  position: relative;
  padding: 0 0 40px;
}
.block_recruit .area_title .base_title::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #CCCCCC;
}
.block_recruit .area_title .base_title::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #000000;
  transition: all .5s ease-out 0s;
}
.block_recruit .area_title .base_title.active::after {
  width: 100%;
  left: 0;
  right: auto;
}
.block_recruit .area_title .base_title strong {
  font-size: 150%;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5% 0 0;
  color: #999999;
  transition: all .5s;
}
.block_recruit .area_title .base_title.active strong, .block_recruit .area_title .base_title:hover strong {
  color: #1A1A1A;
}
.block_recruit .area_title .base_title span {
  display: inline-block;
  vertical-align: middle;
  font-size: 87.5%;
  font-weight: 700;
  color: #999999;
}
.block_recruit .area_detail {
  position: relative;
}
.block_recruit .area_detail .select_base {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.block_recruit .area_detail .select_base.active {
  display: flex;
  height: auto;
  opacity: 1;
}
.block_recruit .area_detail .select_base .detail_left {
  width: 40%;
}
.block_recruit .area_detail .select_base .detail_right {
  width: 60%;
}
.block_recruit .area_detail .select_base .detail_right .tab_anime {
  opacity: 0;
}
.block_recruit .area_detail .select_base.active .detail_right .tab_anime {
  opacity: 1;
}
.list_recruitPosition {
  font-size: 87.5%;
  opacity: 0;
}
.block_recruit .area_detail .select_base.active .list_recruitPosition {
  opacity: 1;
}
.list_recruitPosition li {
  color: #999999;
  transition: all .3s;
  position: relative;
}
.list_recruitPosition li::before {
  content: '';
  width: 0;
  height: 1px;
  background: #1A1A1A;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.list_recruitPosition li.tab__select {
  color: #1A1A1A;
  padding: 0 0 0 1.5em;
}
.list_recruitPosition li.tab__select::before {
  width: 1em;
}
.list_recruitPosition li:hover {
  color: #1A1A1A;
}
.list_recruitPosition li + li {
  margin: 3% 0 0;
}
.block_recruit .area_detail .tab-set dl {
  display: flex;
}
.block_recruit .area_detail .tab-set dl + dl {
  margin: min(5%, 30px) 0 0;
}
.block_recruit .area_detail .tab-set dt {
  color: #999999;
  width: 15%;
  margin: 0 2% 0 0;
  font-size: 87.5%;
}
.block_recruit .area_detail .tab-set dd {
  width: 83%;
  font-size: 87.5%;
}
.block_recruit .area_recruitContact {
  margin: 0 0 0 25%;
  border: solid 1px #CCCCCC;
  padding: 3%;
}
.block_recruit .area_recruitContact dl {
  display: flex;
}
.block_recruit .area_recruitContact dt {
  width: 20%;
  font-size: 87.5%;
}
.block_recruit .area_recruitContact dd {
  width: 80%;
  line-height: 2;
}
/*----------*/
.block_recruit .recruit_set {
  padding: 10em 0 0;
}
.block_recruit .recruit_set .set_left {
  width: 0;
}
.block_recruit .recruit_set .set_right {
  width: 100%;
}
.block_recruit .recruit_set .recruit_title {
  font-size: 150%;
  font-weight: 700;
  margin: 0 0 6.5%;
  line-height: 1;
  letter-spacing: .04em;
}
.block_recruit .recruit_set .partner_lead {
  font-size: 87.5%;
  line-height: 2.286;
  margin: -.6em 0 3.5em;
  letter-spacing: .04em;
  text-align: left;
}
.list_recruitArticle {
  display: flex;
}
.list_recruitArticle li {
  color: #999999;
  padding: 0 1.7em 0 0;
  font-size: 87.5%;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .4s;
}
.list_recruitArticle li.tab__select, .list_recruitArticle li:hover {
  color: #1A1A1A;
}
.block_recruit .tab_anime {
  padding: 6% 0 0;
  margin: 6% 0 0;
  border-top: solid 1px #9F9F9F;
}
.block_recruit .recruit_set .tab-set dl {
  display: flex;
  letter-spacing: .04em;
  font-size: 87.5%;
  line-height: 2;
}
.block_recruit .recruit_set .tab-set dl + dl {
  margin: 3.6% 0 0;
}
.block_recruit .recruit_set .tab-set dt {
  width: 23%;
  color: #999999;
}
.block_recruit .recruit_set .tab-set dd {
  width: 77%;
  text-align: left;
}
/*-----*/
.block_recruit .recruit_lead {
  line-height: 2.25;
  border-top: solid 1px #CCCCCC;
  padding: 6% 0 4% 2%;
  box-sizing: border-box;
}
.block_recruit .recruit_lead p {
  width: 55%;
}
.block_recruit .recruit_lead p + p {
  margin: 1em 0 0;
}
.block_recruit .recruit_lead a {
  color: #0000cd;
  display: inline-block;
  position: relative;
}
.block_recruit .recruit_lead a::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #0000cd;
  opacity: .5;
}
.block_recruit .recruit_lead a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #000;
  transition: all .4s;
}
.block_recruit .recruit_lead a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.block_recruit .recruit_mainTitle {
  font-size: 180%;
  font-weight: 500;
  margin: 6% 0 6% 2%;
}
/*-----*/
.block_recruit .area_partners {
  border-top: solid 1px #9F9F9F;
}
.block_recruit .area_partners .partnersFlex {
  display: flex;
  margin: 7% 0 0;
}
.partnersFlex .flex_left {
  width: 12%;
  padding: 10% 0 0;
}
.partnersFlex .flex_right {
  width: 88%;
  border-left: solid 1px #9F9F9F;
  box-sizing: border-box;
  padding: 10% 0 0 4.5%;
}
.partnersFlex .flex_right .partners_title {
  font-size: 180%;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 6%;
}
.partnersFlex .flex_right .partners_lead {
  margin: 0 0 8%;
}
.dl_partners {
  display: flex;
}
.dl_partners + .dl_partners {
  margin: 3% 0 0;
}
.dl_partners dt {
  width: 25%;
  color: #9F9F9F;
}
.dl_partners dd {
  width: 75%;
}
/**/
.block_recruit .recruitSticky {
  position: relative;
  top: 0;
  margin: 12% 0 10%;
  border-top: solid 1px #CCCCCC;
}
.block_recruit .recruitSticky .stickyLeft {
  position: absolute;
  left: 0;
  top: 10em;
  width: 12%;
  height: 100%;
}
.block_recruit .recruitSticky .stickyLeft .stickyBox {
  position: sticky;
  left: 0;
  top: 150px;
}
.block_recruit .recruitSticky .stickyLeft .sticky_title {
  font-size: 160%;
  margin: 0 0 3%;
}
.block_recruit .recruitSticky .stickyRight {
  width: 74.5%;
  margin: 0 0 0 auto;
}
.list_stickyAnchor > li {
  position: relative;
}
.list_stickyAnchor > li::before {
  content: '';
  width: .6em;
  height: .6em;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: -1em;
  top: .65em;
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  transition: all .3s;
}
.list_stickyAnchor > li:hover::before, body.active0 .list_stickyAnchor > li:nth-child(1)::before, body.active1 .list_stickyAnchor > li:nth-child(2)::before, body.active2 .list_stickyAnchor > li:nth-child(3)::before {
  opacity: 1;
  transform: scale(1);
}
.list_stickyAnchor > li + li {
  margin: 1.8em 0 0;
}
/* ====== 
page-name #base
======*/
.block_base {
  padding: min(13.4%, 180px) 0 0;
  margin: 0 0 min(18%, 220px);
}
.block_base .inner {
  position: relative;
}
.block_base .base_title {
  position: absolute;
  left: 0;
  top: 0;
}
.block_base .area_contents {
  margin: 0 0 0 42%;
  line-height: 2;
}
.block_base .area_contents .contents_lead {
  font-size: 87.5%;
  margin: 0 0 min(10%, 70px);
}
.dl_base + .dl_base {
  margin: min(10%, 70px) 0 0;
}
.dl_base dt {
  position: relative;
  padding: 0 0 0 1.5em;
  margin: 0 0 20px;
}
.dl_base dt::before {
  content: '';
  width: 1em;
  height: 1px;
  background: #000000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.dl_base dd {
  font-size: 87.5%;
}
/* ====== 
page-name #policy
======*/
.policyWrap .area_policyTop {
  margin: 0 0 15%;
}
.policyWrap .area_policyTop .inner {
  width: calc(100% - 200px);
}
.policyWrap .policyTop_title {
  margin: 0 0 7%;
}
.policyWrap .policyTop_title span.en {
  display: block;
}
.policyWrap .policyTop_title span.en::before {
  content: '●';
  font-size: 70%;
  margin: 0 5px 0 0;
}
.policyWrap .policyTop_title span.jp {
  display: block;
  font-size: 185%;
  font-weight: 500;
}
.policyWrap .area_policyTop .policy_lead {
  margin: 0 0 7%;
  line-height: 2.5;
}
.policyWrap .area_policyTop .policy_lead p + p {
  margin: 3% 0 0;
}
.list_abc {
  margin: 0 0 6%;
}
.list_abc > li {
  margin: 0 0 0 1.3em;
  list-style: lower-alpha;
  line-height: 2.5;
}
.list_abc > li + li {
  margin: 2% 0 0 1.3em;
}
.policyWrap .area_policyTop .policy_end {
  margin: 0 0 4%;
}
.policyWrap .area_policyTop .policy_president {
  text-align: right;
  margin: 0 0 6%;
}
.policyWrap .area_policyTop .policy_president p + p {
  margin: 4% 0 0;
}
.policyWrap .area_policyTop .policy_address {
  width: 50%;
  min-width: 740px;
  margin: 0 auto;
  text-align: center;
  border: solid 1px #CCCCCC;
  padding: 3% 0;
}
/*----------*/
.policyWrap .area_handling .inner {
  width: calc(100% - 200px);
}
.list_policyHandling {
  counter-reset: number 0;
}
.list_policyHandling > li {
  position: relative;
  padding: 0 0 0 5em;
}
.list_policyHandling > li::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 150%;
  border-right: solid 1px #707070;
  line-height: 1;
  padding: 0 1em 0 0;
}
.list_policyHandling > li + li {
  margin: 8% 0 0;
}
.list_policyHandling > li dl dt {
  font-size: 120%;
  margin: 0 0 2% 0;
  position: relative;
  top: -.3em;
}
.list_policyHandling > li dl dd p {
  line-height: 2;
}
.list_policyHandling > li dl dd p + p {
  margin: 4% 0 0;
}
.list_policyHandling .handling_end {
  margin: 8% 0 0;
}
.list_policyNum {
  margin: 4% 0 0;
}
.list_policyNum > li + li {
  margin: 4% 0 0;
}
.list_policyNum .policy_subTitle {
  margin: 0 0 1%;
  font-size: 115%;
}
.list_policyNum .policy_subText {
  margin: 0 0 0 1em;
}
.list_disc {
  margin: 0 0 0 1.3em;
  padding: 0 0 0 1em;
}
.list_disc > li {
  list-style: disc;
  line-height: 2.1;
}
/* ====== 
page-name #policyModal
======*/
body.policy--open, body.security--open {
  overflow: hidden;
}
#policyModal, #securityModal {
  position: fixed;
  z-index: 995;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(204, 204, 204, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .5s;
  filter: blur(5px);
}
body.policy--open #policyModal, body.security--open #securityModal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: blur(0);
}
#policyModal .policyClose, #securityModal .policyClose {
  position: absolute;
  right: 10%;
  bottom: 85vh;
  width: 50px;
  height: 50px;
}
#policyModal .policyClose::before, #policyModal .policyClose::after, #securityModal .policyClose::before, #securityModal .policyClose::after {
  content: '';
  width: 70%;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center;
  background: #1A1A1A
}
#policyModal .policyClose::before, #securityModal .policyClose::before {
  transform: rotateZ(45deg);
}
#policyModal .policyClose::after, #securityModal .policyClose::after {
  transform: rotateZ(-45deg);
}
#policyModal .policyWrap, #securityModal .policyWrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10vh;
  margin: auto;
  width: 80%;
  height: 75vh;
  box-sizing: border-box;
  padding: 5% 0;
  overflow-y: scroll;
  background: #fff;
}
/*--------------------*/
.contact_policyWrap {
  border: solid 1px #CCCCCC;
  padding: 5%;
  height: 350px;
  box-sizing: border-box;
  margin: 0 0 6%;
  overflow-y: scroll;
}
.contact_policyWrap .contact_policyTitle {
  margin: 0 0 2%;
}
.contact_policyWrap .contact_policyLead {
  margin: 0 0 4%;
  font-size: 93.75%;
}
.list_decimal {
  margin: 0 0 0 1.3em;
  font-size: 93.75%;
}
.list_decimal > li {
  list-style: decimal;
}
.list_decimal > li + li {
  margin: 4% 0 0;
}
.list_decimal .contact_policyName {
  margin: 0 0 1%;
}
/*--------------------*/
.policyWrap .securityTop_title {
  margin: 0 0 7%;
}
.policyWrap .securityTop_title span.jp {
  display: block;
  font-size: 185%;
  font-weight: 500;
}
.policyWrap .security_lead {
  line-height: 2.5;
}
.policyWrap .security_lead p + p {
  margin: 2% 0 0;
}
.policyWrap .area_guidelines .inner {
  width: calc(100% - 200px);
}
.policyWrap .security_centerTitle {
  text-align: center;
  font-size: 185%;
  font-weight: 500;
  line-height: 1;
  position: relative;
  margin: -3% 0 8%;
}
.policyWrap .security_centerTitle::before {
  content: '';
  width: 100%;
  height: 2px;
  background: #1A1A1A;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.policyWrap .security_centerTitle span {
  display: inline-block;
  padding: 0 1em;
  background: #fff;
  position: relative;
  z-index: 5;
}
.policyWrap .area_guidelines .list_policyHandling > li dl dt {
  font-size: 105%;
}
.policyWrap .area_guidelines .security_president {
  text-align: right;
  margin: 6% 0 0;
}
/* ====== 
page-name #security
======*/
.block_security {
  padding: 12.8em 0 0;
  margin: 0 0 min(18%, 220px);
}
.block_security .securityWrap {
  display: flex;
}
.block_security .security_left {
  width: 34%;
}
.block_security .security_right {
  width: 66%;
}
.block_security .security_lead {
  font-size: 87.5%;
  margin: 0 0 10%;
  line-height: 2;
}
.list_securityMark {
  display: flex;
  margin: 0 0 15%;
}
.list_securityMark > li {
  width: 30%;
  box-sizing: border-box;
  margin: 0 4% 0 0;
  text-align: left;
}
.list_securityMark > li .mark_thumb {
  border: solid 1px #CCCCCC;
}
.list_securityMark > li .mark_title {
  font-size: 85%;
  font-weight: 700;
  margin: 6% 0 4%;
}
.list_securityMark > li .mark_text {
  font-size: 85%;
}
.block_security .security_set + .security_set {
  margin: 12% 0 0;
}
.block_security .security_set h2 {
  font-weight: 500;
  position: relative;
  padding: 0 0 0 25px;
  margin: 0 0 3%;
}
.block_security .security_set h2::before {
  content: '';
  width: 16px;
  height: 1px;
  background: #000000;
  position: absolute;
  left: 0;
  top: .9em;
}
.block_security .security_set p.set_text {
  font-size: 85%;
  font-weight: 500;
  line-height: 2;
}
.list_securityMerit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list_securityMerit::after {
  content: '';
  display: block;
  width: 30%;
}
.list_securityMerit > li {
  width: 30%;
  text-align: center;
  margin: 6% 0 0;
}
.list_securityMerit > li p {
  padding: 60% 0 0;
  font-size: 85%;
  font-weight: 700;
  line-height: 2;
  background-position: center top;
  background-size: 55% auto;
  background-repeat: no-repeat;
}
.list_securityMerit > li.merit01 p {
  background-image: url("../img/security/merit01.jpg");
}
.list_securityMerit > li.merit02 p {
  background-image: url("../img/security/merit02.jpg");
}
.list_securityMerit > li.merit03 p {
  background-image: url("../img/security/merit03.jpg");
}
.list_securityMerit > li.merit04 p {
  background-image: url("../img/security/merit04.jpg");
}
.list_securityMerit > li.merit05 p {
  background-image: url("../img/security/merit05.jpg");
}
.block_security .list_newsSummary a {
  padding: min(3%, 37.5px) 0;
}
.block_security .list_newsSummary span.news_title {
  width: calc(100% - 80px);
}
.block_security .security_set .link {
  text-align: right;
  margin: 5% 0 0;
}
/* ==================================== 
2020507
====================================*/
.block_frontProcess {
  margin: -1em auto 11.4%;
  background: #fff;
  position: relative;
  z-index: 5;
}
.block_frontProcess .process_descBox {
  margin: 0 0 6.6em 34%;
}
.block_frontProcess .inner {
  position: relative;
}
.block_frontProcess .title_section {
  position: absolute;
  left: 0;
  top: .15em;
}
.block_frontProcess .process_descBox p {
  line-height: 2.286;
  letter-spacing: .04em;
}
.list_process > li {
  display: flex;
  justify-content: space-between;
}
.list_process > li + li {
  margin: 3% 0 0;
}
.list_process > li .process_imageBox {
  width: 23.38%;
  background: #F1F1F1;
  padding: 1% 0;
}
.list_process > li .process_imageBox img {
  vertical-align: top;
  display: block;
  width: 92.8%;
  margin: auto;
}
.list_process > li .process_textBox {
  width: 66%;
}
.list_process > li .process_textBox .process_num {
  margin: 0 0 3.5em;
}
.list_process > li .process_textBox .process_title {
  font-size: 150%;
  line-height: 1.33;
  letter-spacing: .04em;
  margin: 0 0 1em;
}
.list_process > li .process_textBox .process_desc {
  font-size: 87.5%;
  letter-spacing: .04em;
  line-height: 2.286;
}
/**/
.block_frontWorks {
  margin: 0 0 11%;
}
.block_frontWorks .inner {
  border-top: solid 1px #CCCCCC;
  padding: 12% 0 0;
}
.block_frontWorks .list_worksContents {
  margin: 4.6% 0 0;
}
.block_frontWorks .more_link {
  text-align: center;
  margin: 3.7em auto 0;
}
/**/
.block_frontAbout .inner {
  border-top: solid 1px #CCCCCC;
  padding: 12% 0 0;
}
/*--------------------------------------------------*/
.parts_partner {
  padding: 9.8em 0;
}
.parts_partner .partner_title {
  text-align: center;
  font-size: 150%;
  line-height: 1.3333;
  margin: 0 0 2em;
}
.parts_partner .partner_text {
  text-align: center;
  font-size: 87.5%;
  line-height: 2.286;
  margin: 0 0 4em;
}
.parts_partner .more_link {
  text-align: center;
}
/*--------------------------------------------------*/
.block_recruit .recruit_topContents .topContentsFlex {
  display: flex;
  justify-content: space-between;
}
.block_recruit .recruit_topContents .flexLeft {
  width: 42%;
  box-sizing: border-box;
  padding: 0 1.2% 0 0;
}
.block_recruit .recruit_topContents .topContents_title {
  margin: 0 0 3.5em;
}
.block_recruit .recruit_topContents .topContents_desc {
  font-size: 87.5%;
  line-height: 2.286;
  max-width: 400px;
  letter-spacing: .04em;
  text-align: left;
}
.block_recruit .recruit_topContents .flexRight {
  width: 57.504%;
  margin: .5% 0 0;
}
.block_recruit .recruit_topContents .flexRight a {
  transition: all .2s;
}
.block_recruit .recruit_topContents .flexRight a:hover {
  opacity: .7;
}
.btn_entrySmall {
  border: solid 1px #CCCCCC;
  text-align: center;
  width: 97.6%;
  margin: 4.6em 0 0;
}
.btn_entrySmall a {
  display: block;
  font-size: 200%;
  font-family: 'Inter', sans-serif;
  padding: 1.14em 0 .74em;
  transition: background .4s;
}
.btn_entrySmall a:hover {
  background: #F5F5F5;
}
.btn_entrySmall span.btnWrap {
  overflow: hidden;
  display: inline-block;
  line-height: 1.2;
  position: relative;
  padding: 0 .7em 0 1.4em;
}
.btn_entrySmall span.btnWrap::before {
  content: '';
  width: .5em;
  height: .5em;
  background: #000;
  position: absolute;
  left: .5em;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.btn_entrySmall a:hover span.btnWrap::before {
  -webkit-animation: diffusion2 .8s ease 0s;
  animation: diffusion2 .8s ease 0s;
}
.btn_entrySmall span.btnAnime {
  display: block;
  transition: all .4s;
  position: relative;
}
.btn_entrySmall span.btnAnime::before {
  content: attr(data-link);
  position: absolute;
  left: 0;
  top: 1.5em;
}
.btn_entrySmall a:hover span.btnAnime {
  transform: translateY(-1.5em);
}