@charset "UTF-8";


/*-----------------------------------------------------------

  =Global Layout

-----------------------------------------------------------*/
html {
  font-family: 'Archivo', 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  color: #fff;
}
body{
  background: #0b0b0b;
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: 'palt' 1;
  letter-spacing: 0.05em;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
  width: 100%;
}
@media only screen and ( max-width:1024px) {
  body{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px){
  body {
    min-width: 320px;
  }
}
/* Archivo */
.f-en,.link-btn,.lang-nav,.date,.wp-pagenavi{
  font-family: 'Archivo', 'Noto Sans JP', sans-serif;
}



/* Frame Format
---------------------------------*/
#wrapper {
  position: relative;
  width: 100%;
}
.inner {
  max-width: 1320px;
  margin: 0px auto;
  padding: 0 20px;
}
.wrap {
  padding: 140px 0;
}

@media screen and ( max-width:1160px) {
  .inner {
    max-width: 1120px;
  }
}
@media screen and ( max-width:1024px) {
  .wrap {
    padding:80px 0 ;
  }
}




/* Font Format
---------------------------------*/
.sec-heading{
  margin-bottom:50px;
}
.sec-heading .en{
  font-size: 7.6rem;
  font-weight: 700;
  line-height: 1.44;
  position: relative;
  letter-spacing: -.02em;
}
.sec-heading .en .en-small{
  font-size: 4rem;
}
.sec-heading .jp{
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding-left: 30px;
  position: relative;
}
.sec-heading .jp::before {
  content: '';
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
  position: absolute;
  background-color: #fff;
}
@media screen and ( max-width:768px) {
  .sec-heading{
    margin-bottom:30px;
  }
  .sec-heading .en{
    font-size:2.8rem;
  }
  .sec-heading .en .en-small{
    font-size: 2rem;
  }
  .sec-heading .jp{
    font-size:1.2rem;
    line-height: 1.5;
    padding-left: 20px;
  }
  .sec-heading .jp::before {
    width: 10px;
  }
}

/* Loding
---------------------------------*/
.loading {
  background: #0b0b0b;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
 }
 .loading .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 99;
  width: 200px;
}
/* body.load .loading{
  background: none;
} */
/* fadeUpをするアイコンの動き */
.loading-fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(30px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
@media screen and ( max-width:960px) {
  .loading .logo {
    width: 120px;
  }
}



/* ----------------------------------------------------
  Header
-------------------------------------------------------
*/
/* #header .logo {
  position: fixed;
  top: 250px;
  right: calc(50% - 200px);
  width: 400px;
  margin:0 auto;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
} */
#header{
  width: 100%;
  padding: 0 2em;
  height: 160px;
  z-index: 2;
}
.header-in {
  height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#header .logo {
  width: 120px;
  height: auto;
}
/* .main-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(11,11,11,0);
  z-index: 1;
  transition: all ease .75s;
}
body.mv-scroll .main-visual::before {
  background-color: rgba(11,11,11,0.8);
} */
@media screen and (max-width:768px) {
  #header{
    padding: 0 20px;
    height: 90px;
  }
  .header-in {
    height: 90px;
  }
  #header .logo {
    width: 80px;
    height: auto;
  }
}
#gnav {
  padding:0 80px 0 0;
  letter-spacing: .04em;
  line-height: 1.6;
  opacity: 1;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gnav ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  text-shadow: 2px 3px 5px rgba(0,0,0,0.7);
}
#gnav ul li a {
  cursor: pointer;
  position: relative;
  color: #fff;
  display: block;
  font-size: 1.6rem;
  margin: 1em 1em;
}
#gnav .nav-item a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: #ddd;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
#gnav .nav-item a:hover{
  opacity:1;
  color: rgba( 255, 255, 255, 0.5);
}
#gnav .nav-item a:hover:after{
  -webkit-transform-origin:left top;
  transform-origin:left top;
  -webkit-transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform:scaleX(1);transform:scaleX(1);
}
#gnav li.current a::after {
  opacity:1;
  color:#333;
  -webkit-transform-origin:left top;
  transform-origin:left top;
  -webkit-transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform:scaleX(1);transform:scaleX(1);
 }
 #header.scroll #gnav{
  opacity: 0;
}

