@charset "UTF-8";
body {
  font-family: "trade-gothic-next", sans-serif, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--color-primary);
  width: 100%;
}

:root {
  --color-primary: #231815;
  --color-secondary: #ccc;
  --color-border: #ddd;
  --box-size-pc: 23.61vw;
  --box-size-sp: calc(100vw / 3);
  --box-size-insta-pc: calc((100% - 50px)/ 6);
  --box-size-insta-sp: calc((100% - 2px)/ 2);
}

.lc-u-text-danger {
  color: #E41D1B;
}

[class^=icon-], [class*=" icon-"] {
  font-family: "boemfont";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: none;
}

.shopinfo__shoplist__store--text {
  margin-top: 20px;
}

.shopinfo__line > i {
  font-size: 20px;
  margin-right: 5px;
}

/*section*/
section {
  margin-bottom: 100px;
}

#Look-section, #Item-section, #News-section, #Instagram-section, .footerWrap {
  width: calc(100vw - 240px);
}

/*text*/
a {
  text-decoration: none;
  color: var(--color-primary);
  transition: 0.5s;
}

a:hover,
button:hover {
  opacity: 0.6;
  text-decoration: none;
  cursor: pointer;
}

section.contents_section {
  margin: 80px 0;
}

section > h2 {
  font-family: "railroad-gothic-atf", sans-serif;
  font-size: 40px;
  text-align: center;
}

/* ------------ Header ------------ */
.hamburger,
.globalNavSp {
  display: none;
}

#header {
  background: #222222;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: #fff;
  box-sizing: border-box;
}

#header .header_nav_list {
  font-weight: 600;
  font-size: 15px;
}

#header .header_right {
  font-weight: 600;
  font-size: 16px;
}

.header_link_shop::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("https://media.aws.locondo.jp/royalstatic/etc/baseballfield/common/img/icon_shop_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  vertical-align: text-bottom;
}

.header_logo {
  margin-right: 80px;
  width: 150px;
}

.header_nav_list {
  display: flex;
  align-items: center;
}

.header_nav_list li {
  margin-right: 40px;
}

.header_nav_list li a,
.header_right a {
  color: #fff;
}

#header .header_nav_list .bar_left {
  border-left: 2px solid #fff;
  padding-left: 40px;
}

.header_right {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ------------ Footer ------------ */
footer {
  margin-top: 100px;
  border-top: 1px solid var(--color-border);
  background: #222;
  color: #fff;
}

.footer_description {
  width: 80%;
  margin: 80px auto 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer_description p {
  border: 1px solid #aaa;
  padding: 20px;
}

.footer_link_wrap {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .footer_link_wrap {
    flex-direction: column;
  }
}

.footer_link_list {
  width: 80%;
  margin: 40px auto 80px;
}

.footer_link_list li {
  font-size: 13px;
  line-height: 2.5;
}

footer .footer_link_list li a {
  color: #fff !important;
}

.footer_link_list li.footer_head {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer_link_list .footer_sns {
  width: fit-content;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.footer_link_list .footer_sns img {
  width: 40px;
}

.footer__copyright {
  font-size: 11px;
  color: #333;
  text-align: center;
  padding: 4px;
  background-color: #f7f7f7;
}

/* ------------ Hero Section ------------ */
#Hero-section {
  width: 100%;
  margin: 0 auto;
}

.slick-slide {
  height: auto;
  position: relative;
}

.slick-slide img {
  width: 100%;
  height: auto;
  filter: brightness(1);
}

.slider__desc-text {
  color: #fff;
  font-family: "railroad-gothic-atf", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .slider__desc-text {
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }
}
@media (min-width: 768px) {
  .slider__desc-text {
    transform: translateY(-50%);
  }
}

.slider__desc-text_top {
  font-size: 24px;
  font-weight: 600;
  font-family: "trade-gothic-next", "noto-sans-jp", sans-serif;
}

.slider__desc-text_middle {
  font-size: 83px;
  line-height: 76px;
}

.slider__desc-link {
  display: inline-block;
  background: #fff;
  margin-top: 10px;
  padding: 3px 16px;
  font-size: 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

#Hero-section .slick-dots {
  bottom: 5px;
}

#Hero-section .slick-dots li.slick-active button:before {
  color: #06c755;
}

/* ------------ Banner Section ------------ */
#Banner-section {
  width: 94%;
  margin: 0 auto 100px;
}

.banner_flex {
  display: flex;
  justify-content: space-between;
  margin: 2% 0;
}

.banner_flex > .Banner-section__bannerwrap {
  width: 49%;
}

#Banner-section img {
  border-radius: 10px;
  filter: brightness(0.8);
  width: 100%;
}
@media (min-width: 768px) {
  #Banner-section img {
    aspect-ratio: auto;
    max-height: 700px;
    object-fit: cover;
  }
}

