@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #707070;
}

.hero {
  background: #f7f7fa;
}
@media only screen and (max-width: 768px) {
  .hero {
    margin: 0 0 30px;
    padding: 20px 0 30px;
  }
}
@media only screen and (min-width: 769px) {
  .hero {
    margin: 0 0 65px;
    padding: 35px 0;
  }
}
.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .hero .container {
    margin: 0;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 769px) {
  .hero .container {
    max-width: 1200px;
    width: calc(100% - 35px);
    margin: 0 auto;
    padding: 0;
  }
}
.hero .logo_container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .hero .logo_container {
    flex-direction: column;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .hero .logo_container {
    align-items: center;
  }
}
.hero .logo_container .name {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 769px) {
  .hero .logo_container .name {
    margin-right: 20px;
  }
}
.hero .logo_container .name img {
  height: auto;
}
@media only screen and (max-width: 768px) {
  .hero .logo_container .name img {
    width: 48%;
  }
}
@media only screen and (min-width: 769px) {
  .hero .logo_container .name img {
    width: 60%;
  }
}
.hero .logo_container .pic {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .hero .logo_container .pic {
    margin: 20px 0 10px;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .hero .logo_container .pic .item {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 769px) {
  .hero .logo_container .pic .item {
    margin-right: 15px;
  }
}
.hero h1 {
  color: #000;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .hero h1 {
    font-size: 25px;
    margin: 5px 0 0;
    padding: 0;
  }
}
@media only screen and (min-width: 769px) {
  .hero h1 {
    font-size: 30px;
    line-height: 35px;
    margin: 10px 0 0;
    padding: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .hero h1 {
    line-height: 100%;
    margin: 7px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .hero .link_container {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 0;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .hero .link_container {
    display: flex;
  }
}
.hero .link {
  border: #1D3176 solid 2px;
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .hero .link {
    width: 49%;
    height: 43px;
    padding: 0 0 0 10px;
  }
}
@media only screen and (min-width: 769px) {
  .hero .link {
    width: 200px;
    max-width: 200px;
    height: 45px;
    margin-left: 10px;
    padding: 0 0 0 20px;
  }
  .hero .link:hover {
    background: #fff;
  }
}
.hero .link::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  border-radius: 50px;
  background: #1D3176;
}
@media only screen and (max-width: 768px) {
  .hero .link::before {
    width: 18px;
    height: 18px;
    right: 9px;
  }
}
@media only screen and (min-width: 769px) {
  .hero .link::before {
    height: 22px;
    right: 22px;
    width: 22px;
  }
}
.hero .link:after {
  position: absolute;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
}
@media only screen and (max-width: 768px) {
  .hero .link:after {
    width: 4px;
    height: 4px;
    right: 16px;
  }
}
@media only screen and (min-width: 769px) {
  .hero .link:after {
    width: 5px;
    height: 5px;
    right: 31px;
  }
}
.hero .link a {
  color: #1D3176;
  text-decoration: none;
  font-weight: bold;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .hero .link a {
    font-size: 13px;
  }
}
@media only screen and (min-width: 769px) {
  .hero .link a {
    font-size: 17px;
  }
}
.hero .link a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero .link .link_text {
  position: absolute;
  left: 16px;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .wrap {
    margin: 20px auto;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 769px) {
  .wrap {
    max-width: 1200px;
    width: calc(100% - 35px);
    margin: 0 auto;
    padding: 0;
  }
}

.container {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 769px) {
  .container {
    justify-content: space-between;
    margin: 0 0 60px;
  }
}

.pickup {
  background: #f7f7fa;
  border: #d7d5e3 solid 1px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .pickup {
    width: 100%;
    padding: 20px 20px 10px;
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 769px) {
  .pickup {
    width: 72.5%;
    padding: 20px 20px 10px;
  }
}

.pickup_ttl {
  font-weight: 600;
  color: #161616;
}
@media only screen and (max-width: 768px) {
  .pickup_ttl {
    margin: 0 0 10px;
    font-size: 17px;
  }
}
@media only screen and (min-width: 769px) {
  .pickup_ttl {
    margin: 0 0 10px 8px;
    font-size: 22px;
  }
}
.pickup_ttl span {
  color: #2A3370;
}
@media only screen and (max-width: 768px) {
  .pickup_ttl span {
    font-size: 14px;
  }
}
@media only screen and (min-width: 769px) {
  .pickup_ttl span {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .slid {
    width: 85%;
    margin: 0 auto 30px;
  }
}
@media only screen and (min-width: 769px) {
  .slid {
    max-width: 100%;
    margin: 0 auto 40px;
  }
}

.slid_item {
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .slid_item {
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 769px) {
  .slid_item {
    margin: 0 8px 10px;
  }
}
@media only screen and (min-width: 769px) {
  .slid_item img {
    width: 400px;
    height: auto;
  }
}

.slide.slick-initialized {
  display: block !important;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slide-arrow {
  position: absolute;
  top: 45%;
  margin-top: -5px;
}

.prev-arrow {
  left: -32px;
  cursor: pointer;
}
.prev-arrow:hover {
  opacity: 0.8;
}

.next-arrow {
  right: -32px;
  cursor: pointer;
}
.next-arrow:hover {
  opacity: 0.8;
}

h2 {
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
  line-height: 1.4;
  background: #122d5e;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 17px;
    padding: 10px 15px;
  }
}
@media only screen and (min-width: 769px) {
  h2 {
    font-size: 20px;
    padding: 10px 0 8px 15px;
  }
}

@media only screen and (max-width: 768px) {
  .twitter {
    width: 100%;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 769px) {
  .twitter {
    width: 25%;
  }
}
.twitter .twitter_ttl {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 15px;
  line-height: 1;
  background: #f7f7fa;
  color: #161616;
  text-align: center;
  border: none;
  border: 1px solid #e6e6e6;
}
@media only screen and (max-width: 768px) {
  .twitter .twitter_ttl {
    padding: 8px 22px;
  }
}
@media only screen and (min-width: 769px) {
  .twitter .twitter_ttl {
    padding: 8px 20px;
  }
}
.twitter .twitter_icon {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .twitter .twitter_icon {
    margin-right: 5px;
    top: -3px;
  }
}
@media only screen and (min-width: 769px) {
  .twitter .twitter_icon {
    margin-right: 3px;
    top: 0px;
  }
}
.twitter__content {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 0 15px;
  border: #D5D5D5 solid 1px;
  box-sizing: border-box;
  padding: 20px 8%;
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .twitter__content {
    grid-template-columns: 55px 1fr;
    padding: 13px 5%;
  }
}
.twitter__content:hover {
  background-color: #fafafa;
}
.twitter__icon {
  border-radius: 50%;
  overflow: hidden;
}
.twitter__text {
  font-weight: bold;
  word-break: break-all;
}
.twitter__text span {
  font-weight: normal;
  color: #1d3176;
  font-size: 0.9rem;
  display: block;
  line-height: 1;
  margin-top: 3px;
}

h4 {
  font-size: 17px;
  line-height: 1.4;
  background: #f7f7fa;
  color: #161616;
  text-align: left;
  border: none;
  border: 1px solid #e6e6e6;
}
@media only screen and (max-width: 768px) {
  h4 {
    margin: 0 0 20px;
    padding: 8px 15px;
  }
}
@media only screen and (min-width: 769px) {
  h4 {
    margin: 0 0 15px;
    padding: 8px 15px;
  }
}

.list_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list_block::after {
  content: "";
}
@media only screen and (min-width: 769px) {
  .list_block::after {
    width: 32.5%;
    height: "";
  }
}
.list_block .block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 1px;
  border: #D5D5D5 solid 1px;
}
@media only screen and (max-width: 768px) {
  .list_block .block {
    width: 100%;
    margin: 0 5px 20px;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block {
    width: 32.5%;
    margin: 0 0 16px;
  }
}
.list_block .block .thum {
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 769px) {
  .list_block .block .thum {
    width: 90px;
  }
}
@media only screen and (min-width: 1000px) {
  .list_block .block .thum {
    width: 120px;
  }
  .list_block .block .thum:hover {
    opacity: 0.8;
  }
}
.list_block .block .info {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info {
    width: 100%;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info {
    width: calc(100% - 105px);
  }
}
@media only screen and (min-width: 1000px) {
  .list_block .block .info {
    width: calc(100% - 135px);
  }
}
.list_block .block .info h3 {
  font-size: 14px;
  color: #2B2B2B;
  line-height: 20px;
  position: relative;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info h3 {
    margin: 2px 0 5px;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info h3 {
    margin: 5px 0 8px;
    height: 37px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.list_block .block .info h3 a {
  text-decoration: none;
  color: #11114d;
  cursor: pointer;
}
.list_block .block .info h3 a:hover {
  text-decoration: underline;
}
.list_block .block .info .mongon {
  padding: 0;
  font-size: 13px;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 60px;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .mongon {
    margin: 0 0 13px;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info .mongon {
    margin: 0 0 15px;
  }
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1000px) {
  .list_block .block .info .btn {
    display: flex;
    justify-content: space-between;
  }
}
.list_block .block .info .btn .order,
.list_block .block .info .btn .more {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4.5px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn .order,
  .list_block .block .info .btn .more {
    width: calc(50% - 5px);
    height: 38px;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info .btn .order,
  .list_block .block .info .btn .more {
    height: 35px;
  }
  .list_block .block .info .btn .order:first-child,
  .list_block .block .info .btn .more:first-child {
    margin: 0 0 10px;
  }
}
@media only screen and (min-width: 1000px) {
  .list_block .block .info .btn .order,
  .list_block .block .info .btn .more {
    width: calc(50% - 5px);
    min-height: 35px;
    transition: 0.3s;
    padding: 0 5px;
    line-height: 14px;
  }
  .list_block .block .info .btn .order:first-child,
  .list_block .block .info .btn .more:first-child {
    margin: 0 0 0 auto;
  }
}
.list_block .block .info .btn .order a,
.list_block .block .info .btn .more a {
  text-decoration: none;
}
.list_block .block .info .btn .order a::after,
.list_block .block .info .btn .more a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.list_block .block .info .btn .order {
  background: #DE2A2A;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn .order {
    padding: 0 5px;
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info .btn .order:hover {
    opacity: 0.8;
  }
}
.list_block .block .info .btn .order a {
  color: #fff;
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn .order a {
    line-height: 1.1;
  }
}
.list_block .block .info .btn .more {
  border: #9E9E9E solid 1.3px;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn .more {
    padding: 0 3px 0 5px;
  }
}
@media only screen and (min-width: 1000px) {
  .list_block .block .info .btn .more {
    margin: 0 0 0 auto;
  }
  .list_block .block .info .btn .more:hover {
    background: #f1f1f1;
  }
}
.list_block .block .info .btn .more a {
  color: #333;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn .more a {
    font-size: 11px;
    line-height: 1.1;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info .btn .more a {
    font-size: 12px;
  }
}
.list_block .block .info .btn .more .arrow {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn .more .arrow {
    padding-left: 18px;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info .btn .more .arrow {
    padding-left: 18px;
  }
}
.list_block .block .info .btn .more .arrow::before {
  content: "";
  background: #DE2A2A;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn .more .arrow::before {
    width: 12px;
    height: 12px;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info .btn .more .arrow::before {
    width: 13px;
    height: 13px;
  }
}
.list_block .block .info .btn .more .arrow::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  border: solid 3px transparent;
  border-left: solid 5px #ffffff;
  margin-top: -3px;
}
@media only screen and (max-width: 768px) {
  .list_block .block .info .btn .more .arrow::after {
    left: 4px;
  }
}
@media only screen and (min-width: 769px) {
  .list_block .block .info .btn .more .arrow::after {
    left: 5px;
  }
}
.list_block .soldout .thum::after {
  content: "SOLD OUT";
  font-family: "Anton";
  position: absolute;
  color: #f61500;
  font-weight: bold;
  border: #f61500 solid 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  background-color: rgba(0, 0, 0, 0.5);
  width: 96px;
  text-align: center;
  border-radius: 2px;
  font-size: 25px;
  line-height: 1;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  margin: 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .list_block .soldout .thum::after {
    width: 85px;
    font-size: 22px;
  }
}

@media only screen and (max-width: 768px) {
  .publish {
    margin: 30px 0 0;
  }
}
.banner {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .banner {
    flex-direction: column;
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 769px) {
  .banner {
    justify-content: space-between;
  }
}

.banner_item {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .banner_item {
    width: 100%;
    margin: 0 0 15px;
  }
}
@media only screen and (min-width: 769px) {
  .banner_item {
    width: 49.3%;
    height: auto;
    margin: 0 0 30px;
    overflow: hidden;
  }
  .banner_item:hover {
    opacity: 0.9;
  }
}
.banner_item .pic {
  position: absolute;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .banner_item .pic {
    left: 10px;
  }
}
@media only screen and (min-width: 769px) {
  .banner_item .pic {
    left: 3%;
  }
}
.banner_item .pic img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .banner_item .pic img {
    width: 75px;
  }
}
@media only screen and (min-width: 769px) {
  .banner_item .pic img {
    max-height: 124px;
  }
}
@media only screen and (min-width: 1000px) {
  .banner_item .pic img {
    max-height: 170px;
  }
}
.banner_item a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.pager_area {
  text-align: center;
  background: #F9F9F9;
}
@media only screen and (max-width: 768px) {
  .pager_area {
    margin: 10px 0 0;
    padding: 15px 3px 5px;
  }
}
@media only screen and (min-width: 769px) {
  .pager_area {
    margin: 10px 0 60px;
    padding: 15px 0;
  }
}

.pager_area {
  display: flex;
  justify-content: center;
  border: 1px solid #e6e6e6;
}
@media only screen and (max-width: 768px) {
  .pager_area {
    flex-wrap: wrap;
    font-size: 16px;
  }
}
@media only screen and (min-width: 769px) {
  .pager_area {
    font-size: 17px;
  }
}
.pager_area span {
  color: #444;
  background: #fff;
  border: #2A3370 solid 1px;
  transition: 0.2s ease-in-out;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ccc;
}
@media only screen and (max-width: 768px) {
  .pager_area span {
    margin: 0 4px 10px;
  }
}
@media only screen and (min-width: 769px) {
  .pager_area span {
    margin: 0 3px;
  }
}
.pager_area span a {
  text-decoration: none;
  display: block;
  padding: 2px 5px;
  color: #555;
}
.pager_area span:hover {
  cursor: pointer;
  background: #f1f1f1;
}
.pager_area span.prev {
  font-size: 30px;
  padding: 0 0 4px;
}
.pager_area span.next {
  font-size: 30px;
  padding: 0 0 4px;
}
.pager_area span.invalid {
  opacity: 0.3;
}
.pager_area .current {
  background: #e3f2f6;
  border: #A9CBD4 solid 1px;
  color: #204e78;
  font-weight: bold;
}
.pager_area .current a {
  text-decoration: none;
  color: #204e78;
}
.pager_area .current:hover {
  background: #e3f2f6;
  border: #A9CBD4 solid 1px;
  color: #204e78;
}
.pager_area .ellipsis {
  color: #2A3370;
  background: none;
  border: none;
}
.pager_area .ellipsis:hover {
  cursor: auto;
  color: #2A3370;
  background: none;
  border: none;
}

@media only screen and (max-width: 768px) {
  .product {
    margin: 40px 0 0;
  }
}
@media only screen and (min-width: 769px) {
  .product {
    margin: 40px 0 0;
  }
}
.product .inner {
  margin-top: 20px;
  padding-bottom: 40px;
  background-color: #fff;
}
.product .inner .tab_container {
  list-style: none;
  display: flex;
  margin: 0;
  border-bottom: #A7A7A7 solid 1px;
}
@media only screen and (max-width: 768px) {
  .product .inner .tab_container {
    padding: 0 0 8px;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
@media only screen and (min-width: 769px) {
  .product .inner .tab_container {
    padding: 0;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .product .inner .tab {
    color: #000;
    padding: 5px 17px;
    text-align: center;
    transition: 0.3s;
    font-size: 14px;
  }
}
@media only screen and (min-width: 769px) {
  .product .inner .tab {
    width: 233px;
    height: 45px;
    background-color: #FCFCFC;
    border-top: #A7A7A7 solid 1px;
    border-right: #A7A7A7 solid 1px;
    border-left: #A7A7A7 solid 1px;
    border-radius: 3px 3px 0 0/3px 3px 0 0;
    line-height: 45px;
    font-size: 16px;
    text-align: center;
    color: #161616;
    display: block;
    float: left;
    text-align: center;
    font-weight: 500;
    transition: all 0.2s ease;
    margin: 0 3px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
  }
  .product .inner .tab:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 3px solid #2e4e7b;
    border-right: 3px solid #2e4e7b;
    transform: rotate(45deg);
  }
}
@media only screen and (min-width: 769px) and (min-width: 769px) {
  .product .inner .tab:before {
    top: 43%;
    left: 15px;
  }
}
@media only screen and (min-width: 769px) {
  .product .inner .tab:hover {
    background: #eceff5;
  }
}
.product .inner .tab.narrow-active {
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .product .inner .tab.narrow-active {
    background: #000f7d;
    border-radius: 50px;
    color: #fff;
  }
}
@media only screen and (min-width: 769px) {
  .product .inner .tab.narrow-active {
    border-top: #2e4e7b solid 3px;
    color: #122d5e;
    transition: all 0.2s ease-out;
  }
  .product .inner .tab.narrow-active:hover {
    opacity: 1;
  }
}
.product .inner .content {
  border-top: none;
  margin: 20px 0 0;
}
.product .inner .narrow-hide {
  display: none !important;
}

.back-to-top {
  background-color: #ccc;
  border-radius: 5px;
  display: inline-block;
  position: fixed;
  transition-property: opacity;
  transition-duration: 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    height: 35px;
    right: 20px;
    width: 35px;
  }
}
@media only screen and (min-width: 769px) {
  .back-to-top {
    bottom: 50px;
    height: 40px;
    right: 50px;
    width: 40px;
  }
}
.back-to-top .fa-chevron-up {
  color: #fff;
}

.global_head {
  margin: 0;
}/*# sourceMappingURL=style.css.map */