@charset "UTF-8";

/* =====================================
  header scoped reset from format.css
  ※ format.css の初期化を header 内だけに限定
===================================== */

header {
  line-height: 1.0em;
}

header dl,
header dt,
header dd,
header ul,
header li,
header ol,
header figure {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 99999px;
}

header h1,
header h2,
header h3,
header h4,
header h5,
header h6,
header p {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  max-height: 99999px;
}

header table {
  border-collapse: collapse;
  border-spacing: 0;
}

header th,
header td {
  max-height: 99999px;
}

header form {
  margin: 0;
  padding: 0;
}

header img {
  border: 0;
  display: block;
}

header button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

header ul li img {
  vertical-align: bottom;
}

header *:focus {
  outline: none;
}

header *,
header *:before,
header *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

header a {
  color: #231815;
  text-decoration: none;
  transition: 0.5s all ease;
}

header a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* =====================================
	header
===================================== */

header {
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.5s all ease;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2.1176;
  letter-spacing: 0.06em;
}

header.is-scroll,
header.color{
  background: #fff;
}

header .logo svg {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  width: 169px;
}

header .inline-logo .logo-text {
  fill: #fff;
  transition: 0.5s all ease;
}
header .inline-logo .logo-mark {
  fill: #fff;
  transition: 0.5s all ease;
}

header.is-scroll .inline-logo .logo-text,
header.color .inline-logo .logo-text {
  fill: #231815;
}
header.is-scroll .inline-logo .logo-mark,
header.color .inline-logo .logo-mark {
  fill: #a4becd;
}

header > nav {
  position: absolute;
  top: 36px;
  left: 296px;
}

header > nav ul {
  display: flex;
  gap: 52px;
}

header > nav ul li a {
  font-size: 15px;
  line-height: 1;
  color: #fff !important;
  display: block;
}

header.is-scroll nav > ul li a,
header.color nav > ul li a {
  color: #231815 !important;
}

header .buy {
  position: absolute;
  top: 50%;
  right: 86px;
  transform: translateY(-50%);
  height: 52px;
  padding: 0 22px 0 25px;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 26px;
  font-size: 17px;
  color: #fff;
  z-index: 10;
}

header.is-scroll .buy,
header.color .buy {
  border: 1px solid #a4becd;
  color: #231815;
}

.nav-opened header.is-scroll .buy,
.nav-opened header.is-scroll.is-visual-end .buy,
.nav-opened header.color .buy,
.nav-opened header.color.is-visual-end .buy{
  border: 1px solid #fff;
  color: #fff;
}

header .inline-icon {
  color: #fff;
  margin-left: 12px;
  width: 23px;
  transition: 0.5s all ease;
}

header.is-scroll .inline-icon,
header.color .inline-icon{
  color: #a4becd;
}

.nav-opened header.is-scroll .inline-icon,
.nav-opened header.is-scroll.is-visual-end .inline-icon,
.nav-opened header.color .inline-icon,
.nav-opened header.color.is-visual-end .inline-icon{
  color: #fff;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  width: 34px;
  height: 16px;
  border: none;
  appearance: none;
  z-index: 1000;
}
.menu-trigger span {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 5px;
  border-radius: 2px;
  background-color: #fff;
  transform: translateX(-50%);
  transform-origin: center center;
  transition: 0.5s all ease;
}
header.is-scroll .menu-trigger span,
header.color .menu-trigger span{
  background-color: #a4becd;
}
.nav-opened header.is-scroll.is-visual-end .menu-trigger span,
.nav-opened header.is-scroll .menu-trigger span,
.nav-opened header.color.is-visual-end .menu-trigger span,
.nav-opened header.color .menu-trigger span{
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  bottom: 0;
}
.nav-opened .is-visual-end .menu-trigger span:nth-of-type(1),
.nav-opened .menu-trigger span:nth-of-type(1){
  transform: translateX(-50%) translateY(0.29vw) rotate(-45deg);
}
.nav-opened .is-visual-end .menu-trigger span:nth-of-type(2),
.nav-opened .menu-trigger span:nth-of-type(2){
  transform: translateX(-50%) translateY(-0.29vw) rotate(45deg);
}