.Banner-section__bannerwrap {
  position: relative;
}

.banner__desc-text {
  color: #fff;
  font-family: "railroad-gothic-atf", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}

.banner__desc-text_top {
  font-size: 24px;
  font-weight: 600;
  font-family: "trade-gothic-next", "noto-sans-jp", sans-serif;
}

.banner__desc-text_middle {
  font-size: 83px;
  line-height: 76px;
}

.banner__desc-link {
  display: inline-block;
  background: #fff;
  margin-top: 10px;
  padding: 3px 16px;
  font-size: 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.banner__desc-text.center {
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner__desc-text.center .banner__desc-text_top,
.banner__desc-text.center .banner__desc-text_middle {
  text-align: center;
}

.banner__desc-text.left {
  right: auto;
  top: auto;
  bottom: 0;
  left: 30px;
  text-align: left;
}

/* ------------ store Section ------------ */
#store-section {
  width: 70%;
  max-width: 1000px;
  margin: 100px auto;
  text-align: center;
}

#store-section h3 {
  font-weight: 800;
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: center;
}

#store-section .store_contents > h3 {
  text-align: left;
  margin-top: 30px;
}

.shopinfo__shoplist__store h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

#store-section .store_contents {
  margin: 40px auto 0;
  font-size: 15px;
  line-height: 2;
}

.shopinfo__shoplist__store--wrapper img {
  width: 100%;
  border-radius: 5px;
}

.shopinfo__shoplist__nav {
  padding: 0 40px 20px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
}

.store_contents .lc-u-pr-10 > svg {
  width: 22px;
  vertical-align: sub;
  margin-right: 5px;
}

.shopinfo__shoplist__nav a {
  padding: 10px;
  color: #64ae49;
  background: #f3f3f3;
  min-width: 124px;
  display: inline-block;
  text-align: center;
  margin-right: 20px;
}

.shopinfo__shoplist__nav a:hover {
  color: #E41D1B;
}

.shopinfo__shoplist__store {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #f2f2f2;
}

.shopinfo__shoplist__store li {
  width: calc(50% - 30px);
  box-sizing: border-box;
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 1.75;
  position: relative;
}

.shopinfo__shoplist__store--link {
  display: flex;
  justify-content: space-between;
}

.shopinfo__shoplist__store a.shopinfo__line {
  text-decoration: none;
  color: #06c755;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  bottom: 0;
  width: 49%;
  margin: 0;
}

.shopinfo__shoplist__store--link a {
  display: block;
  text-align: center;
  margin: 0;
  color: #2a59b6 !important;
  border: 1px solid #2a59b6;
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  font-size: 14px;
  width: 49%;
}

.shopinfo__shoplist__store--wrapper {
  margin-bottom: 10px;
}

.shopinfo__shoplist__store--detail {
  margin: 10px 0;
  font-size: 14px;
}

.shopinfo__shoplist__store--detail dt {
  width: 80px;
  color: #2a59b6;
}

/* ------------ Item Section ------------ */
#Item-section {
  width: 80%;
  margin: 100px auto;
}

.Item-section__item_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.Item-section__item_list li {
  width: 15.5%;
}

.Item-section__item_list li img {
  filter: brightness(0.97);
  border-radius: 5px;
}

.Item-section__item_list li .list-item-title {
  font-size: 11px;
  margin: 8px 0 4px;
  color: #777;
}

.Item-section__item_list li .list-item-price {
  font-size: 15px;
  font-weight: 600;
}

.viewAll_wrap {
  display: flex;
  justify-content: flex-end;
}

.link_viewAll {
  display: inline-block;
  font-family: "railroad-gothic-atf", sans-serif;
  border-bottom: 1px solid #666;
  margin: 20px 0 0 auto;
}