.button_container {
  display:block;
  z-index:10000 !important;
  position:fixed;
  top:40px;
  right:20px;
  height:70px;
  width:70px;
  cursor:pointer;
  background-color:#fff;
  border-radius: 50%;
  box-shadow: 0 0 3px 3px rgb(0 0 0 / 10%);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button_container:hover,
.button_container.active {
  background-color:#fff;
  border-radius: 50%;
  box-shadow: 0 0 3px 3px rgb(0 0 0 / 10%);
}
.button_container.active .top {
  transform:translateY(7px) translateX(0) rotate(45deg);
  background:#111;
}
.button_container.active .middle {
  opacity:0;
  background:#111;
}
.button_container.active .bottom {
  transform:translateY(-7px) translateX(0) rotate(-45deg);
  background:#111;
}
.button_container span {
  background:#111;
  border:none;
  height:1px;
  width:20px;
  position:absolute;
  top:28px;
  left:50%;
  margin-left:-10px;
  transition:all .35s ease;
  cursor:pointer;
}
.button_container span:nth-of-type(2) {  top:35px; }
.button_container span:nth-of-type(3) {  top:42px; }
.overlay {
  position:fixed;
  z-index:999 !important;
  background:#000;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s, visibility .35s, height .35s;
}
.overlay.open {
  opacity:1;
  visibility:visible;
  height:100%;
  overflow: auto;
}
.overlay.open li { animation:fadeInBottom .5s ease forwards; animation-delay:.1s; }
.overlay.open li:nth-of-type(2) {  animation-delay: .2s; }
.overlay.open li:nth-of-type(3) {  animation-delay: .3s; }
.overlay.open li:nth-of-type(4) {  animation-delay: .4s; }
.overlay.open li:nth-of-type(5) {  animation-delay: .5s; }
.overlay.open li:nth-of-type(5) {  animation-delay: .6s; }
.overlay.open li:nth-of-type(6) {  animation-delay: .7s; }

@keyframes fadeInBottom {
  0% { opacity:0; left:30%; }
  100% { opacity:1; left:0; }
}
.overlay nav {
  display:block;
  position:relative;
  height:70%;
  top:50%;
  transform:translateY(-50%);
  font-size:42px;
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing:-.02em;
  text-align:center;
}
.overlay ul {
  padding:0;
  margin:0 auto;
  display:inline-block;
  position:relative;
  height:100%;
}
.overlay ul li {
  display:block;
  color:#fff;
  height:16.6%;
  height:calc(100% / 6);
  position:relative;
  opacity:0;
}
.overlay ul li a {
  display:inline-block;
  color:#fff;
  text-decoration:none;
}
.overlay ul li a:hover {
  color:#666;
}
@media only screen and (max-width: 1024px) {
  .button_container {
    top:20px;
    height:50px;
    width:50px;
  }
  .button_container span {
    top:18px;
  }
  .button_container span:nth-of-type(2) {  top:25px; }
  .button_container span:nth-of-type(3) {  top:32px; }
  #gnav{
    display: none;
  }
  .overlay nav {
    font-size:26px;
    font-size: 2.6rem;
  }
}





/* ----------------------------------------------------
  Top
-------------------------------------------------------
*/