.ghost-nav {
  width: 70%;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  z-index: 9;
  -webkit-transition: 0.35s linear;
  transition: 0.35s linear;
  font-weight: 400;
  font-style: normal;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ghost-nav .wrap {
  width: 100%;
  background-color: #a4becd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 3;
  height: 100%;
  min-width: 767px;
}

.ghost-nav .wrap::before {
  content: "";
  display: block;
  width: 58%;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 6;
  position: absolute;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(164, 190, 205)),
    to(rgb(98, 141, 164))
  );
  background: linear-gradient(
    to right,
    rgb(164, 190, 205) 0%,
    rgb(98, 141, 164) 100%
  );
}

.ghost-nav .wrap .wrap-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-left: calc(60px + clamp(20px, 13.3121px + 1.9108vw, 50px));
  position: relative;
  z-index: 20;
}

.ghost-nav .wrap .wrap-content .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 44%;
  border-left: 1px solid #fff;
  padding: 130px clamp(20px, 13.3121px + 1.9108vw, 50px) 0px;
}

.ghost-nav .wrap .wrap-content .left .left-wrap {
  padding-bottom: 75px;
}

.ghost-nav .wrap .wrap-content .right {
  width: 56%;
  padding: 130px clamp(20px, 13.3121px + 1.9108vw, 50px)
    clamp(20px, 13.3121px + 1.9108vw, 50px);
  color: #fff;
  position: relative;
}

.ghost-nav .wrap .wrap-content .right h3 {
  line-height: 1;
  margin-bottom: 30px;
  font-size: clamp(16px, 15.1083px + 0.2548vw, 20px);
  white-space: nowrap;
  font-family: var(--font-Kosugi);
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  z-index: 7;
}

.ghost-nav .wrap .wrap-content .right h3 img {
  width: 94px;
}