/* ------------ Instagram Section ------------ */
#Instagram-section {
  width: 80%;
  margin: 100px auto;
}

#list-instagram {
  margin-top: 20px;
}

#list-instagram ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

#list-instagram li {
  width: var(--box-size-insta-pc);
}

#list-instagram li {
  width: calc((100% - 40px) / 6);
  height: calc((100vw - 40px) / 6);
  overflow: hidden;
  border: 1px solid #eee;
  box-sizing: border-box;
}

#list-instagram li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*icon*/
#instagram_template li {
  position: relative;
}

#instagram_template li:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTIgMi4xNjNjMy4yMDQgMCAzLjU4NC4wMTIgNC44NS4wNyAzLjI1Mi4xNDggNC43NzEgMS42OTEgNC45MTkgNC45MTkuMDU4IDEuMjY1LjA2OSAxLjY0NS4wNjkgNC44NDkgMCAzLjIwNS0uMDEyIDMuNTg0LS4wNjkgNC44NDktLjE0OSAzLjIyNS0xLjY2NCA0Ljc3MS00LjkxOSA0LjkxOS0xLjI2Ni4wNTgtMS42NDQuMDctNC44NS4wNy0zLjIwNCAwLTMuNTg0LS4wMTItNC44NDktLjA3LTMuMjYtLjE0OS00Ljc3MS0xLjY5OS00LjkxOS00LjkyLS4wNTgtMS4yNjUtLjA3LTEuNjQ0LS4wNy00Ljg0OSAwLTMuMjA0LjAxMy0zLjU4My4wNy00Ljg0OS4xNDktMy4yMjcgMS42NjQtNC43NzEgNC45MTktNC45MTkgMS4yNjYtLjA1NyAxLjY0NS0uMDY5IDQuODQ5LS4wNjl6bTAtMi4xNjNjLTMuMjU5IDAtMy42NjcuMDE0LTQuOTQ3LjA3Mi00LjM1OC4yLTYuNzggMi42MTgtNi45OCA2Ljk4LS4wNTkgMS4yODEtLjA3MyAxLjY4OS0uMDczIDQuOTQ4IDAgMy4yNTkuMDE0IDMuNjY4LjA3MiA0Ljk0OC4yIDQuMzU4IDIuNjE4IDYuNzggNi45OCA2Ljk4IDEuMjgxLjA1OCAxLjY4OS4wNzIgNC45NDguMDcyIDMuMjU5IDAgMy42NjgtLjAxNCA0Ljk0OC0uMDcyIDQuMzU0LS4yIDYuNzgyLTIuNjE4IDYuOTc5LTYuOTguMDU5LTEuMjguMDczLTEuNjg5LjA3My00Ljk0OCAwLTMuMjU5LS4wMTQtMy42NjctLjA3Mi00Ljk0Ny0uMTk2LTQuMzU0LTIuNjE3LTYuNzgtNi45NzktNi45OC0xLjI4MS0uMDU5LTEuNjktLjA3My00Ljk0OS0uMDczem0wIDUuODM4Yy0zLjQwMyAwLTYuMTYyIDIuNzU5LTYuMTYyIDYuMTYyczIuNzU5IDYuMTYzIDYuMTYyIDYuMTYzIDYuMTYyLTIuNzU5IDYuMTYyLTYuMTYzYzAtMy40MDMtMi43NTktNi4xNjItNi4xNjItNi4xNjJ6bTAgMTAuMTYyYy0yLjIwOSAwLTQtMS43OS00LTQgMC0yLjIwOSAxLjc5MS00IDQtNHM0IDEuNzkxIDQgNGMwIDIuMjEtMS43OTEgNC00IDR6bTYuNDA2LTExLjg0NWMtLjc5NiAwLTEuNDQxLjY0NS0xLjQ0MSAxLjQ0cy42NDUgMS40NCAxLjQ0MSAxLjQ0Yy43OTUgMCAxLjQzOS0uNjQ1IDEuNDM5LTEuNDRzLS42NDQtMS40NC0xLjQzOS0xLjQ0eiIvPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  right: 10px;
  filter: contrast(0.5);
  mix-blend-mode: difference;
  transition: 0.5s;
}

