@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@font-face {
  font-family: "pref";
  font-display: swap;
  src: url("../fonts/pres.woff2") format("woff2");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  color: #111;
  line-height: 1.4;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 2;
  }
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

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

@media all and (max-width: 750px) {
  .pcbr {
    display: none;
  }
}

.spbr {
  display: none;
}
@media all and (max-width: 750px) {
  .spbr {
    display: block;
  }
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  display: block;
  width: 100%;
}
.smenu .nav_top1 {
  text-align: center;
  background: #F5F5F5;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  padding: 11px 0;
  box-sizing: border-box;
  z-index: 120;
  position: relative;
  transition: all 0.3s ease;
}
.smenu .nav_top1 a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  position: relative;
}
.smenu .nav_top1 a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #333;
  transition: all 0.3s ease;
  transform-origin: center right;
}
.smenu .nav_top1 a:hover:before {
  width: 0;
}
@media all and (max-width: 767px) {
  .smenu .nav_top1 {
    font-size: 1rem;
    padding: 3px 0;
  }
  .smenu .nav_top1 a:before {
    bottom: 4px;
  }
}

.scr .nav_top1 {
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0;
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -15px;
  margin-left: -72.5px;
  z-index: 110;
  transition: all 0.3s ease;
}
.logo:hover {
  opacity: 0.6;
}
.logo img {
  height: 30px;
  transition: all 0.3s ease;
}
@media all and (max-width: 767px) {
  .logo img {
    height: 24px;
    width: auto;
  }
  .logo {
    position: relative;
    left: unset;
    top: unset;
    margin-top: unset;
    margin-left: unset;
    z-index: 110;
  }
}

i, em {
  font-style: normal;
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media all and (max-width: 767px) {
  #nav-drawer {
    align-items: center;
  }
}

.nav_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
  gap: 0 20px;
}
.nav_left .accoount {
  width: 16px;
  z-index: 110;
  position: relative;
}
.nav_left .cart {
  width: 18px;
  z-index: 110;
  position: relative;
}
@media all and (max-width: 767px) {
  .nav_left .accoount {
    display: none;
  }
  .nav_left .cart {
    display: none;
  }
}

.nav_btm {
  width: 100%;
  text-align: center;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  padding: 31px 40px;
  z-index: 110;
  position: relative;
}
.nav_btm .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 6px;
  font-size: 1.2rem;
  z-index: 110;
  position: relative;
}
.nav_btm .search input {
  width: 0;
  transition: all 0.3s ease;
  background: #f5f5f5;
  padding: 8px;
  opacity: 0;
  box-sizing: border-box;
  border: none;
  box-shadow: none;
  font-size: unset;
  margin-bottom: unset;
}
.nav_btm .search .serr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}
.nav_btm .search.open input {
  width: 200px;
  opacity: 1;
}
.nav_btm .search i {
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/glasses.png") center center/cover;
  background-size: 16px auto;
}
.nav_btm .search button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 3px;
  padding-left: 9px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.nav_btm .search button:hover {
  opacity: 0.6;
}
.nav_btm .search_sp {
  display: none;
}
@media all and (max-width: 767px) {
  .nav_btm .search {
    display: none;
  }
  .nav_btm {
    padding: 16px 20px;
  }
  .nav_btm .search_pc {
    display: none;
  }
  .nav_btm .search_sp {
    display: block;
    padding: 0 0 20px 0;
    box-sizing: border-box;
  }
  .nav_btm .search input {
    width: calc(100% - 60px);
    opacity: 1;
  }
  .nav_btm .search.open input {
    width: calc(100% - 60px);
    opacity: 1;
  }
}

#nav-open {
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.5s ease;
  display: inline-block;
  position: relative;
  z-index: 110;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 1px; /*線の太さ*/
  width: 16px; /*長さ*/
  border-radius: 10px;
  background: #000;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open em {
  font-size: 1.2rem;
  padding-left: 26px;
  box-sizing: border-box;
  position: relative;
  top: -5px;
}
#nav-open span:before {
  bottom: -6.5px;
}
#nav-open span:after {
  bottom: -13px;
}
@media all and (max-width: 767px) {
  #nav-open {
    margin-left: 0;
    width: 45px;
    height: 45px;
    padding: 13px 10.5px;
    position: absolute;
    right: 10px;
    top: 8px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    width: 25px; /*長さ*/
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-open em {
    display: none;
  }
}