/* Top Mcb
---------------------------------*/
#p-top-mcb{
  z-index: 2;
  transition: all ease .45s;
  position: relative;
  overflow: hidden;
  padding:20px 0 120px;
}
#p-top-mcb::before{
  position: absolute;
  top: 0;
  left: 45%;
  content: "Motion Control Beam";
  background: linear-gradient(0deg, rgba(11, 11, 11, 1), rgba(37, 37, 37, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0,0,0,0);
  font-size:18rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Archivo',sans-serif;
  letter-spacing: -.02em;
  white-space: nowrap;
  opacity: .9;
}
#p-top-mcb .swiper-wrapper{
  transition-timing-function: linear;
}
#p-top-mcb .p-top-mcb-item img{
  border-radius: .4rem;
}
#p-top-mcb .catch-copy{
  font-size:2.6rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom:30px;
}
#p-top-mcb .catch-copy span{
  display: inline-block;
  background: linear-gradient(#fff,#fff) 0 100%/100% 2px no-repeat;
}
.mcb-movie{
  max-width: 960px;
  margin:40px auto;
}
.sec-mcb-sub-heading{
  background: #242424;
  border-radius: 0.3rem;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
  margin-top: 80px;
  padding: 14px 10px 14px 16px;
  position: relative;
}
.sec-mcb-sub-heading::before {
  background: #fff;
  content: "";
  position: absolute;
  left: 0px;
  height: 20px;
  width: 2px;
  top: 50%;
  transform: translateY(-50%);
}
.mcb-effect-list{
  margin-top:30px;
}
.mcb-effect-list li{
  background-color: #fff;
  border-radius: .4rem;
  color:#111;
  padding:30px 0px;
  text-align: center;
}
.mcb-effect-list .row {
  width: 49%;
}
.mcb-effect-list .row:nth-child(odd) {
  margin: 0 1% 0 0;
}
.mcb-effect-list .row:nth-child(even) {
  margin: 0 0 0 1%;
}
.mcb-effect-list__ttl{
  font-size: 2rem;
  font-weight: 500;
  margin-bottom:12px;
}
.mcb-effect-list__txt{
  background-color: #111;
  border-radius: 36px;
  color:#fff;
  display: inline-block;
  padding:8px 20px;
  font-size: 1.6rem;
  line-height: 1.44;
  font-weight: 500;
}
@media screen and (max-width:768px) {
  #p-top-mcb::before{
    font-size:10rem;
  }
  #p-top-mcb .catch-copy{
    font-size:1.8rem;
    margin-bottom:30px;
  }
  .mcb-movie{
    margin:25px auto;
  }
  .sec-mcb-sub-heading{
    font-size: 1.6rem;
    margin-bottom: 16px;
    margin-top: 50px;
  }
  .mcb-effect-list{
    margin-top:30px;
  }
  .mcb-effect-list li{
    padding:20px 0px;
  }
  .mcb-effect-list .row {
    width: 100%;
  }
  .mcb-effect-list .row:nth-child(odd) {
    margin: 0 0 0 0;
  }
  .mcb-effect-list .row:nth-child(even) {
    margin: 20px 0 0 0;
  }
  .mcb-effect-list__ttl{
    font-size: 1.4rem;
    margin-bottom:12px;
  }
  .mcb-effect-list__txt{
    padding:6px 12px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width:1000px) {
  #p-top-mcb .table-scroll.scroll-hint{
    overflow: hidden !important;
  }
}
#p-top-mcb table{
  color:#111;
  font-size: 1.4rem;
  line-height: 1.44;
  /* width: 100%; */
  width: 1280px;
  border-top: 1px solid #ddd;
  background-color: #fff;
}
#p-top-mcb table thead th {
  background: #f5f5f5;
  padding: 1em 1.2em;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  width: 25%;
}
#p-top-mcb table thead th:last-child {
  border-right: none;
}
#p-top-mcb table tbody td {
  padding: 1em 1.2em;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
  letter-spacing: .1em;
}
#p-top-mcb table tbody td:last-child {
  border-right: none;
}
#p-top-mcb .paragraph-list{
  margin-top:140px;
  font-size:1.4rem;
}
@media screen and (max-width:768px) {
  .table-scroll {
    padding-bottom: 1.4em;
  }
  #p-top-mcb table{
    font-size: 1.2rem;
    width: 980px;
  }
  #p-top-mcb .paragraph-list{
    margin-top:90px;
    font-size:1.2rem;
  }
  #p-top-mcb .table-scroll.scroll-hint{
    overflow-x: scroll !important;
    overflow-y: hidden !important;
  }
}