/*--------------------------------------------
SP style
--------------------------------------------*/
@media screen and (max-width: 1023px) {
  .footer__navList {
    display: flex;
    row-gap: 10px;
    column-gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer__nav_title {
    width: 100%;
  }
  .footer__nav_node::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body.active {
    overflow-y: hidden;
  }
  h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .gnav__nav_node a {
    font-size: 30px;
  }
  #Look-section,
  #Item-section,
  #News-section,
  #Instagram-section {
    width: 94%;
    margin: 60px auto;
  }
  #Banner-section img {
    object-fit: cover;
  }
  .banner__desc-text_top {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 5px;
  }
  .banner__desc-text_middle {
    font-size: 34px;
    line-height: 1;
  }
  .banner__desc-text.left {
    left: 12px;
  }
  .banner__desc-link {
    font-size: 14px;
  }
  #store-section,
  #SizeGuide-section,
  #Partners-section {
    width: 90%;
  }
  .banner_flex {
    flex-wrap: wrap;
  }
  .banner_flex > .Banner-section__bannerwrap {
    width: 100%;
    margin-top: 4%;
  }
  /* ------------ SP_Header ------------ */
  .header_nav_list,
  .header_right {
    display: none;
  }
  .header_logo {
    max-width: 32%;
  }
  #header .header_right {
    font-size: 14px;
  }
  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 10px;
    top: 10px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 34px;
    height: 2px;
    left: 0;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    border: none;
    filter: drop-shadow(0px 0px 2px #d5d5d5);
  }
  .hamburger span:nth-child(1) {
    top: 16px;
  }
  .hamburger span:nth-child(2) {
    top: 24px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    background: #fff;
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  nav.globalNavSp {
    display: block;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    color: #fff;
    background: #101010;
    text-align: center;
    height: 100vh;
    height: -webkit-fill-available;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.6s ease;
  }
  nav.globalNavSp > ul {
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 100px;
  }
  nav.globalNavSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  .globalNavSp .header_link_shop::before {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    vertical-align: text-bottom;
  }
  nav.globalNavSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalNavSp ul li a {
    text-align: left !important;
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
    padding: 30px;
    text-align: center;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 100;
  }
  nav.globalNavSp.active {
    opacity: 100;
    visibility: visible;
  }
  body.active {
    overflow-y: hidden;
  }
  nav.globalNavSp .stores li a {
    font-size: 16px;
    padding: 5px 30px 0 70px;
  }
  /* ------------ SP_Footer ------------ */
  footer {
    margin-top: 0;
  }
  /* ------------ SP_Hero Section ------------ */
  .slick-slide img {
    height: 100vw;
    object-fit: cover;
  }
  .slider__desc-text_middle {
    font-size: 34px;
    line-height: 1;
  }
  .slider__desc-text_top {
    font-size: 16px;
  }
  .slider__desc-text {
    bottom: 0;
  }
  /* ------------ SP_Store Section ------------ */
  #store-section {
    margin: 100px auto 0;
    overflow: hidden;
  }
  .shopinfo__shoplist__store li {
    width: 100%;
  }
  .shopinfo__shoplist__store--link a {
    padding: 10px;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
  }
  /* ------------ SP_Instagram Section ------------ */
  #list-instagram ul {
    gap: 0;
  }
  #list-instagram li {
    width: calc((100% - 4px) / 2);
    height: calc((100vw - 4px) / 2);
    margin-bottom: 0;
  }
}
/*--------------------------------------------
	Animation
--------------------------------------------*/
.animation-siteLogo-show {
  opacity: 0;
  animation: siteLogo-show;
}

@keyframes siteLogo-show {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.animation-siteLogo-show {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 0.52, 0.35, 0.99);
  animation-delay: 0.5s;
}

.animation-heroImage-show {
  animation: heroImage_load;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 0.52, 0.35, 0.99);
}

@keyframes heroImage_load {
  0% {
    opacity: 0.6;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ------------ BrandList Section ------------ */
#BrandList-section ul {
  display: grid;
  width: 94%;
  margin: 20px auto 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) {
  #BrandList-section ul {
    width: fit-content;
    grid-template-columns: repeat(4, 1fr);
  }
}/*# sourceMappingURL=baseballfield_style.css.map */