#nav-close {
  display: block;
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  top: 0;
  right: 0;
  max-width: none; /*最大幅（調整してください）*/
  height: 100%;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 100;
  width: 100%;
  display: block;
  text-align: center;
  padding-top: 130px;
  background: white;
}
#nav-content .menus {
  display: inline-block;
  margin-top: 60px;
}
#nav-content .menus .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 30px;
}
#nav-content .menus a {
  display: block;
  text-decoration: none;
  text-align: left;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  font-size: 1.4rem;
  margin-right: 0;
}
#nav-content .menus a:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}
#nav-content .menus a:hover:before {
  width: 100%;
}
#nav-content .menus a em {
  font-family: "Marcellus", serif;
}
#nav-content a {
  text-decoration: none;
  font-size: 1.4rem;
  margin-right: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  font-weight: bold;
}
#nav-content a:hover {
  color: #999;
}
#nav-content #appsItemCategoryTag {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  max-width: 930px;
}
#nav-content #appsItemCategoryTag .appsItemCategoryTag_lowerchild {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5px;
}
#nav-content #appsItemCategoryTag .appsItemCategoryTag_lowerchild a {
  font-size: 1.2rem;
}
@media all and (max-width: 1000px) {
  #nav-content {
    padding-top: 100px;
  }
  #nav-content .menus {
    margin-top: 0;
  }
  #nav-content #appsItemCategoryTag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 90%;
    margin: 0 auto;
  }
}
@media all and (max-width: 767px) {
  #nav-content {
    padding-top: 40px;
  }
  #nav-content a {
    font-size: 1.4rem;
    padding: 10px 0;
  }
  #nav-content .tx1 {
    padding: 20px 0;
  }
  #nav-content .contact {
    margin-top: 20px;
  }
  #nav-content .menus {
    margin-top: 42px;
    display: block;
    padding: 0 20px;
    margin-bottom: 42px;
    box-sizing: border-box;
  }
  #nav-content .menus .in {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 10px;
  }
  #nav-content .menus a {
    border-bottom: 1px dashed #ccc;
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: bold;
  }
  #nav-content .menus a:before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: all 0.3s ease;
  }
  #nav-content .menus a:hover:before {
    width: 100%;
  }
  #nav-content .menus a em {
    font-family: "Marcellus", serif;
  }
  #nav-content .menus ul.appsItemCategoryTag_lowerchild {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 8px;
  }
  #nav-content .menus ul.appsItemCategoryTag_lowerchild a {
    font-size: 1.2rem;
    padding: 2px 0;
    border-bottom: none;
    font-weight: normal;
  }
  #nav-content #appsItemCategoryTag {
    display: block;
    flex-wrap: wrap;
    gap: 0 40px;
  }
}

#nav-input:checked ~ #nav-close {
  visibility: visible;
  opacity: 1;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
}
#nav-input:checked ~ #nav-open span {
  transform: rotate(40deg);
  top: 7px;
}
@media all and (max-width: 767px) {
  #nav-input:checked ~ #nav-open span {
    top: 24px;
  }
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(100deg);
}
#nav-input:checked ~ #nav-open span:after {
  right: -1000px;
  opacity: 0;
}

.nav-unshown {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  position: relative;
}
footer .ft1, footer .ft2 {
  position: relative;
  z-index: 2;
}

