html {
  font-size:62.5%;
}
body {
  background:#fff;
  color: #221815;
  font-size: 1.7rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  overflow-x:hidden;
  line-height:1.6;
}
img {
	max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width:767px) {
  html {
    font-size:50%;
  }
}
@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1010px;
  }
}

header {
  width:100%;
  height:80px;
  position: fixed;
  background: rgba(0,0,0,.45);
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

.site-ttl {
  margin:0 0 0 50px;
  display: flex;
  align-items: center;
  flex: 0 0 20%;
}
.site-ttl a {
	display:block;
	width:100%;
}

.nav-wrap {
  display: flex;
}
nav > div ,
.menu-global-container {
  height:100%;
}
.global-navi ul {
  height:100%;
  margin:0;
  padding:0 10px;
  list-style: none;
  display: flex;
}
.global-navi li {
  height:100%;
  font-size:1.5rem;
  font-weight: 500;
  color:#fff;
  margin:0 20px;
  display: flex;
  align-items: center;
  position: relative;
}
.global-navi li a {
  height:100%;
  color:#fff;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}
.global-navi li a:hover {
  text-decoration: none;
}
.global-navi li.current-menu-item::after,
.global-navi li.current_page_parent::after {
  content:'';
  display: inline-block;
  width:100%;
  height:5px;
  background:#910000;
  position: absolute;
  left:0;
  bottom:0;
}
.global-navi li.current-page-parent li.current-menu-item::after,
.global-navi li li.current-menu-item::after {
  content:none;
}
.global-navi li li:hover::after {
  content: none;
}
.menu-item:hover ul li {
  display: block;
}
.global-navi ul .parent ul {
  position: absolute;
    flex-direction: column;
    top: calc(100% - 5px);
  background: #272727;
  box-shadow:0 10px 20px rgba(0,0,0,.16);
  border-radius: 5px;
  left: 50%;
  transform:translateX(-50%) translateY(-20px);
  text-align: center;
  padding:10px;
  visibility: hidden;
  opacity: 0;
  transition: .2s ease-in-out;
  height: auto;
}
.global-navi ul .parent ul a {
  padding:5px 0;
}
@media screen and (min-width:992px) {
nav .global-navi ul .parent:hover ul {
  z-index: 30;
  visibility: visible;
  opacity: 1;
  transform:translateX(-50%) translateY(0px);
}
}
.global-navi ul .parent li {
  height:auto;
}
.global-navi ul .parent::before {
  content:'';
  display: inline-block;
  width:10px;
  height:10px;
  border-right:2px solid #B1B1B1;
  border-bottom:2px solid #B1B1B1;
  transform:rotate(45deg) translateX(-50%);
  position: absolute;
  left:50%;
  bottom: 10px;
}
.header-contact {
  height:100%;
}
.header-contact a {
  height:100%;
  padding:0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #910000;
  color: #fff;
  font-size:1.5rem;
  font-weight: 700;
  white-space: nowrap;
}
.header-contact a:hover {
  text-decoration: none;
  background: rgb(145,0,0);
background: linear-gradient(180deg, rgba(145,0,0,1) 0%, rgba(180,0,0,1) 100%);
}
.header-contact a::before {
  margin-right:15px;
  content:'';
  width:22px;
  height:16px;
  background:url(../img/common/header-mail.png) no-repeat center center;
  background-size:contain;
}
.footer-btm {
  display: flex;
}
.footer-company-logo {
  width:36.6%;
  max-width:500px;
  padding:3.66vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #910000;
}
.footer-nav-wrap {
  background: #272727;
  flex:1;
  padding: 4.66vw 20px 50px 6.86vw;
}
.footer-navi {
  width:100%;
  margin-bottom:5rem;
}
.footer-navi ul {
  margin:0;
  padding:0;
  list-style: none;
  display: flex;
    flex-wrap: wrap;
}
.footer-navi ul ul {
  flex-direction: column;
}
.footer-navi ul > li {
  padding-right:5%;
  margin-bottom:3rem;
  line-height: 1.5;
}
.footer-navi ul > li:last-child {
	padding-right:0;
}
.footer-navi ul ul > li {
  width:100%;
  margin-top:1rem;
  margin-bottom:0px;
  white-space: nowrap;
}
.footer-navi ul ul > li::before {
  content:'';
  display: inline-block;
  width:8px;
  height:8px;
  border-top:2px solid #910000;
  border-right:2px solid #910000;
  transform: rotate(45deg);
  margin-right:10px;
  margin-bottom:1px;
}
.footer-navi a {
  color: #fff;
  font-size:1.6rem;
  font-weight: 500;
}
.footer-navi ul ul a {
  font-size: 1.5rem;
  font-weight: 400;
}
.footer-privacy a {
  font-size:1.4rem;
  font-weight: 500;
  color:#fff;
}
.footer-copyright {
  color: #fff;
  font-size:1.2rem;
}
.footer-contact {
  background: #F4EAEA;
  padding:88px 0;
  text-align: center;
}
.footer-contact .en {
  margin-bottom: 1rem;
  color:#575455;
  font-family: 'Didact Gothic', sans-serif;
  font-size:1.6rem;
}
.footer-contact-msg {
  font-size:2.8rem;
  font-weight: 500;
  margin-bottom:3rem;
  line-height: 1.6;
}
.imp {
  color:#910000;
}
.footer-contact-btn {
  margin-bottom:5rem;
}
.footer-contact-btn a {
  color:#fff;
  font-size:2.4rem;
  font-weight: 700;
  display: inline-block;
  padding:25px;
  background: #910000;
  width:100%;
  max-width:752px;
  position: relative;
  box-shadow: 0 5px 0 #6F0000;
}
.footer-contact-btn a::before {
  content:'';
  width:36px;
  height:26px;
  background:url(../img/common/header-mail.png) no-repeat center center;
  background-size:contain;
  transform:translateY(4px);
  margin-right:20px;
  display: inline-block;
}
.footer-contact-btn a::after {
  content:'';
  width:15px;
  height:16px;
  background:url(../img/common/arrow-right.png) no-repeat center center;
  background-size:contain;
  margin-left:20px;
  display: inline-block;
  position: absolute;
  top:50%;
  right:15%;
  transform: translateY(-50%);
}
.footer-contact-btn a:hover {
  text-decoration:none;
  transform:translateY(5px);
  box-shadow:0 0 0 #fff;
  background: rgb(145,0,0);
background: linear-gradient(180deg, rgba(145,0,0,1) 0%, rgba(180,0,0,1) 100%);
}
.footer-privacy {
  margin-bottom:2rem;
}
.ac.ac-fade,
.ac .ac-fade {
  opacity: 0;
  transition:opacity 1.8s ease;
  transition-delay: .4s;
}
.active.ac-fade,
.active .ac-fade {
  opacity: 1;
}
.section-header {
  margin-bottom:5rem;
  position: relative;
}
.section-header figure {
  margin:0;
	text-align:center;
}
.section-header figure img {

}
.section-header-content {
  width: 100%;
    height: 100%;
  position: absolute;
  top:0;
  left:0;
  padding-top:50px;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-header-content .container {
	max-width:100%;
}
.section-header-ttl-en {
  margin-bottom:1rem;
  font-family: 'Didact Gothic', sans-serif;
  font-size:2rem;
  opacity: 0;
  animation: 2s fadeIn .4s forwards;
}
.section-header-ttl {
  font-weight: 500;
  font-size:3rem;
  margin:0;
  opacity: 0;
  animation: 2s fadeIn .5s forwards;
}
.pagenavi {
  margin-bottom:18rem;
  border-bottom:4px solid #EAEAEA;
}
.pagenavi ul {
  margin:0;
  padding:0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.pagenavi ul li {
  padding:0 50px;
  white-space: nowrap;
}
.pagenavi.page4 ul li {
    padding: 0 25px;
    width: 25%;
}
.pagenavi ul a {
  padding:15px 50px;
  display: block;
  border-bottom:4px solid #990f00;
  transform: translateY(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size:1.8rem;
  font-weight: 500;
  color: #990f00;
}
.pagenavi ul a:hover {
  text-decoration: none;
}
.pagenavi ul a::after {
  content:'';
  display: inline-block;
  width: 0;
height: 0;
margin-top:5px;
border-style: solid;
border-width: 6px 5px 0 5px;
border-color: #990f00 transparent transparent transparent;
}
.section-top {
  position: relative;
  margin-bottom:12rem;
}
.section-top .container-fluid {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}
.section-top-content {
  width:100%;
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-top figure {
	text-align:center;
}
.section-ttl {
  font-size:2.4rem;
  color:#fff;
  font-weight: 500;
}
.section-ttl-en {
  font-size:1.8rem;
  color:#fff;
  font-family: 'Didact Gothic', sans-serif;
}
.container-narrow {
  max-width: 860px;
  margin-right:auto;
  margin-left:auto;
}
.section-content {
  margin-bottom:20rem;
  min-height:584px;
}
.recruit .section-content,
.blog .section-content {
  min-height: auto;
}
.content-ttl {
  margin-bottom:5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.content-ttl::after {
  content:'';
  display: inline-block;
  width:40px;
  height:2px;
  background:#910000;
}
.content-ttl .en {
  margin-bottom:1rem;
  font-family: 'Didact Gothic', sans-serif;
  font-size:1.5rem;
  color:#910000;
}
.content-ttl h3 {
  margin-bottom:3rem;
  font-size:3.2rem;
  font-weight: 400;
}
.content-ttl-f {
  margin-bottom:3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.content-ttl-f .en {
  margin-bottom:1rem;
  font-family: 'Didact Gothic', sans-serif;
  font-size:1.5rem;
  color:#910000;
}
.content-ttl-f h3 {
  margin-bottom:3rem;
  font-size:3.2rem;
  font-weight: 400;
}
.tf-y {
  transform: translateY(-5.4rem);
}
.tf-y-f {
  transform: translateY(-4.2rem);
}
.content-ttl.tf-y {
  margin-bottom:1rem;
}
.content-ttl-f.tf-y-f {
  margin-bottom:0rem;
}
.bg {
  position: relative;
}
.bg-s::before {
  content:'';
  width:74.16vw;
  height: 584px;
  background: #F5F5F5;
  display: inline-block;
  position: absolute;
  z-index: -1;
}
.bg-l::before {
  content:'';
  width:92.68vw;
  height:736px;
  background: #f5f5f5;
  display: inline-block;
  position: absolute;
  z-index: -1;
}
.bg-m::before {
  content:'';
  width:70.13vw;
  height: calc(100% - 5rem);
  background: #f5f5f5;
  display: inline-block;
  position: absolute;
  z-index: -1;
}
.bg-right::before {
  right:0;
  top:0;
}
.bg-left::before {
  left:0;
  top:0;
}
.bg-m.bg-right::before {
  top:-3rem;
}
.bg-m.bg-left::before {
  top:-3rem;
}
.philosophy-txt {
  margin-right: 2.6rem;
  margin-bottom:12rem;
    margin-left: 2.6rem;
  padding:5rem 0;
  border-top:1px dashed #910000;
  border-bottom:1px dashed #910000;
  line-height:2.94;
}
.greeting-txt {
  line-height: 2.588;
}
.president-name {
  text-align: right;
  font-weight: 400;
  font-size:2.4rem;
}
.name-before {
  font-size:1.8rem;
}
.list-half {
  margin:0;
  padding:0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.list-half li:nth-child(2n-1) {
  width:45%;
  margin-bottom:.8rem;
  padding-right:20px;
}
.list-half li:nth-child(2n) {
  width:55%;
  margin-bottom:.8rem;
}
.list-half .other {
  font-size:1.4rem;
  position: relative;
  top:.3rem;
}
.dot-table {
  width:100%;
	margin:3rem 0;
  border-top:1px dashed #707070;
	table-layout: fixed;
}
.dot-table th,
.dot-table td {
  padding:5rem 2.5rem;
  border-bottom:1px dashed #707070;
}
.dot-table th {
	width: 20%;
  padding-right:5rem;
  white-space: nowrap;
  font-weight: 400;
  color:#910000;
  vertical-align: top;
}
.dot-table td {
  padding-right:0;
}
.gmap {
  margin-top:3rem;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  }
   
  .gmap iframe,
  .gmap object,
  .gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }
  .facility-top {
    margin-bottom:8rem;
    text-align: center;
  }
  .mb-10 {
    margin-bottom:10rem !important;
  }
  .content-ttl-number {
    font-size:5rem;
    font-family: 'Didact Gothic', sans-serif;
    color: #910000;
  }
  .facility-content h4 {
    color:#fff;
    background: #272727;
    text-align: center;
    font-size:1.8rem;
    font-weight: 400;
    margin-bottom:2rem;
    padding:1rem;
  }
  .facility-list {
    margin:0 -.4rem 4.2rem;
    padding:0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .facility-list li {
    width:33.333%;
    padding:0 .4rem .8rem;
  }
  .f-name {
    display: block;
    padding:1rem;
    text-align: center;
    font-weight: 400;
    background: #fff;
  }
  .facility-list li.other {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .nazo {
    transform:translateY(-4rem);
    margin-bottom:-2rem;
    text-align: right;
  }
  .k-list dt {
    font-weight: 300;
    width:8em;
  }
  .k-list dd {
    margin:0;
  }
  .k-list dl {
    display: flex;
  }
  .k-list {
    margin:0;
    padding-left:1em;
  }
  .entry-wrap {
    padding:15rem 0;
    background: #F5F5F5;
  }
  .contact .entry-wrap {
    padding: 5rem 0 15rem;
  }
  .must {
    background: #910000;
    line-height: 1;
    color:#fff;
    font-size:1.3rem;
    font-weight: 700;
    border-radius: 3px;
    padding:5px 10px 5px;
    margin-right: .3rem;
    display: inline-block;
  }
  .entry-top {
    margin-bottom:5rem;
    text-align: center;
  }
  .contact .entry-top {
      margin-top:10rem;
  }
  .entry-top02 {
    text-align: center;
  }
  .entry-top02 a {
    color:#4D9FFF;
    text-decoration: underline;
    font-size:1.4rem;
  }
  .entry-table th {
    padding:3rem 4rem 3rem 3rem;
    background: #272727;
    border-bottom:1px solid #464646;
    color: #fff;
    font-weight: 400;
    font-size:1.6rem;
    white-space: nowrap;
    width:1em;
  }
  .entry-table td {
    padding:3rem;
    border-bottom:1px solid #E0E0E0;
    background: #fff;
  }
  .entry-table tr:last-child th,
  .entry-table tr:last-child td {
    border-bottom:0px;
  }
  .entry-table {
    width:100%;
    margin:5rem 0 8rem;
  }
  .entry-table input[type="text"],
  .entry-table input[type="email"],
  .entry-table textarea {
    width:100%;
    background:#f7f7f7;
    border:2px solid #DEDEDE;
    border-radius: 4px;
    padding:.6rem;
	font-size:16px;
  }
  .entry-table textarea {
    height:24rem;
  }
  .entry-table input.fm_m {
    width:260px;
  }
  .entry-table input.fm_s {
    width:160px;
  }
  .entry-table .mwform-radio-field {
    margin-right:20px;
  }
  .entry-zip {
    margin-bottom:1rem;
  }
  .entry-table td.form-age .error {
    display: inline;
  }
  .entry-small {
    text-align:right;
  }
  .entry-btn {
    display: flex;
    justify-content: center;
  }
  .entry-btn > div {
    padding:0 15px;
    position: relative;
  }
  .entry-btn .entry-btn-send::after {
    content:'';
  width:11px;
  height:12px;
  background:url(../img/common/arrow-right.png) no-repeat center center;
  background-size:contain;
  margin-left:20px;
  display: inline-block;
  position: absolute;
  top:50%;
  right:15%;
  transform: translateY(-50%);
  }
  .entry-btn-send input {
    display: block;
    width:250px;
    background: #910000;
    border:0;
    color: #fff;
    font-size:1.8rem;
    font-weight: 400;
    text-align: center;
    padding:20px;
  }
  .entry-btn-reset input {
    display: block;
    width:250px;
    background:#000000;
    border:0;
    color: #fff;
    font-size:1.8rem;
    font-weight: 400;
    text-align: center;
    padding:20px;
  }
  .mw_wp_form_confirm input.reset-btn {
      display: none;
  }
  .entry-btn input:hover {
    opacity: .7;
  }
  .faq-list {
    margin-bottom:8rem;
    border-bottom:1px dashed #707070;
  }
  .faq-num {
    margin-right:5rem;
    font-size:3rem;
    font-family: 'Didact Gothic', sans-serif;
  }
  .faq-q .faq-num {
    color:#910000;
  }
  .faq-a .faq-num {
    color:#272727;
  }
  .faq-q,
  .faq-a {
    padding:3rem;
    display: flex;
    align-items: center;
  }
  .faq-q {
    font-weight: 500;
    background: #F5F5F5;
  }
  .news-archive-ttl {
    font-size:3rem;
    text-align:center;
    font-weight: 400;
    margin-top:10rem;
    margin-bottom:5rem;
  }
  .news-archive-ttl::first-letter {
    color:#910000;
  }
  .archive-ttl a {
    color:inherit;
    font-weight: 400;
  }
  .archive-date {
    color:#575455;
    font-weight: 400;
    flex:0 0 6em;
    margin-right:20px;
  }
  .archive-list {
    padding:3rem;
    border-bottom:1px dashed #A8A8A8;
    display: flex;
  }
  .archive-list-content {
    border-top:1px dashed #a8a8a8;
  }
  .wp-pagenavi {
    margin-top:5rem;
    padding: 25px 20px;
    text-align: center;
    clear: both;
}
.wp-pagenavi a,
.wp-pagenavi span.extend,
.wp-pagenavi span.pages {
    color: #333;
    padding: 15px 10px;
    background: #eee;
    margin-right: 5px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    background: #000;
    color: #fff;
}
.wp-pagenavi span.current {
    margin-right: 5px;
    padding: 15px 10px;
}
.entry-content strong { font-weight: bold; }
.entry-content em { font-style: italic; }
.entry-content blockquote {
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
}
.aligncenter {
  display: block;
  margin: 0 auto 2rem;
}
.alignright { float: right;margin:0 0 2rem 2rem; }
.alignleft { float: left;margin:0 2rem 2rem 0 }
.news-date {
  font-size:2rem;
  color:#575455;
  font-weight: 400;
  border-bottom:1px solid #BFBFBF;
  padding-bottom:2rem;
  margin-bottom:3rem;
}
.news-thumb {
  margin-bottom:5rem;
  text-align:center;
}
.news-content {
  margin-top:5rem;
  line-height: 2;
  padding-bottom:8rem;
  border-bottom:1px solid #BFBFBF;
}
.news-ttl {
  margin-bottom:3rem;
}
.page_navi {
  margin-top:5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_navi > div {
  width:33.333%;
}
.page_navi_back {
  text-align: center;
}
.page_navi_next {
  text-align: right;
}
.page_navi a {
  transition:all .4s ease;
}
.page_navi a:hover {
  text-decoration: none;
  opacity:.7;
}
.page_navi_prev a {
  color:#910000;
  font-weight: 400;
  font-size:1.8rem;
}
.page_navi_prev a::before {
  content:'';
  width:10px;
  height:11px;
  background:url(../img/news/arrow-l.png) no-repeat center center;
  background-size:contain;
  margin-right:10px;
  display: inline-block;
}
.page_navi_next a::after {
  content:'';
  width:10px;
  height:11px;
  background:url(../img/news/arrow-r.png) no-repeat center center;
  background-size:contain;
  margin-left:10px;
  display: inline-block;
}
.page_navi_next a {
  color:#910000;
  font-weight: 400;
  font-size:1.8rem;  
}
.page_navi_back a {
  background: #272727;
  border:1px solid #707070;
  padding:12px;
  text-align:center;
  display: inline-block;
  width:212px;
  color:#fff;
}
.single-content {
  margin-bottom:14rem;
}
.advantage-top {
  text-align: center;
  margin:10rem 0 15rem;
}
.advantage-top-main {
  color:#910000;
  font-size:2.6rem;
  text-align:center;
  font-weight: 500;
  margin-bottom:3rem;
}
.advantage-top-sub {
  font-weight:500;
}
.advantage-ttl {
  position: relative;
  padding-left:3rem;
  margin-bottom:4rem;
  border-left: 4px solid #910000;
}
.advantage-ttl .en {
    margin-bottom: 1rem;
    font-family: 'Didact Gothic', sans-serif;
    color: #910000;
}
.advantage-ttl h2 {
  font-weight: 400;
  font-size:4rem;
}
/* .advantage-ttl::before {
  content:'';
  display: inline-block;
  width:2px;
  height:70px;
  background: #910000;
  position: absolute;
  top:8px;
  left:0;
} */
.advantage-point {
  margin-bottom:3rem;
}
.advantage-point ul {
  list-style: none;
  margin:0;
  padding:0;
  font-size:1.6rem;
}
.advantage-point .point {
  color:#910000;
}
.advantage-point li {
  margin-bottom:1rem;
  text-indent: -1.2em;
    padding-left: 1.2em;
}
.advantage-point-sub {
  padding:1rem 0 0 1.5em;
  display: flex;
}
.advantage-point-sub-cont {
  margin-left:1rem;
  line-height: 1.85;
}
.red {
  color:#910000;
}
.advantage-content {
  margin-bottom:15rem;
}
.section-products {
  margin-top:10rem;
}
.sample-list {
  display: flex;
  flex-wrap: wrap;
  margin:0 -10px;
}
.sample-list .sample {
  width:25%;
  margin-bottom:5rem;
  padding:0 10px;
  position: relative;
}
.sample-ttl {
  text-align: center;
}
.sample-box figure {
  border:1px solid #DBDBDB;
  position: relative;
}
a.popup {
  cursor: zoom-in;
}
.drift-zoom-pane img {
  max-width: inherit;
}
.sample-list-blur figure {
  margin-bottom:0;
}
.sample-list-blur {
  position: relative;
}
.sample-msg-box-wrap {
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top:10rem;
}
.sample-msg-box {
  padding:17rem;
  text-align:center;
  background: rgba(145,0,0,.84);
}
.sample-msg-box .en {
  font-family: 'Didact Gothic', sans-serif;
  color:#fff;
  font-size:1.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom:3.5rem;
}
.sample-msg-box .en::after {
  content:'';
  display: inline-block;
  width:40px;
  height:2px;
  background: #fff;
  margin-top:1.5rem;
}
.sample-msg {
  font-size:2.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom:15rem;
}
.sample-msg-btn {
  max-width:474px;
  margin:0 auto;
}
.sample-msg-btn a {
  transition:all .4s ease;
}
.sample-msg-btn a:hover {
  opacity:.7;
}
.top-main {
  height:100vh;
  position: relative;
  min-height: 500px;
	max-height:1000px;
}
.top-main .swiper-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.top-main .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top-main .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: rgb(255, 255, 255);
  opacity: 1;
}
.top-main .swiper-pagination-bullet-active {
  opacity: 1;
  background: #910000;
}
.top-main .swiper-pagination {
  padding-right: 3rem;
    padding-bottom: 1rem;
    text-align:right;
}
.top-main-msg-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size:1.5rem;
  font-weight: 700;
  width:300px;
  height:60px;
  margin:0 auto;
  background: rgba(0,0,0,.57);
  border:1px solid #fff;
  position: relative;
  transition:all .4s ease;
}
.top-main-msg-btn a:hover {
  text-decoration: none;
  opacity:.7;
}
.top-main-msg-btn a::after {
  content:'';
  width:11px;
  height:12px;
  background:url(../img/common/arrow-right.png) no-repeat center center;
  background-size:contain;
  margin-left:20px;
  display: inline-block;
  position: absolute;
  top:50%;
  right:10%;
  transform: translateY(-50%);
}
.top-main-msg {
  width:100%;
  position: absolute;
  top:50%;
  left:50%;
  transform:translateX(-50%) translateY(-50%);
  z-index: 5;
  opacity:0;
}
.swiper-slide-active .top-main-msg,
.swiper-slide-next .top-main-msg {
  opacity:1;
}
.swiper-slide-prev .top-main-msg {
	animation: fadeOut 3s ease 0s 1 forwards;
}
@keyframes fadeOut {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }
.top-main-co {
  color:#fff;
  font-size:2.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom:1rem;
  text-shadow:0 3px 10px rgba(0,0,0,.8);
}
.top-msg {
  color:#fff;
  font-size:5.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom:3rem;
  text-shadow:0 3px 10px rgba(0,0,0,.8);
  letter-spacing: .1em;
}
@media screen and (max-width:829px) {
  .top-msg {
  font-size:5rem;
}
}
.scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom:2rem;
  left:50%;
  transform:translateX(-50%);
  text-shadow:0 1px 6px rgba(0,0,0,.2);
  font-family: 'Didact Gothic', sans-serif;
  font-size:1.5rem;
  color:#fff;
  z-index: 3;
}
.scroll::before {
  width:1px;
  height:24px;
  content:'';
  display: inline-block;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.top-company {
  margin-bottom:10rem;
  padding:7rem 0;
  text-align:center;
  position: relative;
}
.top-company::before {
  content:'';
  display: block;
  width:100%;
  height:390px;
  background: #272727;
  position: absolute;
  left:0;
  top:0;
  z-index:-1;
}
.top-company .en {
  font-size:1.6rem;
  font-family: 'Didact Gothic', sans-serif;
  color:#fff;
  margin-bottom: 1rem;
}
.top-company h2 {
  color:#fff;
  font-size:2.8rem;
  font-weight: 500;
}
.top-company h2::first-letter {
  color:#910000;
}
.top-company-cont {
	height:100%;
  min-height:29.4rem;
  transform:translateY(4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.top-company-cont .en {
  font-size:1.6rem;
  font-family: 'Didact Gothic', sans-serif;
  color:#fff;
  margin-bottom: 1rem;
}
.top-company-cont h3 {
  font-size:2.6rem;
  font-weight: 500;
  margin-bottom:5rem;
  color:#fff;
  letter-spacing: .1em;
}
.top-company-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:1.4rem;
  font-family: 'Didact Gothic', sans-serif;
  color:#fff;
  border:1px solid #fff;
  width:200px;
  height:44px;
  background: rgba(255,255,255,.2);
  position: relative;
  transition:all .4s ease;
}
.top-company-btn a:hover {
  opacity:.7;
  text-decoration: none;
}
.top-company-btn a::after {
  content:'';
  width:11px;
  height:12px;
  background:url(../img/common/arrow-right.png) no-repeat center center;
  background-size:contain;
  margin-left:20px;
  display: inline-block;
  position: absolute;
  top:50%;
  right:10%;
  transform: translateY(-50%);
}
.tcc01 {
  background: url(../img/top/fig-tcc01.jpg) no-repeat center center;
  background-size:cover;
}
.tcc02 {
  background: url(../img/top/fig-tcc02.jpg) no-repeat center center;
  background-size:cover;
}
.top-recruit {
  margin-bottom: 10rem;
}
.top-recruit-inner {
  background: url(../img/top/fig-recruit02.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding:7rem 2rem;
}
.top-recruit-inner .en {
  font-size:1.6rem;
  font-family: 'Didact Gothic', sans-serif;
  color:#fff;
  margin-bottom: 1rem;
}
.top-recruit-inner h2 {
  font-size:2.8rem;
  font-weight: 500;
  margin-bottom:5rem;
  color:#fff;
  letter-spacing: .1em;
}
.recuit-msg {
  font-size:1.7rem;
  color:#fff;
  font-weight: 400;
  margin-bottom:5rem;
}
.top-access {
  margin-bottom:8rem;
}
.top-access .en {
  font-size:1.6rem;
  font-family: 'Didact Gothic', sans-serif;
  margin-bottom: 1rem;
  color:#575455;
  text-align: center;
}
.top-access h2 {
  margin-bottom: 4rem;
  font-size:2.8rem;
  font-weight: 500;
  text-align: center;
}
.top-access h2::first-letter {
  color:#910000;
}
.container.container-wide {
  max-width:1266px;
}
.gmap-a {
  position: relative;
  padding-bottom: 77%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  border:1px solid #D8D8D8;
  }
   
  .gmap-a iframe,
  .gmap-a object,
  .gmap-a embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  }
.access-map-co {
  color:#910000;
  font-weight: 700;
  text-align: center;
  margin:2rem 0 1rem;
}
.access-map-address {
  text-align:center;
  font-weight:400;
}
.top-news-inner {
  box-shadow:0 0 20px rgba(0,0,0,.1);
  padding:5rem 5rem 8rem;
  position: relative;
  z-index: 5;
  transform:translateY(2rem);
  background: #fff;
}
.top-news-inner h2 {
  font-size:3.6rem;
  font-family: 'Didact Gothic', sans-serif;
}
.top-news-inner h2:first-letter {
  color:#910000;
}
.to-archive a {
  color:#910000;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 1.6rem;
  border-bottom:3px solid #910000;
  padding-bottom:.5rem;
}
.to-archive a:hover {
  text-decoration: none;
}
.to-archive a::after {
  content:'';
  width:9px;
  height:10px;
  background:url(../img/news/arrow-r.png) no-repeat center center;
  background-size:contain;
  margin-left:10px;
  display: inline-block;
}
.top-news-top {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-pr-wrap {
	padding:19.4rem 0 1px;
	/*background:url(../img/top/top-pr-bg.png) repeat left top;*/
	overflow-x:hidden;
}
.top-pr {
  position: relative;
}
.top-pr.pr01 {
  margin-bottom:17.4rem;
}
.top-pr.pr02 {
  margin-bottom:15rem;
}
.top-pr-label {
  padding:5.5rem 3.5rem 3.5rem;
  width:343px;
  position: relative;
  background: #fff;
  box-shadow:0 0 20px rgba(0,0,0,.16);
  z-index: 10;
}
.top-pr-label .num {
  font-size: 5rem;
  font-family: 'Didact Gothic', sans-serif;
  color: #910000;
  line-height: 1;
  position: absolute;
  top: -2.5rem;
}
.pr01 .top-pr-label .num {
  position: absolute;
  right:4rem;
}
.top-pr-label .en {
  font-size:1.6rem;
  font-family: 'Didact Gothic', sans-serif;
  color:#919191;
}
.top-pr-label h2 {
  font-size:2.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom:6rem;
}
.top-pr-label h2::first-letter {
  color:#910000;
}
.top-pr-btn span.boke {
  font-size:1.4rem;
  font-weight: 700;
  color:inherit;
  border-bottom:2px solid #000;
  padding-bottom:.5rem;
}
.top-pr-btn a:hover {
  text-decoration: none;
}
.top-pr-btn span.boke::after {
  content:'';
  width:9px;
  height:10px;
  background:url(../img/top/arrow-r.png) no-repeat center center;
  background-size:contain;
  margin-left:10px;
  display: inline-block;
}
.top-pr-fig {
  max-width:854px;
  transform:translateY(-8.4rem);
}
.pr02 .top-pr-fig {
  margin-left:auto;
}
.top-pr .container {
  position: relative;
}
.top-pr-label a {
	text-indent:-999rem;
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
.top-pr.pr01 .top-pr-label {
  position: absolute;
  right:2rem;
  bottom:4rem;
}
.top-pr.pr01::before {
  /* content:'';
  display: block;
  margin:0 auto;
  width:100%;
  height:340px;
  background: url(../img/top/bg-st01.png) no-repeat center;
  position: absolute;
  left:0;
  bottom:0;
  z-index:-1 */
  content: '';
    display: block;
    margin: 0 auto;
    width: calc(100% - 14vw);
    border-image-width: 0 0 340px;
    background: url(../img/top/fuckin.png);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    border-right: 30px solid transparent;
    height: 100%;
    transform: skew(10deg) translateX(-60px);
}
/* .top-pr.pr01::after {
  content:'';
  display: block;
  width:50%;
  height: 340px;
  background: url(../img/top/fuckin.png) repeat-x;
  position: absolute;
  left:0;
  bottom:0;
  z-index: -1;
} */
.top-pr.pr02 .top-pr-label {
  position: absolute;
  left:2rem;
  bottom:4rem;
}
.top-pr.pr02::before {
  /* content:'';
  display: block;
  margin:0 auto;
  width:100%;
  height:340px;
  background: url(../img/top/bg-st02.png) no-repeat center;
  position: absolute;
  right:0;
  bottom:0;
  z-index:-1 */
  content: '';
    display: block;
    margin: 0 auto;
    width: calc(100% - 14vw);
    border-image-width: 0 0 340px;
    background: url(../img/top/fuckin.png);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    border-right: 30px solid transparent;
    height: 100%;
    transform: skew(-10deg) translateX(60px);
}
/* .top-pr.pr02::after {
  content:'';
  display: block;
  width:50%;
  height: 340px;
  background: url(../img/top/fuckin.png) repeat-x;
  position: absolute;
  right:0;
  bottom:0;
  z-index: -1;
} */

.pr01 .top-pr-enttl {
  position:absolute;
  bottom:5rem;
  left:8rem;
  z-index: 2;
  mix-blend-mode: overlay;
}
.pr02 .top-pr-enttl {
  position:absolute;
  bottom:5rem;
  right:8rem;
  z-index: 2;
  mix-blend-mode: overlay;
}
.top-pr-enttl .for-ms {
  display: none;
}
_:-ms-lang(x)::-ms-backdrop, .top-pr-enttl .for-ms {
  display: block;
}
_:-ms-lang(x)::-ms-backdrop, .top-pr-enttl .for-n {
  display: none;
}
_:-ms-lang(x)::-ms-backdrop, .pr01 .top-pr-enttl {
	bottom:3rem;
}
_:-ms-lang(x)::backdrop, .pr01 .top-pr-enttl {
	bottom:3rem;
}
_:-ms-lang(x)::backdrop, .top-pr-enttl .for-ms {
  display: block;
}
_:-ms-lang(x)::backdrop, .top-pr-enttl .for-n {
  display: none;
}
_:-ms-lang(x)::-ms-backdrop, .pr02 .top-pr-enttl {
	bottom:3rem;
}
_:-ms-lang(x)::backdrop, .pr02 .top-pr-enttl {
	bottom:3rem;
}
@media screen and (min-width:768px) and (max-width:991px) {
  .pr01 .top-pr-enttl {
    left: 1rem;
    width: 46.875vw;
}
.pr02 .top-pr-enttl {
  right: 1rem;
  width: 46.875vw;
}
}
.mfp-content figure {
  text-align: center;
  position: relative;
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.samplepopup {
  display: flex;
    align-items: center;
    justify-content: center;
    max-width:490px;
    margin:auto;
}
.privacy-wrap {
  padding-top: 5rem;
  padding-bottom:20rem;
}
.privacy-wrap h3 {
  margin-top:6rem;
  font-size:3rem;
}
.privacy-wrap h3::first-letter {
  color:#910000;
}
.privacy-top {
    padding-bottom:8rem;
    border-bottom:1px dashed #707070;
}
.privacy-list {
    padding:5rem 0 3rem;
    border-bottom:1px dashed #707070;
}
.privacy-list h4 {
    font-size:2.4rem;
    color:#910000;
    font-weight: 400;
    margin-bottom:2rem;
}
/*------------------------------------------------------------------------ */
@media screen and (max-width:1199px) {
  .site-ttl {
    margin: 0 0 0 20px;
  }
  .global-navi li {
    margin:0 12px;
  }
  .footer-nav-wrap {
    padding: 4.66vw 10px 50px 6.86vw;
  }
  .footer-navi {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width:991px) {
  .footer-contact {
    padding-right:20px;
    padding-left:20px;
  }
  .site-ttl {
	flex: 0 0 40%;
  }
  .nav-wrap {
    display: flex;
  }
  .global-navi ul {
    flex-direction: column;
    padding:0;
  }
  .global-navi ul.menu {
    margin-top:40px;
  }
  .global-navi {
    position: fixed;
    top: 80px;
    right: 0;
    background: rgba(0,0,0,.8);
    transform: translateX(100%);
    transition: all .6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: scroll;
    height:calc(100vh - 80px);
    min-width: 80%;
  }
  .global-navi li {
    margin: 0;
    height: auto;
    flex-direction: column;
  }
  .global-navi li a {
    width: 100%;
    height: auto;
    display: block;
    padding:15px 30px;
  }
  .global-navi li.current-menu-item::after {
    content:none;
  }
  .global-navi ul .parent::before {
    left: inherit;
    bottom: inherit;
    right: 20px;
    top: 20px;
    transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: 0;
}
div.spnav-btn {
  width: 80px;
    height: 100%;
    background: #272727;
  position: relative;
  cursor: pointer;
  transition: all .2s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 120;
}
div.spnav-btn .line {
  position: absolute;
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
div.spnav-btn .line_01 {
  top: calc(50% - 9px);
  left: 50%;
  transform: translateX(-50%);
}
div.spnav-btn .line_02 {
  top: calc(50% - 1px);
  left: 50%;
  transform: translateX(-50%);
}
div.spnav-btn .line_03 {
  top: calc(50% + 7px);
  left: 50%;
  transform: translateX(-50%);
}

.nav-open .global-navi {
  transform: translateX(0%);
}
.nav-open div.spnav-btn .line {
  background:#fff;
}
.nav-open div.spnav-btn .line_01 {
  top: calc(50% - 1px);
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
  transform-origin: 0;
}
.nav-open div.spnav-btn .line_02 {
  opacity: 0;
}
.nav-open div.spnav-btn .line_03 {
  top: calc(50% - 1px);
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  transform-origin: 0;
}
span.spnav-btn {
  content: '';
  display: block;
  width: 0%;
  height: 100vh;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(1px);
  position: fixed;
  top: 0;
  right: 0;
  transition: width .4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 20;
}
.nav-open span.spnav-btn {
  width: 100%;
}
.global-navi ul .parent.subopen::before {
transform: rotate(-135deg) translateX(-50%);
}
.global-navi ul .parent ul {
  position: relative;
  flex-direction: column;
  top: inherit;
  background: rgba(0,0,0,.6);
  box-shadow: 0 0 0 0 black;
  border-radius: 0;
  left: inherit;
  transform: translateX(0%) translateY(0px);
  text-align: left;
  padding: 0px;
  visibility: visible;
  transition: .2s ease-in-out;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
}
.global-navi ul .parent.subopen ul {
  max-height: 100px;
  opacity: 1;
}
.global-navi ul .parent ul a {
  padding: 10px 30px;
}
.global-navi ul .menu-item:last-child {
  margin-bottom:50px;
}
.global-navi ul ul .menu-item:last-child {
  margin-bottom:0px;
}
.global-navi li.current_page_parent::after {
	content:none;
}
}

@media screen and (max-width:767px) {
  header {
    height:50px;
  }
  div.spnav-btn {
    width: 50px;
  }
  .site-ttl {
    margin: 0 0 0 10px;
  }
  .header-contact a {
    font-size:1.3rem;
  }
  .header-contact a::before {
    width:18px;
    height:16px;
    margin-right:10px;
  }
  .footer-contact {
    padding:40px 0;
  }
  .footer-contact {
    padding-right: 0px;
    padding-left: 0px;
  }
  .footer-contact-btn a {
    padding: 15px 5px;
  }
  .footer-contact-btn a::after {
    right:5%;
  }
  .footer-contact-btn a::before {
    width:30px;
    height:26px;
    transform: translateY(6px);
  }
  .footer-contact-msg .imp {
    display: block;
  }
  .footer-navi ul > li {
    margin-bottom:1rem;
    width: 100%;
  }
  .footer-navi {
    margin-bottom: 2rem;
  }
  .footer-nav-wrap {
    padding: 30px 10px 5px 30px;
  }
  .global-navi {
    position: fixed;
    top: 50px;
    height:calc(100vh - 50px);
  }
  .section-header figure img {
    min-height: 240px;
    object-fit: cover;
  }
  .page_navi {
    flex-direction: column;
  }
  .page_navi > div {
    margin:1rem 0;
    width:100%;
    text-align: center;
  }
  .pagenavi ul {
    flex-wrap: wrap;
  }
  .pagenavi ul li {
    padding: 0 5px;
    width: 50%;
  }
  .pagenavi.page4 ul li {
    width: 50%;
  }
  .pagenavi {
    margin-bottom: 10rem;
  }
  .section-top figure img {
    min-height:160px;
    object-fit: cover;
  }
  .philosophy-txt {
    margin-bottom: 0;
  }
  .section-content {
    margin-bottom: 10rem;
    min-height: inherit;
  }
  .philosophy-msg {
      padding:0 10%;
      text-align:center;
  }
  .dot-table th,
  .dot-table td {
    display: block;
  }
  .dot-table th {
	width:100%;
    padding: 1.5rem 2.5rem 1rem;
    border-bottom:0;
  }
  .dot-table td {
    padding:1rem 2.5rem 1.5rem;
  }
  .list-half li:nth-child(2n-1) {
    width: 100%;
  }
  .list-half li:nth-child(2n) {
    width: 100%;
  }
  .facility-top {
    margin-bottom: 5rem;
  }
  .facility-list li {
    width: 100%;
  }
  .bg-l::before {
    height:136vw;
  }
  .section-top {
    margin-bottom: 10rem;
  }
  .entry-top {
    text-align: left;
  }
  .entry-top02 {
    text-align: left;
  }
  .entry-table th,
  .entry-table td {
    display: block;
    width: 100%;
  }
  .entry-btn {
    flex-direction: column;
    align-items: center;
  }
  .entry-btn > div {
    padding: 10px 15px;
  }
  .top-msg {
    font-size: 10vw;
    letter-spacing: 0;
  }
  .top-main {
    height: 85vh;
  }
  .top-main .swiper-container {
    width: 100%;
    height: 85vh;
  }
  .top-pr-wrap {
    padding-top:14rem;
    overflow-x: hidden;
  }
  .top-pr {
    padding-top: 20rem;
  }
  .top-pr-label {
    width:72%;
    transform: translateY(-20rem);
  }
  .top-company::before {
    height:150vw;
  }
  .tcc01 {
    margin-bottom: 2rem;
  }
  .access-map {
    margin-bottom: 4rem;
  }
  .access-map-address {
    text-align: left;
  }
  .archive-date {
    flex:0 0 100%;
    margin-bottom: 1rem;
  }
  .archive-list {
    flex-wrap: wrap;
    padding: 3rem 0;
  }
  .top-pr .top-pr-enttl {
    mix-blend-mode: normal;
    opacity: .2;
  }
  .pr01 .top-pr-enttl {
    left: 2em;
    width: 65%;
    bottom: 3em;
  }
  .pr02 .top-pr-enttl {
    right: 2em;
    width: 80%;
    bottom: 3em;
  }
  .top-pr.pr01 .top-pr-label {
    right: 4rem;
    bottom: 0rem;
  }
  .top-pr.pr02 .top-pr-label {
    left: 4rem;
    bottom: 0rem;
  }
  .top-pr.pr01 {
    margin-bottom: 12.4rem;
  }
  .top-pr.pr02 {
    margin-bottom: 10rem;
  }
  .top-access {
    margin-bottom: 3rem;
  }
  .sample-list .sample {
    width: 50%;
  }
  .sample-list.sample-list-blur .sample {
    width: 33.333%;
  }
  .sample-msg-box-wrap {
    width: 90%;
    height: 90%;
    padding-top: 0rem;
    margin: auto;
}
.sample-msg-box {
  padding: 5rem 3rem;
}
.sample-msg {
  font-size: 2rem;
}
.samplepopup figure span,
.drift-zoom-pane.drift-inline {
  display: none;
}
  .tcc02 {
    transform: translateY(50px);
  }
	.swiper-slide.slide03 {
	background-position:top 50% right 34%;
	}
.privacy-wrap {
	padding-top:1rem;
}

}



@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}