.ghost-nav .wrap .wrap-content .cols-wrap-box {
  position: relative;
  z-index: 7;
  padding: 0px 0 clamp(20px, 13.3121px + 1.9108vw, 50px);
  max-width: 456px;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  position: relative;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide a {
  display: block;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .con {
  width: 61.6%;
  padding-right: 10px;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .con .cat {
  margin-bottom: 20px;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .con .cat span {
  color: #d7e1e6;
  font-size: 10px;
  font-family: var(--font-IBM-sans);
  font-weight: 500;
  -webkit-box-shadow: 0 1px 0 #fff;
  box-shadow: 0 1px 0 #fff;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .img {
  min-width: 80px;
  width: 38.4%;
  overflow: hidden;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .img .bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .img .bg-img::before {
  content: "";
  display: block;
  padding-top: 66%;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .stroy_ttl {
  font-family: var(--font-IBM-sans);
  font-weight: 500;
  letter-spacing: 2px;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .stroy_ttl h5 {
  font-weight: 500;
  font-size: 12px;
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .stroy_ttl h4 {
  font-weight: 500;
  font-size: clamp(14px, 13.5541px + 0.1274vw, 16px);
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide .ttl {
  font-family: var(--font-Kosugi);
  font-size: clamp(14px, 13.1083px + 0.2548vw, 18px);
  font-weight: 400;
  letter-spacing: 2px;
}

@media (min-width: 781px) {
  .ghost-nav .wrap .wrap-content .cols-wrap .col-slide:hover .img .bg-img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.ghost-nav .wrap .wrap-content .cols-wrap .col-slide:last-child {
  margin-bottom: 0;
}

.follow-us {
  position: absolute;
  left: 20px;
  bottom: 83px;
  padding-left: 10px;
}

.follow-us a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 18px;
  font-family: var(--font-Akshar);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.follow-us a span {
  display: inline-block;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.follow-us a .icon {
  margin-top: 33px;
  width: 19px;
  height: 19px;
  min-width: 19px;
}

.follow-us a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.ghost-nav img {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ghost-nav .wrap #menu-header-menu-sp {
  margin-bottom: 90px;
}

.ghost-nav .wrap #menu-header-menu-sp > li {
  margin-bottom: 10px;
}

.ghost-nav .wrap #menu-header-menu-sp > li.jp a {
  padding: 7px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  font-size: clamp(12px, 11.5541px + 0.1274vw, 14px);
  font-size: 14px;
  white-space: nowrap;
  font-family: var(--font-Kosugi);
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.6;
}

.ghost-nav .wrap #menu-header-menu-sp > li.jp a:hover {
  text-decoration: none;
  opacity: 1;
}

.ghost-nav .wrap #menu-header-menu-sp > li:nth-child(3) {
  margin-bottom: 40px;
}

.ghost-nav .wrap #menu-header-menu-sp a {
  font-size: 20px;
  display: block;
  font-family: var(--font-IBM-sans);
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.ghost-nav .wrap #menu-header-menu-sp a:hover {
  text-decoration: none;
  opacity: 1;
}

.ghost-nav .wrap #menu-header-menu-sp .sub-menu {
  padding: 6px 0 8px;
  padding-left: clamp(10px, 6.4331px + 1.0191vw, 26px);
}

.ghost-nav .wrap #menu-header-menu-sp .sub-menu .jp a {
  padding: 7px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  font-size: 16px;
  white-space: nowrap;
  font-family: var(--font-Kosugi);
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.6;
}

.ghost-nav .wrap #menu-header-menu-sp .sub-menu .jp a:hover {
  text-decoration: none;
  opacity: 1;
}

.ghost-nav .wrap #menu-header-menu-sp .sub-menu .en a {
  padding: 7px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  font-family: var(--font-Akshar);
  font-weight: 400;
  line-height: 1;
  font-size: 17px;
  opacity: 0.6;
}

.ghost-nav .wrap #menu-header-menu-sp .sub-menu .en a:hover {
  text-decoration: none;
  opacity: 1;
}

.ghost-nav .menu-nav .sub-menu {
  padding: 21px 0;
}

.ghost-nav .menu-nav .sub-menu a {
  display: block;
  padding: 9px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

.ghost-nav .menu-nav .sub-menu a:hover {
  text-decoration: none;
  opacity: 1;
}

.ghost-nav .menu-nav .h71 {
  margin-bottom: 10px;
}

.ghost-nav .menu-nav .h71 a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

.ghost-nav .menu-nav .h71 a img {
  width: auto;
  height: 21px;
}

.ghost-nav .menu-nav .h71 a:hover {
  text-decoration: none;
  opacity: 1;
}

.ghost-nav .menu-nav .h71:nth-child(3) {
  margin: 0px 0 50px;
}

.ghost-nav .menu-nav .h72 {
  margin-bottom: 10px;
}

.ghost-nav .menu-nav .h72 .sub-menu {
  padding: 10px 0;
}

.ghost-nav .menu-nav .h72 > a {
  padding: 3px 0;
}

.ghost-nav .menu-nav .h72 a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

.ghost-nav .menu-nav .h72 a img {
  width: auto;
  height: 22px;
}

.ghost-nav .menu-nav .h72 a:hover {
  text-decoration: none;
  opacity: 1;
}

.ghost-nav .menu-nav .h72:nth-child(3) {
  margin: 0px 0 50px;
}

.ghost-nav .menu-nav .h51 {
  margin-bottom: 20px;
}

.ghost-nav .menu-nav .h51 a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}

.ghost-nav .menu-nav .h51 a img {
  width: auto;
  height: 14px;
}

.ghost-nav .menu-nav .h51 a:hover {
  text-decoration: none;
  opacity: 1;
}

.ghost-nav .main_nav {
  margin-bottom: 50px;
}

.ghost-nav .left-bottom {
  margin-top: auto;
}

.ghost-nav .left-bottom h4 {
  color: #fff;
  font-family: var(--font-Kosugi);
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 15px;
}

.ghost-nav .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.ghost-nav .link a {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  padding: 18px 42px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #a4becd;
}

.ghost-nav .link a .icon {
  width: 19px;
  height: 19px;
  min-width: 19px;
  margin-right: clamp(8px, 6.2166px + 0.5096vw, 16px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.ghost-nav .link a .jp {
  margin-top: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  font-size: 17px;
  white-space: nowrap;
  font-family: var(--font-IBM-sans);
  font-weight: 500;
  letter-spacing: 1px;
}

.ghost-nav .link a .en {
  margin-left: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  font-family: var(--font-Akshar);
  font-weight: 500;
  line-height: 1;
  font-size: 17px;
  text-align: center;
}

.ghost-nav .link a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.ghost-nav .subnav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.ghost-nav .subnav a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.ghost-nav .subnav a .en {
  font-size: 18px;
  font-family: var(--font-Akshar);
  font-weight: 400;
  letter-spacing: 1px;
  margin-right: 8px;
}

.ghost-nav .subnav a .jp {
  font-family: var(--font-Kosugi);
  font-weight: 400;
  font-size: 13px;
  margin-right: 8px;
}

.ghost-nav .subnav a .icon {
  width: 6px;
  height: 6px;
  min-width: 6px;
}

@media (max-height: 800px) and (min-width: 768px) {
  .ghost-nav .wrap .wrap-content .left .left-wrap {
    overflow-y: scroll;
    height: 100%;
  }

  .ghost-nav .wrap .wrap-content .left .left-wrap {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #fff #a4becd;
  }

  .ghost-nav .wrap .wrap-content .left .left-wrap::-webkit-scrollbar {
    width: 8px;
  }

  .ghost-nav .wrap .wrap-content .left .left-wrap::-webkit-scrollbar-track {
    background: #a4becd;
    border-radius: 10px;
  }

  .ghost-nav .wrap .wrap-content .left .left-wrap::-webkit-scrollbar-thumb {
    background: #a4becd;
    border-radius: 10px;
  }

  .ghost-nav
    .wrap
    .wrap-content
    .left
    .left-wrap::-webkit-scrollbar-thumb:hover {
    background: #fff;
  }
}

@media (max-height: 900px) and (min-width: 768px) {
  .ghost-nav .cols-wrap-box {
    overflow-y: scroll;
    height: 100%;
  }

  .ghost-nav .cols-wrap-box {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #fff #648ea5;
  }

  .ghost-nav .cols-wrap-box::-webkit-scrollbar {
    width: 8px;
  }

  .ghost-nav .cols-wrap-box::-webkit-scrollbar-track {
    background: #648ea5;
    border-radius: 10px;
  }

  .ghost-nav .cols-wrap-box::-webkit-scrollbar-thumb {
    background: #648ea5;
    border-radius: 10px;
  }

  .ghost-nav .cols-wrap-box::-webkit-scrollbar-thumb:hover {
    background: #fff;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 31, 32, 0.5490196078);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-opened .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-opened .ghost-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

@media (max-width: 1300px) {
  .ghost-nav {
    width: 80%;
  }

  .ghost-nav .wrap .wrap-content .left {
    width: 38%;
    padding: 130px 0 0px clamp(20px, 13.3121px + 1.9108vw, 50px);
  }

  .ghost-nav .wrap .wrap-content .right {
    width: 62%;
  }
}

@media (max-width: 1000px) {
  .ghost-nav {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ghost-nav .wrap::before {
    display: none;
  }

  .ghost-nav .wrap .wrap-content .right:before {
    content: "";
    display: block;
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 6;
    position: absolute;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgb(164, 190, 205)),
      color-stop(53%, rgb(98, 141, 164)),
      to(rgb(164, 190, 205))
    );
    background: linear-gradient(
      to bottom,
      rgb(164, 190, 205) 0%,
      rgb(98, 141, 164) 53%,
      rgb(164, 190, 205) 100%
    );
  }

  .nav-opened .follow-us.sp {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .follow-us.sp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .follow-us {
    position: fixed;
    left: auto;
    right: 80px;
    bottom: auto;
    top: 30px;
    padding-left: 0px;
    z-index: 30;
  }

  .follow-us a span {
    padding-top: 2px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .follow-us a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .follow-us a .icon {
    margin-top: 0px;
    width: 19px;
    height: 19px;
    min-width: 19px;
    margin-left: 10px;
  }

  .ghost-nav .wrap .wrap-content {
    display: block;
    padding-left: 0;
    overflow-y: scroll;
    padding: 80px 0 0px;
  }

  .ghost-nav .wrap .wrap-content .left {
    width: 100%;
    border-left: 0px solid #fff;
    padding: 60px 20px 0px;
  }

  .ghost-nav .wrap .wrap-content .left .left-wrap {
    padding-bottom: 20px;
  }

  .ghost-nav .wrap .wrap-content .left .left-bottom {
    display: none;
  }

  .ghost-nav .wrap #menu-header-menu-sp {
    margin-bottom: 0px;
  }

  .ghost-nav .wrap .wrap-content .right {
    width: 100%;
    padding: 40px 0px 80px;
  }

  .ghost-nav .wrap .wrap-content .right h3 {
    padding: 0 20px;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap-box {
    padding: 0px;
    overflow-x: auto;
    max-width: 100%;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap-box .cols-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300vw;
    gap: 0px;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap .col-slide {
    display: block;
    width: 80vw;
    margin-bottom: 0;
    margin: 0 10px;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap[data-nub="1"] {
    width: 80vw;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap[data-nub="2"] {
    width: 160vw;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap[data-nub="3"] {
    width: 240vw;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap[data-nub="4"] {
    width: 320vw;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap[data-nub="5"] {
    width: 400vw;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap .col-slide:last-child {
    margin: 0 20px 0 10px;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap .col-slide:first-child {
    margin: 0 10px 0 20px;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap .col-slide .img {
    min-width: 80px;
    width: 100%;
    margin-bottom: 10px;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap .col-slide .con .cat {
    margin-bottom: 10px;
  }

  .ghost-nav .wrap .wrap-content .cols-wrap .col-slide .con {
    width: 100%;
  }

  .ghost-nav .left-bottom.sp {
    padding: 0 20px 40px;
  }

  .ghost-nav .left-bottom.sp h4 {
    font-size: 16px;
  }

  .ghost-nav .left-bottom.sp .subnav a .jp {
    font-size: 16px;
  }

  .ghost-nav .left-bottom.sp .subnav a .icon {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }

  .ghost-nav .link a {
    max-width: 290px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }

  .ghost-nav .other-link-op {
    margin-right: 20px;
  }

  .ghost-nav .other-link-op a {
    width: 28px;
    height: 28px;
    background-size: 16px 18px;
  }

  .ghost-nav {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .ghost-nav .wrap {
    min-width: 100%;
    height: 100dvh;
    overflow: hidden;
  }
  
  .ghost-nav .wrap .wrap-content {
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .ghost-nav .menu-nav .h71 a {
    opacity: 1;
  }

  .ghost-nav .menu-nav .h72 a {
    opacity: 1;
  }

  .ghost-nav .menu-nav .h51 a {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {

header {
  height: 13vw;
}

header .logo svg {
  left: 5.2vw;
  width: 29.427vw;
  z-index: 100;
}

.nav-opened header.is-scroll .inline-logo .logo-text,
.nav-opened header.is-scroll.is-visual-end .inline-logo .logo-text{
  fill: #fff;
}
.nav-opened header.is-scroll .inline-logo .logo-mark,
.nav-opened header.is-scroll.is-visual-end .inline-logo .logo-mark{
  fill: #fff;
}

header > nav {
  display: none;
}

header .buy {
  right: 16.67vw;
  height: 7.9427vw;
  padding: 0 4.03645833vw 0 3.3854167vw;
  border-radius: 3.97135vw;
  font-size: 2.6vw;
  padding-top: 0.24em;
}

header .inline-icon {
  margin-left: 1.953125vw;
  width: 3.515625vw;
}

.menu-trigger {
  right: 6.25vw;
  width: 6.51vw;
  height: 3.125vw;
}
.menu-trigger span {
  height: 1.04167vw;
  border-radius: 0.52vw;
}
.nav-opened .is-visual-end .menu-trigger span:nth-of-type(1),
.nav-opened .menu-trigger span:nth-of-type(1){
  transform: translateX(-50%) translateY(0.96vw) rotate(-45deg);
}
.nav-opened .is-visual-end .menu-trigger span:nth-of-type(2),
.nav-opened .menu-trigger span:nth-of-type(2){
  transform: translateX(-50%) translateY(-0.96vw) rotate(45deg);
}

}