.ttl_bx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 20px;
}
.ttl_bx .eg {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 3.2rem;
  position: relative;
  line-height: 1;
  padding-right: 20px;
}
.ttl_bx .eg:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 30px;
  background: #D0D0D0;
  transform: rotate(20deg);
}
.ttl_bx h2 {
  font-size: 1.6rem;
  line-height: 1;
  padding-left: 20px;
  font-weight: normal;
  position: relative;
  top: -4px;
}
@media all and (max-width: 767px) {
  .ttl_bx {
    display: block;
  }
  .ttl_bx .eg {
    font-size: 2.2rem;
    padding-right: 20px;
  }
  .ttl_bx .eg:before {
    content: none;
  }
  .ttl_bx h2 {
    font-size: 1.2rem;
    line-height: 1;
    padding-left: 0;
    margin-top: 12px;
  }
}

.btn1 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2rem;
  padding-right: 20px;
  text-decoration: none;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
}
.btn1 img {
  width: 18px;
  height: auto;
  position: relative;
  right: 0;
  transition: all 0.3s ease;
}
.btn1:hover img {
  right: -5px;
}
@media all and (max-width: 767px) {
  .btn1 {
    font-size: 1.2em;
    padding-right: 20px;
    gap: 0 10px;
  }
  .btn1 img {
    width: 12px;
  }
}

.btn2 {
  display: block;
  width: 340px;
  border-radius: 100px;
  border: 1px solid #333;
  text-decoration: none;
  color: #333;
  padding: 19px 0;
  margin: 40px auto 0 auto;
  background: url("../images/arw_btn.png") center right 20px no-repeat;
  background-size: 6px auto;
  transition: all 0.3s ease;
}
.btn2:hover {
  background: url("../images/arw_btnw.png") center right 20px no-repeat, #333;
  background-size: 6px auto;
  color: white;
}
@media all and (max-width: 767px) {
  .btn2 {
    width: 100%;
  }
}

/*------------------------------------------------------------
parts
------------------------------------------------------------*/
/*-----accordion-------*/
.acd_wrap {
  margin-top: 100px;
}

.acd_bx {
  border: 1px solid #ccc;
  margin-top: 20px;
}
.acd_bx:first-of-type {
  margin-top: 0;
}
.acd_bx .q {
  cursor: pointer;
  padding: 20px;
  position: relative;
}
.acd_bx .a {
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
}
.acd_bx .plus {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  transition: all 0.3s ease;
}
.acd_bx .plus:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #ccc;
}
.acd_bx .plus:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background: #ccc;
  transition: all 0.3s ease;
}
.acd_bx .open .plus {
  transform: rotate(90deg);
}
.acd_bx .open .plus:before {
  opacity: 0;
  bottom: -30px;
}

/*-----layout-------*/
.photo_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.photo_text .img {
  width: 50%;
  margin-left: calc(42% - 50vw);
  flex: 1;
}
.photo_text .img img {
  width: 100%;
  object-fit: cover;
}
.photo_text .txt {
  width: 50%;
}
@media all and (max-width: 767px) {
  .photo_text {
    flex-wrap: wrap;
  }
  .photo_text .img {
    width: 100%;
    margin-left: 0;
    flex: unset;
  }
  .photo_text .txt {
    width: 100%;
  }
}

.photo_text_rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.photo_text_rev .img {
  width: 50%;
  margin-right: calc(42% - 50vw);
  flex: 1;
}
.photo_text_rev .img img {
  width: 100%;
  object-fit: cover;
}
.photo_text_rev .txt {
  width: 50%;
}
@media all and (max-width: 767px) {
  .photo_text_rev {
    flex-wrap: wrap;
  }
  .photo_text_rev .img {
    width: 100%;
    margin-right: 0;
    flex: unset;
  }
  .photo_text_rev .txt {
    width: 100%;
  }
}

.list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 20px;
}
.list .img:nth-of-type(1) {
  grid-row: 1/3;
  grid-column: 1/4;
}

/*-----btns-------*/
.under_btn {
  position: relative;
}
.under_btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0481A2;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.under_btn:hover:after {
  transform: scale(1, 1);
}
@media all and (max-width: 767px) {
  .under_btn:after {
    content: none;
  }
}

.grad_btn {
  display: block;
  color: #fff;
  padding: 18px 60px;
  border-radius: 30px;
  text-decoration: none;
  outline: none;
  background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}