.entry-list{
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
.entry-list__item {
  position: relative;
}
.entry-list__item > a{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.entry-list__thumb{
  overflow: hidden;
  border-radius: .3rem;
}
.entry-list__thumb .thumbnail{
  aspect-ratio: 3 / 2;
}
.entry-list__thumb .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: .3rem;
}
.entry-list__item .entry-list__body{
  margin-top:24px;
}
.entry-list__item .entry-list__ttl{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  overflow: hidden;
}
.entry-date {
  margin-bottom: 10px;
  line-height: 1.22;
}
.entry-date .date {
  opacity: .8;
  font-size: 1.2rem;
  letter-spacing: .1em;}

@media screen and (max-width:768px) {
  .entry-list.col-3 .row{
    width: 100%;
    margin:0;
  }
  .entry-list.col-3 .row:nth-of-type(n+2) {
    margin-top: 36px !important;
  }
  /* .entry-list.col-3 .entry-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .entry-list__thumb{
    width: 40%;
  }
  .entry-list__thumb .thumbnail{
    aspect-ratio: 3 / 2;
  }
  .entry-list__item .entry-list__body{
    width: 54%;
    margin-top:0;
  } */
  .entry-list__item .entry-list__ttl{
    font-size: 1.4rem;
  }
}



#footer{
  border-top: 1px solid #222;
  padding:120px 0;
  text-align: center;
}
.westail-logo{
  max-width: 220px;
  margin:0 auto 30px;
}
#footer .address {
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer-bnr{
  margin:60px 0;
}
.footer-bnr img{
  border-radius: .3rem;
}
.copyright {
  text-align: center;
  font-size: 1.2rem;
}




#bp-prochop{
  position: relative;
  overflow: hidden;
  padding: 20px 0 120px;
}
#bp-prochop::before{
  position: absolute;
  top: 0;
  left: 45%;
  content: "Pro Shop";
  background: linear-gradient(0deg, rgba(11, 11, 11, 1), rgba(37, 37, 37, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0,0,0,0);
  font-size:18rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Archivo',sans-serif;
  letter-spacing: -.02em;
  white-space: nowrap;
  opacity: .9;
  z-index: -1;
}
.pro-shop-macars{
  margin-bottom:60px;
}
.prosho-subheading{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
  padding-top: 30px;
}
.prosho-subheading:before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  position: absolute;
  background: #e71f19;
  top: 0;
  left: 0;
}
#bp-prochop .nav-position{
  margin-bottom:80px;
}
@media screen and (max-width: 768px) {
  #bp-prochop{
    position: relative;
    overflow: hidden;
    padding: 20px 0 70px;
  }
  #bp-prochop::before {
    font-size: 10rem;
}
  .prosho-subheading{
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
  }
  .prosho-subheading:before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    position: absolute;
    background: #e71f19;
    top: 0;
    left: 0;
  }
}


#bp-prochop table {
  width: 100%;
  border-top: 1px solid #222;
  line-height: 1.66;
}
#bp-prochop table tr{
  border-bottom: 1px solid #222;
}
#bp-prochop table th {
  padding:20px 30px;
  text-align:center;
  background: #191a1b;
  vertical-align: middle;
}
#bp-prochop table td{
  padding:20px 30px;
  text-align:left;
  vertical-align: middle;
}
#bp-prochop table a{
  color:#fff;
}
#bp-prochop table a span{
  background-image: linear-gradient(#fff, #fff);
  background-position: 0% 100%;
  background-size: 100% 1px;;
  background-repeat: no-repeat;
  transition: background-size 0.6s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
#bp-prochop table a:hover span{
  background-position: 100% 100%;
  background-size: 0% 1px;
}
#bp-prochop table th{
  font-size:18px;
  font-weight: bold;
  width:35%;
}
#bp-prochop table td{
  width:65%;
}
@media screen and (max-width: 768px) {
  #bp-prochop table th{
    font-size:18px;
    width:100%;
    display: block;
    padding:16px 0px;
  }
  #bp-prochop table td{
    width:100%;
    display: block;
    padding:16px 0px;
  }
}