.grad_btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.relate {
  width: 100%;
  padding: 110px 0 0 0;
  margin-top: -10px;
  background: white;
  overflow: hidden;
}
.relate .tops {
  display: block;
}
@media all and (max-width: 767px) {
  .relate {
    padding: 60px 0 0 0;
  }
}

.slides_relate, .slides_recent {
  margin-top: 60px;
  position: relative;
}
.slides_relate a, .slides_recent a {
  text-decoration: none;
  color: #333;
}
.slides_relate a .img, .slides_recent a .img {
  overflow: hidden;
}
.slides_relate a img, .slides_recent a img {
  transition: all 0.3s ease;
}
.slides_relate a:hover img, .slides_recent a:hover img {
  transform: scale(1.05);
}
.slides_relate .txt_area, .slides_recent .txt_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-end;
}
.slides_relate .name, .slides_recent .name {
  margin-top: 24px;
  max-width: 230px;
}
.slides_relate .price, .slides_recent .price {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.6rem;
}
.slides_relate .num, .slides_recent .num {
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: white;
  line-height: 1;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
  z-index: 3;
}
.slides_relate .num img, .slides_recent .num img {
  width: 15px;
  height: auto;
}
.slides_relate .sw_nav, .slides_recent .sw_nav {
  position: absolute;
  width: 100%;
  top: 36%;
  left: 0;
}
.slides_relate .swiper-button-prev, .slides_relate .swiper-button-next, .slides_recent .swiper-button-prev, .slides_recent .swiper-button-next {
  width: 64px;
  height: 64px;
  margin-top: 0;
  top: unset;
}
.slides_relate .swiper-button-prev, .slides_recent .swiper-button-prev {
  left: -32px;
}
.slides_relate .swiper-button-next, .slides_recent .swiper-button-next {
  right: -32px;
}
@media all and (max-width: 767px) {
  .slides_relate, .slides_recent {
    margin-top: 30px;
  }
  .slides_relate .txt_area, .slides_recent .txt_area {
    display: block;
  }
  .slides_relate .name, .slides_recent .name {
    margin-top: 16px;
    max-width: 240px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .slides_relate .name br, .slides_recent .name br {
    display: none;
  }
  .slides_relate .num, .slides_recent .num {
    left: 20px;
    top: 20px;
    font-size: 2rem;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: center;
  }
  .slides_relate .num img, .slides_recent .num img {
    width: 15px;
    height: auto;
  }
  .slides_relate .sw_nav, .slides_recent .sw_nav {
    top: 33%;
  }
  .slides_relate .swiper-button-prev, .slides_relate .swiper-button-next, .slides_recent .swiper-button-prev, .slides_recent .swiper-button-next {
    width: 40px;
    height: 40px;
    margin-top: 0;
    top: unset;
  }
  .slides_relate .swiper-button-prev, .slides_recent .swiper-button-prev {
    left: -12px;
  }
  .slides_relate .swiper-button-next, .slides_recent .swiper-button-next {
    right: -12px;
  }
}

.recent {
  margin-top: 120px;
  width: 100%;
  padding: 0 0 100px 0;
  background: white;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
.recent .in {
  padding: 130px 0 0 0;
  box-sizing: border-box;
}
.recent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  margin-top: 0;
  margin-left: 0;
  width: calc(100% - 20px);
  height: 100%;
  background: #F7F9FA;
}
.recent .inner {
  position: relative;
  z-index: 2;
}
@media all and (max-width: 767px) {
  .recent {
    padding: 65px 0;
    margin-top: 65px;
  }
  .recent .in {
    padding: 65px 0 0 0;
  }
  .recent:before {
    content: "";
    position: absolute;
    top: 65px;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    height: calc(100% - 65px);
    background: #F7F9FA;
  }
}

.slides_recent .swiper-slide {
  position: relative;
}
.slides_recent .swiper-slide .tx_bl {
  width: 100%;
  height: 58px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  color: white;
  place-content: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.slides_recent .img {
  overflow: hidden;
}
.slides_recent .img img {
  transition: all 0.3s ease;
}
.slides_recent .img:hover img {
  transform: scale(1.05);
}

.cate_under_list {
  margin: 140px 0 80px 0;
}
.cate_under_list .inner {
  max-width: 1600px;
}
.cate_under_list .btn_list_und {
  margin-top: 40px;
  text-align: center;
  background: #F6F9FA;
  border: 1px solid #F2F2F2;
  box-sizing: border-box;
  padding: 40px 40px;
}
.cate_under_list .btn_list_und .in {
  display: inline-block;
}
.cate_under_list .btn_list_und .in2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 50px;
}
.cate_under_list .btn_list_und .in3 ul#appsItemCategoryTag {
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.cate_under_list .btn_list_und .in3 .mainHeaderNavColor {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.cate_under_list .btn_list_und .in3 .appsItemCategoryTag_lowerchild {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5px;
}
.cate_under_list .btn_list_und .in3 .appsItemCategoryTag_lowerchild .mainHeaderNavColor {
  font-size: 1.2rem;
  font-weight: normal;
}
.cate_under_list .btn_list_und .in3 .appsItemCategoryTag_lowerLink {
  display: block;
  text-align: left;
  color: #333;
  position: relative;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.cate_under_list .btn_list_und a {
  display: block;
  text-align: left;
  color: #333;
  position: relative;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.cate_under_list .btn_list_und a:last-of-type {
  margin-bottom: 0;
}
.cate_under_list .btn_list_und a:hover {
  opacity: 0.4;
}
.cate_under_list .btn_list_und .ica {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.cate_under_list .btn_list_und .ica1 {
  padding-left: 30px;
  background: url("../images/shop.png") center left no-repeat;
  background-size: auto 20px;
}
.cate_under_list .btn_list_und .ica2 {
  padding-left: 30px;
  background: url("../images/hand.png") center left no-repeat;
  background-size: auto 20px;
}
.cate_under_list .btn_list_und .ica3 {
  padding-left: 30px;
  background: url("../images/back.png") center left no-repeat;
  background-size: auto 20px;
}
.cate_under_list .btn_list_und .ica4 {
  padding-left: 30px;
  background: url("../images/smp.png") center left no-repeat;
  background-size: auto 20px;
}
@media all and (max-width: 1240px) {
  .cate_under_list .btn_list_und .in2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 20px;
  }
}
@media all and (max-width: 767px) {
  .cate_under_list {
    margin: 70px 0 60px 0;
  }
  .cate_under_list .btn_list_und {
    margin-top: 20px;
    padding: 20px 20px;
  }
  .cate_under_list .btn_list_und .in {
    display: block;
  }
  .cate_under_list .btn_list_und .in2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cate_under_list .btn_list_und .in3 ul#appsItemCategoryTag {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cate_under_list .btn_list_und .in3 .mainHeaderNavColor {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .cate_under_list .btn_list_und .in3 .appsItemCategoryTag_lowerLink {
    margin-bottom: 2px;
    font-size: 1.2rem;
    padding-left: 0;
  }
  .cate_under_list .btn_list_und a {
    margin-bottom: 2px;
    font-size: 1.2rem;
    padding-left: 0;
  }
  .cate_under_list .btn_list_und .appsItemCategoryTag_lowerchild {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cate_under_list .btn_list_und .ica {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .cate_under_list .btn_list_und .ica1 {
    padding-left: 20px;
    background: url("../images/shop.png") center left no-repeat;
    background-size: auto 16px;
  }
  .cate_under_list .btn_list_und .ica2 {
    padding-left: 20px;
    background: url("../images/hand.png") center left no-repeat;
    background-size: auto 16px;
  }
  .cate_under_list .btn_list_und .ica3 {
    padding-left: 20px;
    background: url("../images/back.png") center left no-repeat;
    background-size: auto 16px;
  }
  .cate_under_list .btn_list_und .ica4 {
    padding-left: 20px;
    background: url("../images/smp.png") center left no-repeat;
    background-size: auto 16px;
  }
}

footer {
  background: white;
}
footer .inner {
  border-top: 1px solid #E0E0E0;
  padding: 60px 0 0 0;
  box-sizing: border-box;
  text-align: center;
}
footer .inner .menus {
  display: inline-block;
}
footer .inner .menus .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 60px;
}
footer .inner .menus a {
  display: block;
  text-decoration: none;
  text-align: left;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
  position: relative;
}
footer .inner .menus a:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}
footer .inner .menus a:hover:before {
  width: 100%;
}
footer .inner .menus a em {
  font-family: "Marcellus", serif;
}
footer .inner .sns {
  display: inline-block;
  margin-top: 100px;
}
footer .inner .sns .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 24px;
  align-items: center;
}
footer .inner .sns .in img {
  width: 30px;
  height: auto;
}
footer .inner .sns .in a {
  transition: all 0.3s ease;
}
footer .inner .sns .in a:hover {
  opacity: 0.7;
}
footer .inner .copyright {
  padding: 100px 0;
  box-sizing: border-box;
}
footer .inner .copyright i {
  font-size: 1.4rem;
  font-family: "Marcellus", serif;
}
@media all and (max-width: 1200px) {
  footer .inner .menus {
    display: inline-block;
  }
  footer .inner .menus .in {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
  }
}
@media all and (max-width: 767px) {
  footer .inner .menus {
    display: block;
  }
  footer .inner .menus .in {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .inner .menus a {
    margin-bottom: 3px;
  }
  footer .inner .sns {
    margin-top: 50px;
  }
  footer .inner .sns .in {
    gap: 0 10px;
  }
  footer .inner .sns .in img {
    width: 20px;
  }
  footer .inner .copyright {
    padding: 50px 0;
  }
  footer .inner .copyright i {
    font-size: 1.2rem;
  }
}

.search_ttl {
  margin-top: 200px;
  font-size: 3rem;
  text-align: center;
}
@media all and (max-width: 767px) {
  .search_ttl {
    font-size: 2rem;
    margin-top: 110px;
  }
}

.item_area {
  margin-top: 120px;
}
.item_area .more_area {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 60px 24px;
}
@media all and (max-width: 1020px) {
  .item_area .more_area {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 24px;
  }
}
@media all and (max-width: 767px) {
  .item_area .more_area {
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
  }
}
.item_area .btn2 {
  cursor: pointer;
}
.item_area li {
  transition: all 1s ease;
}
.item_area li.is-hidden {
  display: none;
}
@media all and (max-width: 767px) {
  .item_area {
    margin-top: 60px;
  }
}

.no_item {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
}
.no_item img {
  display: block;
  width: 80px;
  margin: 0 auto 20px auto;
}
.no_item .egg {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 3.2rem;
  position: relative;
  line-height: 1;
  margin: 20px auto;
}
@media all and (max-width: 767px) {
  .no_item .egg {
    font-size: 2.4rem;
  }
}

.item_bx {
  text-decoration: none;
  color: #333;
}
.item_bx .img {
  overflow: hidden;
  aspect-ratio: 289/360;
}
.item_bx img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 289/360;
  transition: all 0.3s ease;
}
.item_bx:hover img {
  transform: scale(1.05);
}
.item_bx .txt_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-end;
}
.item_bx .name {
  margin-top: 24px;
  max-width: 240px;
}
.item_bx .price {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.6rem;
}
.item_bx .num {
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: white;
  line-height: 1;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
  z-index: 3;
}
.item_bx .num img {
  width: 15px;
  height: auto;
}
@media all and (max-width: 767px) {
  .item_bx .txt_area {
    display: block;
  }
  .item_bx .name {
    margin-top: 16px;
    max-width: 240px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .item_bx .name br {
    display: none;
  }
  .item_bx .num {
    left: 20px;
    top: 20px;
    font-size: 2rem;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: center;
  }
  .item_bx .num img {
    width: 15px;
    height: auto;
  }
}

.covers {
  background: white;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.5s ease;
}
.covers.load {
  background: none;
  opacity: 0;
  visibility: hidden;
}

@media all and (max-width: 767px) {
  #nav-content #appsItemCategoryTag .appsItemCategoryTag_lowerchild.c1 {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=base.css.map */
