@font-face {
  font-family: "MaisonNeue";
  src: url("../font/MaisonNeueExtended-Medium.woff2");
}
@font-face {
  font-family: "MaisonNeueBlack";
  src: url("../font/MaisonNeueExtended-Black.woff2");
}
@font-face {
  font-family: "MaisonNeueDemi";
  src: url("../font/MaisonNeueExtended-Demi.woff2");
}
@font-face {
  font-family: "MaisonNeueLight";
  src: url("../font/MaisonNeueExtended-Light.woff2");
}
@font-face {
  font-family: "MaisonNeueThin";
  src: url("../font/MaisonNeueExtended-Thin.woff2");
}
@font-face {
  font-family: "MaisonNeueBlackItalic";
  src: url("../font/MaisonNeueExtended-BlackItalic.woff2");
}
@font-face {
  font-family: "MaisonNeueBold";
  src: url("../font/MaisonNeueExtended-Bold.woff2");
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "MaisonNeue";
  font-display: swap;
  color: #FFF;
}

body {
  background-color: #35373D;
}

a {
  text-decoration: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.header {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #161719;
  border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 767px) {
  .header {
    display: none;
  }
}
.header-logo a {
  display: block;
  width: 65px;
  margin-left: 33px;
}
.header-logo a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 50px;
}
.header-links .contact {
  border: 3px solid #FFF;
  border-radius: 32px;
  margin-right: 12px;
}
.header-links .contact a {
  width: 123px;
  text-align: center;
  display: inline-block;
  padding: 15px 8px;
  font-size: 18px;
  font-family: "MaisonNeueBlack";
}
@media screen and (max-width: 767px) {
  .header-links .contact a {
    width: 100px;
    padding: 8px;
    font-size: 12px;
  }
}
.header-links .cart {
  width: 33px;
}
.header-links .cart img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fixed-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 265px;
  display: flex;
  justify-content: center;
  align-items: center;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .fixed-logo {
    height: 200px;
  }
}
.fixed-logo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fixed-menu {
  width: 195px;
  height: 100vh;
  position: fixed;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
  z-index: 999;
}
.fixed-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}
.fixed-menu ul li a {
  display: inline-block;
  text-align: center;
  font-family: "MaisonNeueDemi";
  letter-spacing: 3.6px;
  font-size: 18px;
  border-bottom: 1px solid #FFF;
  padding-bottom: 5px;
  transition: all 0.3s linear;
}
.fixed-menu ul li a:hover {
  opacity: 0.3;
}
.fixed-menu ul .sns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.fixed-menu ul .sns a {
  width: 32px;
  height: 32px;
  transition: all 0.3s linear;
}
.fixed-menu ul .sns a:hover {
  opacity: 0.3;
}
.fixed-menu ul .sns a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.online {
  position: fixed;
  left: 3vw;
  bottom: 1vw;
  z-index: 999;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  .online {
    display: none;
  }
}
.online .online-shop {
  width: 150px;
}
.online .online-shop img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sp-header {
  position: relative;
}
.sp-header .sp-header-btn {
  position: fixed;
  width: 40px;
  height: 40px;
  z-index: 999;
  top: 20px;
  right: 20px;
}
.sp-header .sp-header-btn:hover {
  cursor: pointer;
}
.sp-header .sp-header-btn span {
  width: 45%;
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  background-color: #FFF;
}
.sp-header .sp-header-btn span:nth-of-type(1) {
  top: 20%;
}
.sp-header .sp-header-btn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.sp-header .sp-header-btn span:nth-of-type(3) {
  bottom: 20%;
}
.sp-header .sp-header-btn.is-active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 70%;
}
.sp-header .sp-header-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.sp-header .sp-header-btn.is-active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 70%;
}

.sp-header-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  opacity: 0;
  transition-duration: 0.5s;
  transform: translateX(100%);
  background-color: #35373D;
  display: flex;
  align-items: center;
  z-index: 777;
  overflow-y: scroll;
}
.sp-header-menu.is-active {
  opacity: 1;
  transform: translateX(0);
}
.sp-header-menu ul {
  width: 160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.sp-header-menu ul li a {
  display: inline-block;
  text-align: center;
  font-family: "MaisonNeueDemi";
  letter-spacing: 3.6px;
  font-size: 18px;
  border-bottom: 1px solid #FFF;
  padding-bottom: 5px;
}
.sp-header-menu ul .sns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.sp-header-menu ul .sns a {
  width: 32px;
  height: 32px;
}
.sp-header-menu ul .sns a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-header-menu ul .online-shop {
  width: 100%;
}
.sp-header-menu ul .online-shop a {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.subpage-kv {
  width: 100%;
  height: 100vh;
  background-position: top;
  background-size: cover;
}
.subpage-kv .subpage-inner {
  width: calc(100% - 160px);
  margin: 0 auto;
  padding: 57px 0;
}
@media screen and (max-width: 767px) {
  .subpage-kv .subpage-inner {
    width: 90%;
  }
}
.subpage-kv .subpage-inner .subpage-title {
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 210px;
}
@media screen and (max-width: 767px) {
  .subpage-kv .subpage-inner .subpage-title {
    line-height: normal;
    flex-direction: column;
    align-items: start;
    margin: 40px 0;
  }
}
.subpage-kv .subpage-inner .subpage-title h1 {
  font-size: 80px;
  font-family: "MaisonNeueBold";
}
@media screen and (max-width: 767px) {
  .subpage-kv .subpage-inner .subpage-title h1 {
    font-size: 40px;
  }
}
.subpage-kv .subpage-inner .subpage-title span {
  font-size: 16px;
}

.breadcrumb li {
  font-size: 12px;
  display: flex;
  align-items: center;
}
.breadcrumb li span {
  width: 16px;
  border-top: 1px solid #FFF;
  margin: 0 8px;
}

.modal-product {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6666666667);
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-product .modal-inner {
  width: 50%;
  height: 70%;
  border: 3px solid #FFF;
  border-radius: 50px;
  background-color: #35373D;
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal-product .modal-inner {
    width: 90%;
    height: 90%;
    padding: 30px;
  }
}
.modal-product .modal-inner-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .modal-product .modal-inner-wrapper {
    padding: 50px 0;
    flex-direction: column;
  }
}
.modal-product .modal-inner-wrapper .product-info {
  width: 100%;
  height: 100%;
}
.modal-product .modal-inner-wrapper .product-info h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-family: "MaisonNeueBlack";
}
@media screen and (max-width: 767px) {
  .modal-product .modal-inner-wrapper .product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.modal-product .modal-inner-wrapper .product-info-meta {
  margin-bottom: 30px;
  font-family: "MaisonNeueLight";
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .modal-product .modal-inner-wrapper .product-info-meta {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
.modal-product .modal-inner-wrapper .product-info .flavor {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .modal-product .modal-inner-wrapper .product-info .flavor {
    font-size: 12px;
  }
}
.modal-product .modal-inner-wrapper .product-info .flavor p {
  margin-bottom: 10px;
}
.modal-product .modal-inner-wrapper .product-info .inner-border {
  display: block;
  width: 100%;
  margin: 30px 0;
  border-top: 3px solid #FFF;
}
.modal-product .modal-inner-wrapper .product-info .product-description {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .modal-product .modal-inner-wrapper .product-info .product-description {
    height: auto;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 767px) {
  .modal-product .modal-inner-wrapper .product-info .product-description p {
    padding-bottom: 50px;
    font-size: 12px;
  }
}
.modal-product .modal-inner .modal-close-btn {
  position: absolute;
  top: -70px;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 3px solid #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-product .modal-inner .modal-close-btn:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal-product .modal-inner .modal-close-btn {
    position: fixed;
    top: 70px;
    right: 40px;
    width: 30px;
    height: 30px;
  }
}
.modal-product .modal-inner .modal-close-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 3px;
  background-color: #FFF;
}
.modal-product .modal-inner .modal-close-btn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-product .modal-inner .modal-close-btn span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-product.active {
  display: flex;
}

.notfound {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 30vh 0;
}
.notfound h3 {
  font-size: 24px;
}
.notfound p a {
  padding-bottom: 5px;
  border-bottom: 1px solid #FFF;
}

.footer {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 43px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 46px;
  background-color: #2B2B2B;
}
.footer-link {
  width: 100%;
}
.footer-link ul {
  display: flex;
  align-items: center;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .footer-link ul {
    flex-direction: column;
    gap: 30px;
  }
}
.footer-link ul li {
  width: 14.2857142857%;
  font-size: 18px;
  font-family: "MaisonNeueDemi";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-link ul li {
    width: 100%;
  }
}
.footer-link ul li a {
  padding: 5px 0;
  transition: all 0.3s linear;
}
.footer-link ul li a:hover {
  opacity: 0.3;
}
.footer-sns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-sns ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer-sns ul li a {
  width: 37px;
  height: 37px;
  transition: all 0.3s linear;
}
.footer-sns ul li a:hover {
  opacity: 0.3;
}
.footer-sns ul li a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-kv {
  width: 100%;
}
.top-kv video {
  width: 100%;
}
.top-about .text-animation {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
.top-about .text-animation img {
  width: 70%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-about .text-animation img {
    width: 90%;
  }
}
.top-about .text-animation::before {
  content: "";
  width: 100%;
  height: 200vw;
  position: absolute;
  top: 10vw;
  transform: translateY(-40%);
  background-image: url("../img/border_smoke.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-about .text-animation::before {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-about .text-animation::before {
    height: 420vw;
    top: 35vw;
  }
}
.top-about .about-message {
  width: 100%;
  height: 110vw;
  background-image: url("../img/HelloWorld_KV.jpg");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-about .about-message {
    height: 160vw;
  }
}
@media screen and (max-width: 767px) {
  .top-about .about-message {
    height: 350vw;
  }
}
.top-about .about-message-inner {
  width: 87%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-about .about-message-inner {
    width: 90%;
  }
}
.top-about .about-message-inner .heading {
  min-height: 460px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 20px;
  border-right: 1px solid #FFF;
  padding-right: 10px;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .top-about .about-message-inner .heading {
    width: 100%;
    min-height: auto;
    writing-mode: horizontal-tb;
    position: static;
    padding-bottom: 10px;
    border-right: 0;
    margin-bottom: 30px;
  }
}
.top-about .about-message-inner .heading h2 {
  font-size: 80px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-about .about-message-inner .heading h2 {
    font-size: 20px;
  }
}
.top-about .about-message-inner .heading span {
  font-family: "MaisonNeueLight";
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .top-about .about-message-inner .heading span {
    font-size: 10px;
  }
}
.top-about .about-message-inner img {
  width: 167px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
.top-about .about-message-inner h3 {
  line-height: 2.9411764706;
  text-align: center;
  font-size: 24px;
  margin-bottom: 63px;
  font-family: monospace;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-about .about-message-inner h3 {
    line-height: 2;
    margin-bottom: 30px;
  }
}
.top-about .about-message-inner a {
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
  font-weight: light;
  transition: all 0.3s linear;
}
.top-about .about-message-inner a:hover {
  opacity: 0.3;
}
.top-about .about-message-inner a:hover img {
  transform: translate(50%, -50%);
}
.top-about .about-message-inner a img {
  width: 60px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(0, -50%);
  margin-bottom: 0;
  transition: all 0.3s linear;
}
.top-product {
  width: 100%;
  min-height: 640px;
  padding: 50px 0;
  position: relative;
  background-color: #35373D;
}
.top-product::before {
  content: "";
  width: 100%;
  height: 100vw;
  position: absolute;
  top: -60vw;
  background-image: url("../img/border_smoke_short2.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .top-product::before {
    top: -80vw;
  }
}
@media screen and (max-width: 767px) {
  .top-product::before {
    height: 130vw;
    top: -100vw;
  }
}
.top-product-inner {
  width: 87%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-product-inner {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }
}
.top-product-inner .heading {
  min-height: 460px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 20px;
  border-right: 1px solid #FFF;
  padding-right: 10px;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .top-product-inner .heading {
    width: 100%;
    min-height: auto;
    writing-mode: horizontal-tb;
    position: static;
    padding-bottom: 10px;
    border-right: 0;
    margin-bottom: 30px;
  }
}
.top-product-inner .heading h2 {
  font-size: 80px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-product-inner .heading h2 {
    font-size: 20px;
  }
}
.top-product-inner .heading span {
  font-family: "MaisonNeueLight";
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .top-product-inner .heading span {
    font-size: 10px;
  }
}
.top-product-inner .product-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-product-inner .product-wrapper {
    width: 100%;
    margin: 0;
  }
}
.top-product-inner .product-wrapper .product-list {
  display: flex;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.top-product-inner .product-wrapper .product-list .category {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .top-product-inner .product-wrapper .product-list .category {
    display: none;
  }
}
.top-product-inner .product-wrapper .product-list .category ul {
  width: 100%;
  overflow: hidden;
}
.top-product-inner .product-wrapper .product-list .category ul li {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "MaisonNeueLight";
}
.top-product-inner .product-wrapper .product-list .category ul li .category-body {
  display: none;
}
.top-product-inner .product-wrapper .product-list .category ul li .category-body li {
  margin-left: 16px;
}
.top-product-inner .product-wrapper .product-list .category ul li .category-body.open {
  display: block;
  width: 100%;
}
.top-product-inner .product-wrapper .product-list .category ul li .category-header {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "MaisonNeueBold";
}
.top-product-inner .product-wrapper .product-list .category ul li .category-header p {
  font-size: 16px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.top-product-inner .product-wrapper .product-list .category ul li .category-header p:hover {
  border-bottom-color: #FFF;
}
.top-product-inner .product-wrapper .product-list .category ul li .category-header svg {
  width: 16px;
  height: 8px;
}
.top-product-inner .product-wrapper .product-list .item {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .top-product-inner .product-wrapper .product-list .item {
    width: 100%;
  }
}
.top-product-inner .product-wrapper .product-list .item .scroll-arrow {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: light;
  margin-bottom: 10px;
}
.top-product-inner .product-wrapper .product-list .item .scroll-arrow img {
  width: 155px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-50%);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .top-product-inner .product-wrapper .product-list .item .scroll-arrow img {
    width: 50%;
  }
}
.top-product-inner .product-wrapper .product-list .item .item-scroll {
  width: 100%;
  overflow-x: scroll;
}
.top-product-inner .product-wrapper .product-list .item .item-scroll ul {
  width: 1200px;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .top-product-inner .product-wrapper .product-list .item .item-scroll ul {
    width: 100%;
    gap: 0;
  }
}
.top-product-inner .product-wrapper .product-list .item .item-scroll ul li img {
  width: 360px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-product-inner .product-wrapper .product-list .item .item-scroll ul li img {
    width: 80vw;
  }
}
.top-product-inner .product-wrapper .product-list .item .item-scroll ul li .info {
  margin-top: 20px;
}
.top-product-inner .product-wrapper .product-list .item .item-scroll ul li .info h3 {
  font-size: 24px;
  font-size: "MaisonNeueBlack";
  margin-bottom: 18px;
}
.top-product-inner .product-wrapper .product-list .item .item-scroll ul li .info p {
  font-size: 18px;
  margin-bottom: 16px;
  font-family: "MaisonNeueThin";
}
.top-product-inner .product-wrapper .product-links {
  width: 100%;
  display: flex;
  justify-content: space-around;
  gap: 25px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .top-product-inner .product-wrapper .product-links {
    flex-direction: column;
  }
}
.top-product-inner .product-wrapper .product-links .link {
  width: 300px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFF;
  border-radius: 100px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 767px) {
  .top-product-inner .product-wrapper .product-links .link {
    width: 100%;
  }
}
.top-product-inner .product-wrapper .product-links .link:hover {
  background-color: #FFF;
  color: #35373D;
}
.top-message {
  width: 100%;
  min-height: 860px;
  background-color: #35373D;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .top-message {
    min-height: auto;
    padding: 80px 0;
  }
}
.top-message h2 {
  font-family: "MaisonNeueBlackItalic";
  margin-bottom: 10px;
  font-size: 8vw;
}
@media screen and (max-width: 767px) {
  .top-message h2 {
    margin-bottom: 20px;
    font-size: 7vw;
  }
}
.top-message h2 span {
  display: inline-block;
  transition: all 0.5s ease-out;
  opacity: 0;
  transform: scale(0);
}
.top-message h2 span.expanded {
  opacity: 1;
  transform: scale(1);
}
.top-news {
  width: 100%;
  padding: 20px 0;
  position: relative;
  background-color: #35373D;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 0;
  }
}
.top-news-inner {
  width: 87%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-news-inner {
    width: 90%;
    background-color: #35373D;
    flex-direction: column;
  }
}
.top-news-inner .heading {
  min-height: 460px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 20px;
  border-right: 1px solid #FFF;
  padding-right: 10px;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .top-news-inner .heading {
    width: 100%;
    min-height: auto;
    writing-mode: horizontal-tb;
    position: static;
    padding-bottom: 10px;
    border-right: 0;
    margin-bottom: 30px;
  }
}
.top-news-inner .heading h2 {
  font-size: 80px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-news-inner .heading h2 {
    font-size: 20px;
  }
}
.top-news-inner .heading span {
  font-family: "MaisonNeueLight";
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .top-news-inner .heading span {
    font-size: 10px;
  }
}
.top-news-inner .news-wrapper {
  width: 75%;
  margin: 0 auto;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-news-inner .news-wrapper {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    margin: 0;
    border: none;
  }
}
.top-news-inner .news-wrapper .article-lg {
  flex: 1;
  height: 100%;
  border-right: 1px solid #FFF;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .top-news-inner .news-wrapper .article-lg {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid #FFF;
  }
}
@media screen and (max-width: 767px) {
  .top-news-inner .news-wrapper .article-lg {
    width: 100%;
  }
}
.top-news-inner .news-wrapper .article-lg .article-inner {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 40px 0;
  flex-direction: column;
}
.top-news-inner .news-wrapper .article-lg .article-inner img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news-inner .news-wrapper .article-lg .article-inner .post-info-catdate {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-news-inner .news-wrapper .article-lg .article-inner .post-info-catdate .category {
  width: 100px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #FFF;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-news-inner .news-wrapper .article-lg .article-inner .post-info h3 {
  font-size: 28px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top-news-inner .news-wrapper .article-lg .article-inner .post-info h3 {
    font-size: 24px;
  }
}
.top-news-inner .news-wrapper .article-column {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top-news-inner .news-wrapper .article-column {
    width: 100%;
  }
}
.top-news-inner .news-wrapper .article-column-inner {
  flex: 1;
  height: 33.3333333333%;
  border-bottom: 1px solid #FFF;
  display: flex;
  padding: 40px 0 40px 40px;
}
@media screen and (max-width: 767px) {
  .top-news-inner .news-wrapper .article-column-inner {
    flex-direction: column;
    height: auto;
    padding: 40px 0;
  }
}
.top-news-inner .news-wrapper .article-column-inner img {
  width: 200px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .top-news-inner .news-wrapper .article-column-inner img {
    width: 100%;
    height: 300px;
  }
}
.top-news-inner .news-wrapper .article-column-inner .post-info-catdate {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-news-inner .news-wrapper .article-column-inner .post-info-catdate .category {
  width: 70px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #FFF;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-news-inner .news-wrapper .article-column-inner .post-info h3 {
  font-size: 20px;
  line-height: 1.5;
}
.top-news-inner .news-wrapper .article-column-inner:last-child {
  border-bottom: none;
}
.top-news-inner .news-wrapper .article-less {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top-news-inner .news-wrapper .article-less {
    padding: 0;
    border: none;
  }
}
.top-news-inner .news-wrapper .article-less .article-inner {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 40px 0;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .top-news-inner .news-wrapper .article-less .article-inner {
    flex-direction: column;
    gap: 0;
  }
}
.top-news-inner .news-wrapper .article-less .article-inner img {
  width: 375px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-news-inner .news-wrapper .article-less .article-inner img {
    width: 100%;
  }
}
.top-news-inner .news-wrapper .article-less .article-inner .post-info-catdate {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-news-inner .news-wrapper .article-less .article-inner .post-info-catdate .category {
  width: 100px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #FFF;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-news-inner .news-wrapper .article-less .article-inner .post-info h3 {
  font-size: 32px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top-news-inner .news-wrapper .article-less .article-inner .post-info h3 {
    font-size: 24px;
  }
}
.top-news-bg {
  width: 100%;
  height: 100vw;
  background-image: url("../img/HelloWorld_KV_2.jpg");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-news-bg {
    height: 200vw;
  }
}
.top-news-bg-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.top-news-bg-inner::before {
  content: "";
  width: 100%;
  height: 100vw;
  position: absolute;
  top: -30vw;
  background-image: url("../img/border_smoke_short1.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-news-bg-inner::before {
    height: 200vw;
    top: -70vw;
  }
}
.top-access {
  width: 100%;
  min-height: 640px;
  position: relative;
  background-color: #35373D;
}
.top-access::before {
  content: "";
  width: 100%;
  height: 70vw;
  position: absolute;
  top: -60vw;
  background-image: url("../img/border_smoke_short2.png");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-access::before {
    height: 100vw;
    top: -80vw;
  }
}
.top-access-inner {
  width: 87%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-access-inner {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }
}
.top-access-inner .heading {
  min-height: 460px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 20px;
  border-right: 1px solid #FFF;
  padding-right: 10px;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .top-access-inner .heading {
    width: 100%;
    min-height: auto;
    writing-mode: horizontal-tb;
    position: static;
    padding-bottom: 10px;
    border-right: 0;
    margin-bottom: 30px;
  }
}
.top-access-inner .heading h2 {
  font-size: 80px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-access-inner .heading h2 {
    font-size: 20px;
  }
}
.top-access-inner .heading span {
  font-family: "MaisonNeueLight";
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .top-access-inner .heading span {
    font-size: 10px;
  }
}
.top-access-inner .access-wrapper {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .top-access-inner .access-wrapper {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
}
.top-access-inner .access-wrapper .access-info {
  flex: 1;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-access-inner .access-wrapper .access-info {
    width: 100%;
    margin-bottom: 40px;
  }
}
.top-access-inner .access-wrapper .access-info dl {
  display: flex;
  flex-direction: column;
}
.top-access-inner .access-wrapper .access-info dl dt {
  color: #A5A5A5;
  font-size: 14px;
  font-family: "MaisonNeueThin";
  display: inline-block;
  margin-bottom: 10px;
}
.top-access-inner .access-wrapper .access-info dl dd {
  font-size: 20px;
  line-height: 28px;
}
.top-access-inner .access-wrapper .access-info dl dd span {
  display: block;
  font-size: 15px;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul {
  display: flex;
  align-items: center;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul li span {
  display: block;
  text-align: center;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul .day {
  width: 40px;
  border: 1px solid #FFF;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul .on, .top-access-inner .access-wrapper .access-info dl dd.business-day ul .off, .top-access-inner .access-wrapper .access-info dl dd.business-day ul .tri {
  width: 40px;
  height: 40px;
  position: relative;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul .on > span {
  width: 20px;
  height: 20px;
  border: 1px solid #FFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul .off > span {
  width: 20px;
  height: 20px;
  position: relative;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul .off > span::before, .top-access-inner .access-wrapper .access-info dl dd.business-day ul .off > span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
  background-color: #FFF;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul .off > span::before {
  transform: rotate(45deg);
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul .off > span::after {
  transform: rotate(-45deg);
}
.top-access-inner .access-wrapper .access-info dl dd.business-day ul .tri > span {
  font-size: 20px;
  font-weight: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-access-inner .access-wrapper .access-info dl dd.business-day .time {
  display: flex;
  gap: 22px;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day .time p {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.top-access-inner .access-wrapper .access-info dl dd.business-day .time p span {
  border: 1px solid #FFF;
  text-align: center;
  padding: 0 5px;
  margin-right: 12px;
}
.top-access-inner .access-wrapper .access-map {
  flex: 1.5;
  min-height: 570px;
}
@media screen and (max-width: 767px) {
  .top-access-inner .access-wrapper .access-map {
    min-height: 300px;
  }
}
.top-access-inner .access-wrapper .access-map iframe {
  width: 100%;
  height: 570px;
}
@media screen and (max-width: 767px) {
  .top-access-inner .access-wrapper .access-map iframe {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .top-access-inner .access-wrapper .access-map {
    width: 100%;
  }
}
.top-instagram {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background-color: #343434;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.top-instagram img.logo-instagram {
  width: 43px;
  height: 43px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 55px;
}
.top-instagram-inner {
  width: 100%;
}
.top-instagram-inner .image-scroll {
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top-instagram-inner .image-scroll {
    width: 100%;
    gap: 0;
  }
}
.top-instagram-inner .image-scroll:last-child {
  margin-bottom: 0;
}
.top-instagram-inner .image-scroll img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-project {
  width: 100%;
  background-color: #1A1A1A;
  padding: 145px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-project {
    padding: 80px 0;
  }
}
.top-project-inner {
  width: 87%;
  min-height: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-project-inner {
    width: 90%;
    min-height: auto;
    margin: 0 auto;
    flex-direction: column;
  }
}
.top-project-inner .heading {
  min-height: 460px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 20px;
  border-right: 1px solid #FFF;
  padding-right: 10px;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .top-project-inner .heading {
    width: 100%;
    min-height: auto;
    writing-mode: horizontal-tb;
    position: static;
    padding-bottom: 10px;
    border-right: 0;
    margin-bottom: 30px;
  }
}
.top-project-inner .heading h2 {
  font-size: 80px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-project-inner .heading h2 {
    font-size: 20px;
  }
}
.top-project-inner .heading span {
  font-family: "MaisonNeueLight";
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .top-project-inner .heading span {
    font-size: 10px;
  }
}
.top-project-inner .project-wrapper {
  width: 75%;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-project-inner .project-wrapper {
    width: 100%;
    margin: 0;
  }
}
.top-project-inner .project-wrapper .project-text {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .top-project-inner .project-wrapper .project-text {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .top-project-inner .project-wrapper .project-text {
    width: 100%;
  }
}
.top-project-inner .project-wrapper .project-text h3 {
  margin-bottom: 20px;
}
.top-project-inner .project-wrapper .project-text h3 span {
  font-size: 30px;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-project-inner .project-wrapper .project-text h3 span {
    font-size: 20px;
  }
}
.top-project-inner .project-wrapper .project-text h3 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-project-inner .project-wrapper .project-text p {
  line-height: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top-project-inner .project-wrapper .project-text p {
    margin-bottom: 20px;
  }
}
.top-project-inner .project-wrapper .project-text a.project-link {
  position: relative;
  display: block;
  width: 280px;
  height: 70px;
  margin: 0 auto;
}
.top-project-inner .project-wrapper .project-text a.project-link .white, .top-project-inner .project-wrapper .project-text a.project-link .red, .top-project-inner .project-wrapper .project-text a.project-link .blue {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50px;
  padding: 8px 10px;
}
.top-project-inner .project-wrapper .project-text a.project-link .white img, .top-project-inner .project-wrapper .project-text a.project-link .red img, .top-project-inner .project-wrapper .project-text a.project-link .blue img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  transition: all 0.1s linear;
}
.top-project-inner .project-wrapper .project-text a.project-link .white span, .top-project-inner .project-wrapper .project-text a.project-link .red span, .top-project-inner .project-wrapper .project-text a.project-link .blue span {
  font-size: 27px;
  font-family: "MaisonNeueBlack";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  transition: all 0.1s linear;
}
.top-project-inner .project-wrapper .project-text a.project-link .white {
  border: 3px solid #FFF;
  z-index: 1;
  left: 0;
  white-space: nowrap;
}
.top-project-inner .project-wrapper .project-text a.project-link .white span {
  color: #FFF;
}
.top-project-inner .project-wrapper .project-text a.project-link .red {
  border: 3px solid #F00;
  position: absolute;
}
.top-project-inner .project-wrapper .project-text a.project-link .red span {
  color: #F00;
}
.top-project-inner .project-wrapper .project-text a.project-link .blue {
  border: 3px solid #00F;
  position: absolute;
}
.top-project-inner .project-wrapper .project-text a.project-link .blue span {
  color: #00F;
}
.top-project-inner .project-wrapper .project-text a.project-link:hover .white img, .top-project-inner .project-wrapper .project-text a.project-link:hover .red img, .top-project-inner .project-wrapper .project-text a.project-link:hover .blue img {
  left: calc(95% - 50px);
}
.top-project-inner .project-wrapper .project-text a.project-link:hover .white span, .top-project-inner .project-wrapper .project-text a.project-link:hover .red span, .top-project-inner .project-wrapper .project-text a.project-link:hover .blue span {
  right: 30%;
}
.top-project-inner .project-wrapper .project-text a.project-link:hover .red {
  transform: translateX(-10px);
}
.top-project-inner .project-wrapper .project-text a.project-link:hover .blue {
  transform: translateX(10px);
}
.top-project-inner .project-image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40vw;
}
@media screen and (max-width: 767px) {
  .top-project-inner .project-image {
    width: 100%;
    position: static;
    transform: translateY(0);
    margin: 30px 0;
  }
}
.top-project-inner .project-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-contact {
  width: 100%;
  height: 370px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-contact {
    height: auto;
    padding: 100px 0;
  }
}
.top-contact span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 160px;
  font-size: 80px;
  font-family: "MaisonNeueBlack";
}
@media screen and (max-width: 767px) {
  .top-contact span {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    font-size: 30px;
  }
}
.top-contact span img {
  width: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-brand {
  width: 100%;
  background-color: #FFF;
  position: relative;
}
.top-brand-inner {
  width: 87%;
  min-height: 220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-brand-inner {
    width: 90%;
    min-height: auto;
    margin: 0 auto;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .top-brand-inner a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.top-brand-inner a img {
  width: 20vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-brand-inner a img {
    width: 50%;
  }
}

.subpage-about-message {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.subpage-about-message .message-wrapper {
  width: 100%;
  position: relative;
}
.subpage-about-message .message-wrapper::before {
  content: "";
  width: 100%;
  height: 960px;
  position: absolute;
  top: -70%;
  background-image: url("../img/border_smoke_short2.png");
  background-position: center;
  background-size: cover;
}
.subpage-about-message .message-wrapper .about-animation-section {
  height: 100vh;
  position: relative;
}
.subpage-about-message .message-wrapper .about-animation-section .about-text,
.subpage-about-message .message-wrapper .about-animation-section .about-video {
  width: 100%;
  height: 100%;
}
.subpage-about-message .message-wrapper .about-animation-section .about-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.subpage-about-message .message-wrapper .about-animation-section .about-text ul {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2.5vw;
}
@media screen and (max-width: 767px) {
  .subpage-about-message .message-wrapper .about-animation-section .about-text ul {
    gap: 7vw;
  }
}
.subpage-about-message .message-wrapper .about-animation-section .about-text ul li {
  letter-spacing: 5px;
  list-style: none;
  font-size: 24px;
  color: white;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .subpage-about-message .message-wrapper .about-animation-section .about-text ul li {
    font-size: 16px;
  }
}
.subpage-about-message .message-wrapper .about-animation-section .about-text ul li img {
  width: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .subpage-about-message .message-wrapper .about-animation-section .about-text ul li img {
    width: 120px;
  }
}
.subpage-about-message .message-wrapper .about-animation-section .about-text ul li.active {
  transform: translateY(-80%) rotate(-5deg) scale(0.9);
  opacity: 0;
  filter: blur(12px);
  transition: all 0.5s ease-in;
}
.subpage-about-message .message-wrapper .about-animation-section .about-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper {
  width: 60vw;
  height: auto;
  position: relative;
  filter: blur(10px);
  transform: scale(0.5);
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper {
    width: 90vw;
  }
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 767px) {
  .subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls {
    display: none;
  }
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls button {
    width: 10vw;
  }
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls button img {
  width: 100%;
  height: 100%;
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls-sp {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -20vw;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls-sp button {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12vw;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #fff;
    transition: all 0.5s ease;
  }
  .subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper .controls-sp button img {
    width: 100%;
    height: 100%;
  }
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper:hover .controls {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper.active {
  filter: blur(0);
  transform: scale(1);
  transition: filter 0.8s ease-out, transform 0.8s ease-out;
}
.subpage-about-message .message-wrapper .about-animation-section .about-video-wrapper.active .controls-sp {
  opacity: 1;
}
.subpage-about .super-merge-bg {
  width: 100%;
  height: 930px;
  background-image: url("../img/about-super-merge.jpg");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .subpage-about .super-merge-bg {
    height: 700px;
  }
}
.subpage-about .super-merge {
  width: 100%;
  display: flex;
  padding: 90px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  position: relative;
}
.subpage-about .super-merge::before {
  content: "";
  width: 100vw;
  height: 540px;
  position: absolute;
  top: 0;
  background-image: url("../img/border_smoke_short2.png");
  background-position: center;
  background-size: cover;
  transform: rotate(180deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .subpage-about .super-merge::before {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .subpage-about .super-merge {
    width: 90%;
    margin: 0 auto;
  }
}
.subpage-about .super-merge h3 {
  font-size: 72px;
  font-weight: bold;
  font-family: "Helvetica";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .subpage-about .super-merge h3 {
    font-size: 40px;
  }
}
.subpage-about .super-merge p {
  text-align: center;
  line-height: 60px;
}
@media screen and (max-width: 767px) {
  .subpage-about .super-merge p {
    line-height: 2;
  }
}
.subpage-about .philosophy {
  width: 100%;
  background-image: url("../img/philosophy.jpg");
  background-position: center;
  background-size: cover;
  padding-bottom: 80px;
}
.subpage-about .philosophy-title {
  width: 80vw;
  margin: 0 auto;
  padding: 80px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .subpage-about .philosophy-title {
    width: 90%;
  }
}
.subpage-about .philosophy-title h3 {
  display: block;
  font-size: 32px;
  font-weight: bold;
}
.subpage-about .philosophy-title span {
  width: 50vw;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .subpage-about .philosophy-title span {
    display: none;
  }
}
.subpage-about .philosophy ul {
  width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .subpage-about .philosophy ul {
    width: 90%;
    gap: 40px;
  }
}
.subpage-about .philosophy ul li {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .subpage-about .philosophy ul li {
    flex-direction: column;
    gap: 30px;
  }
}
.subpage-about .philosophy ul li img {
  width: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .subpage-about .philosophy ul li img {
    width: 80px;
  }
}
.subpage-about .philosophy ul li div {
  padding: 0 20px;
}
.subpage-about .philosophy ul li div h4 {
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .subpage-about .philosophy ul li div h4 {
    font-size: 20px;
  }
}
.subpage-about .philosophy ul li div p {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  line-height: 1.5;
}

.subpage-product {
  position: relative;
}
.subpage-product-wrapper {
  width: 100%;
  position: relative;
}
.subpage-product-wrapper .product-smoke {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
}
.subpage-product-wrapper .product-smoke::before {
  content: "";
  width: 100%;
  height: 960px;
  position: absolute;
  top: -120%;
  background-image: url("../img/border_smoke_short2.png");
  background-position: center;
  background-size: cover;
}
.subpage-product-wrapper .product-list {
  width: 150px;
  position: absolute;
  top: 0;
  left: 50px;
}
@media screen and (max-width: 767px) {
  .subpage-product-wrapper .product-list {
    display: none;
  }
}
.subpage-product-wrapper .product-list .list-container .list-heading {
  font-size: 24px;
  font-family: "MaisonNeueBold";
  margin-bottom: 40px;
}
.subpage-product-wrapper .product-list .list-container ul {
  width: 100%;
  overflow: hidden;
}
.subpage-product-wrapper .product-list .list-container ul .category-link {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  line-height: 1.5;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.subpage-product-wrapper .product-list .list-container ul .category-link:hover {
  border-bottom-color: #FFF;
}
.subpage-product-wrapper .product-list .list-container ul .category-link.active {
  border-bottom: 1px solid #FFF;
}
.subpage-product-wrapper .product-list .list-container ul .category-link svg {
  width: 16px;
  height: 8px;
}
.subpage-product-wrapper .product-list .list-container ul .all-category {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "MaisonNeueBold";
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.subpage-product-wrapper .product-list .list-container ul li {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: "MaisonNeueLight";
  line-height: 1.5;
}
.subpage-product-wrapper .product-list .list-container ul li .category-body {
  display: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-left: 16px;
}
.subpage-product-wrapper .product-list .list-container ul li .category-body ul li:hover {
  cursor: pointer;
}
.subpage-product-wrapper .product-list .list-container ul li .category-body.open {
  display: block;
  width: 100%;
}
.subpage-product-wrapper .product-list .list-container ul li .category-header {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  font-family: "MaisonNeueBold";
  font-weight: bold;
}
.subpage-product-wrapper .product-list .list-container ul li .category-header p {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.subpage-product-wrapper .product-list .list-container ul li .category-header p:hover {
  border-bottom-color: #FFF;
}
.subpage-product-wrapper .product-list .list-container ul li .category-header svg {
  width: 16px;
  height: 8px;
}
.subpage-product .product-items {
  width: 70%;
  min-height: 120vh;
  margin: 0 auto;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .subpage-product .product-items {
    width: 90%;
    min-height: auto;
  }
}
.subpage-product .product-items .sort {
  width: 250px;
  height: 40px;
  border: 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.subpage-product .product-items .sort span {
  font-size: 14px;
  width: 30%;
}
.subpage-product .product-items .sort select {
  border: none;
  width: 100%;
  background-color: #35373D;
}
.subpage-product .product-items .span-border {
  display: block;
  width: 100%;
  border: 1px solid #FFF;
  margin: 30px 0;
}
.subpage-product .product-items .item-wrapper {
  width: 100%;
}
.subpage-product .product-items .item-wrapper h3 {
  font-size: 48px;
  margin-bottom: 30px;
}
.subpage-product .product-items .item-wrapper .item-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .subpage-product .product-items .item-wrapper .item-container {
    flex-direction: column;
  }
}
.subpage-product .product-items .item-wrapper .item-container .item {
  width: calc(33.3333333333% - 20px);
  margin-bottom: 80px;
}
.subpage-product .product-items .item-wrapper .item-container .item:hover {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .subpage-product .product-items .item-wrapper .item-container .item {
    width: 100%;
  }
}
.subpage-product .product-items .item-wrapper .item-container .item .item-image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .subpage-product .product-items .item-wrapper .item-container .item .item-image {
    width: 100%;
    height: auto;
  }
}
.subpage-product .product-items .item-wrapper .item-container .item .product-name {
  font-size: 30px;
  font-family: "MaisonNeueBlack";
  margin-bottom: 14px;
}
.subpage-product .product-items .item-wrapper .item-container .item .product-info {
  display: flex;
  margin-bottom: 14px;
  font-size: 14px;
  font-family: "MaisonNeueLight";
}
.subpage-product .product-items .item-wrapper .item-container .item .product-info span:nth-child(even) {
  padding: 0 8px;
}
.subpage-product .product-items .item-wrapper .item-container .item span {
  height: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-family: "MaisonNeueLight";
}
.subpage-product .product-items .item-wrapper .item-container .item span img {
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.subpage-product .product-items .pagenation {
  width: 325px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .subpage-product .product-items .pagenation {
    width: 90%;
  }
}
.subpage-product .product-items .pagenation .page-back img, .subpage-product .product-items .pagenation .page-next img {
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.subpage-product .product-items .pagenation .page-back img {
  transform: translateY(-50%);
}
.subpage-product .product-items .pagenation .page-next img {
  transform: translateY(-50%) scale(-1, 1);
}
.subpage-product .product-items .pagenation .page-num {
  display: flex;
  align-items: center;
  gap: 20px;
}
.subpage-product .product-items .pagenation .page-num span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid #FFF;
  border-radius: 50%;
}
.subpage-product .product-items .pagenation .page-num span.active {
  background-color: #FFF;
  color: #35373D;
}

.subpage-access-wrapper {
  width: 100%;
  position: relative;
}
.subpage-access-wrapper .access-smoke {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
}
.subpage-access-wrapper .access-smoke::before {
  content: "";
  width: 100%;
  height: 960px;
  position: absolute;
  top: -120%;
  background-image: url("../img/border_smoke_short2.png");
  background-position: center;
  background-size: cover;
}
.subpage-access-wrapper .access-info {
  position: relative;
  width: 100%;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 70px;
}
.subpage-access-wrapper .access-info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: -50%;
  transform: translateY(-50%);
  background-image: url("../img/access-logo-bg.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .subpage-access-wrapper .access-info::before {
    left: 0;
  }
}
.subpage-access-wrapper .access-info dl {
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .subpage-access-wrapper .access-info dl {
    width: 90%;
  }
}
.subpage-access-wrapper .access-info dl dt {
  color: #A5A5A5;
  font-size: 14px;
  font-family: "MaisonNeueThin";
  display: inline-block;
  margin-bottom: 10px;
}
.subpage-access-wrapper .access-info dl dd {
  font-size: 20px;
  line-height: 28px;
}
.subpage-access-wrapper .access-info dl dd span {
  display: block;
  font-size: 15px;
}
.subpage-access-wrapper .access-info dl dd.business-day ul {
  display: flex;
  align-items: center;
}
.subpage-access-wrapper .access-info dl dd.business-day ul li span {
  display: block;
  text-align: center;
}
.subpage-access-wrapper .access-info dl dd.business-day ul .day {
  width: 40px;
  border: 1px solid #FFF;
}
.subpage-access-wrapper .access-info dl dd.business-day ul .on, .subpage-access-wrapper .access-info dl dd.business-day ul .off, .subpage-access-wrapper .access-info dl dd.business-day ul .tri {
  width: 40px;
  height: 40px;
  position: relative;
}
.subpage-access-wrapper .access-info dl dd.business-day ul .on > span {
  width: 20px;
  height: 20px;
  border: 1px solid #FFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subpage-access-wrapper .access-info dl dd.business-day ul .off > span {
  width: 20px;
  height: 20px;
  position: relative;
}
.subpage-access-wrapper .access-info dl dd.business-day ul .off > span::before, .subpage-access-wrapper .access-info dl dd.business-day ul .off > span::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
  background-color: #FFF;
}
.subpage-access-wrapper .access-info dl dd.business-day ul .off > span::before {
  transform: rotate(45deg);
}
.subpage-access-wrapper .access-info dl dd.business-day ul .off > span::after {
  transform: rotate(-45deg);
}
.subpage-access-wrapper .access-info dl dd.business-day ul .tri > span {
  font-size: 20px;
  font-weight: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subpage-access-wrapper .access-info dl dd.business-day .time {
  display: flex;
  gap: 22px;
}
.subpage-access-wrapper .access-info dl dd.business-day .time p {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.subpage-access-wrapper .access-info dl dd.business-day .time p span {
  border: 1px solid #FFF;
  text-align: center;
  padding: 0 5px;
  margin-right: 12px;
}
.subpage-access-wrapper .access-map-link {
  display: block;
  width: 300px;
  margin: 0 auto;
  border-radius: 24px;
  background-color: #505050;
  color: #FFF;
  text-align: center;
  padding: 16px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .subpage-access-wrapper .access-map-link {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .subpage-access-wrapper .access-map {
    width: 90%;
    margin: 0 auto;
  }
}
.subpage-access-wrapper .access-map iframe {
  width: 100%;
  height: 530px;
}
@media screen and (max-width: 767px) {
  .subpage-access-wrapper .access-map iframe {
    height: 300px;
  }
}

.subpage-news-wrapper {
  width: 100%;
  position: relative;
}
.subpage-news-wrapper .news-smoke {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
}
.subpage-news-wrapper .news-smoke::before {
  content: "";
  width: 100%;
  height: 960px;
  position: absolute;
  top: -120%;
  background-image: url("../img/border_smoke_short2.png");
  background-position: center;
  background-size: cover;
}
.subpage-news-wrapper .news-list {
  position: absolute;
  top: 0;
  left: 50px;
}
@media screen and (max-width: 767px) {
  .subpage-news-wrapper .news-list {
    display: none;
  }
}
.subpage-news-wrapper .news-list .list-container {
  margin-bottom: 50px;
}
.subpage-news-wrapper .news-list .list-container p {
  font-size: 24px;
  font-family: "MaisonNeueBold";
  margin-bottom: 10px;
}
.subpage-news-wrapper .news-list .list-container ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.subpage-news-wrapper .news-list .list-container ul li {
  font-family: "MaisonNeueLight";
  line-height: 24px;
  padding-left: 12px;
}
.subpage-news .news-items {
  width: 75%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items {
    width: 90%;
  }
}
.subpage-news .news-items .article-wrapper-first {
  width: 100%;
}
.subpage-news .news-items .article-wrapper-first > article .article-inner {
  width: 100%;
  padding: 40px 0;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-first > article .article-inner {
    flex-direction: column;
    gap: 0;
  }
}
.subpage-news .news-items .article-wrapper-first > article .article-inner img {
  width: 375px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-first > article .article-inner img {
    width: 100%;
  }
}
.subpage-news .news-items .article-wrapper-first > article .article-inner .post-info-catdate {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.subpage-news .news-items .article-wrapper-first > article .article-inner .post-info-catdate .category {
  width: 100px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #FFF;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subpage-news .news-items .article-wrapper-first > article .article-inner .post-info h3 {
  font-size: 30px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-first > article .article-inner .post-info h3 {
    font-size: 24px;
  }
}
.subpage-news .news-items .article-wrapper-second {
  width: 100%;
  height: 800px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-second {
    flex-direction: column;
    height: auto;
    border: none;
  }
}
.subpage-news .news-items .article-wrapper-second .article-lg {
  flex: 1;
  height: 100%;
  border-right: 1px solid #FFF;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-second .article-lg {
    border: none;
    padding: 40px 0;
  }
}
.subpage-news .news-items .article-wrapper-second .article-lg .article-inner {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 40px 0;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-second .article-lg .article-inner {
    padding: 0;
  }
}
.subpage-news .news-items .article-wrapper-second .article-lg .article-inner img {
  width: 300px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-second .article-lg .article-inner img {
    width: 100%;
  }
}
.subpage-news .news-items .article-wrapper-second .article-lg .article-inner .post-info-catdate {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.subpage-news .news-items .article-wrapper-second .article-lg .article-inner .post-info-catdate .category {
  width: 100px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #FFF;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.subpage-news .news-items .article-wrapper-second .article-lg .article-inner .post-info h3 {
  font-size: 28px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-second .article-lg .article-inner .post-info h3 {
    font-size: 24px;
  }
}
.subpage-news .news-items .article-wrapper-second .article-column {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.subpage-news .news-items .article-wrapper-second .article-column-inner {
  flex: 1;
  height: 33.3333333333%;
  border-bottom: 1px solid #FFF;
  display: flex;
  padding: 40px 0 40px 40px;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-second .article-column-inner {
    flex-direction: column;
    padding: 40px 0;
    border: none;
  }
}
.subpage-news .news-items .article-wrapper-second .article-column-inner img {
  width: 200px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-second .article-column-inner img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.subpage-news .news-items .article-wrapper-second .article-column-inner .post-info-catdate {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.subpage-news .news-items .article-wrapper-second .article-column-inner .post-info-catdate .category {
  width: 70px;
  padding: 10px 0;
  border-radius: 20px;
  background-color: #FFF;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-second .article-column-inner .post-info-catdate .category {
    width: 100px;
  }
}
.subpage-news .news-items .article-wrapper-second .article-column-inner .post-info h3 {
  font-size: 20px;
  line-height: 1.5;
}
.subpage-news .news-items .article-wrapper-second .article-column-inner:last-child {
  border-bottom: none;
}
.subpage-news .news-items .article-wrapper-lines {
  width: 100%;
}
.subpage-news .news-items .article-wrapper-lines a {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #FFF;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-lines a {
    flex-direction: column;
    height: auto;
  }
}
.subpage-news .news-items .article-wrapper-lines a .article-date {
  width: 150px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-lines a .article-date {
    width: 100%;
    margin: 10px 0;
  }
}
.subpage-news .news-items .article-wrapper-lines a .article-title {
  width: 85%;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .subpage-news .news-items .article-wrapper-lines a .article-title {
    width: 100%;
    padding-bottom: 10px;
  }
}
.subpage-news .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0 120px;
}
.subpage-news .pagination-wrapper ul {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .subpage-news .pagination-wrapper ul {
    gap: 30px;
  }
}

.single-news {
  padding-top: 200px;
}
@media screen and (max-width: 767px) {
  .single-news {
    padding-top: 100px;
  }
}
.single-news-wrapper {
  width: calc(100% - 160px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .single-news-wrapper {
    width: 90%;
  }
}
.single-news .category {
  margin-top: 55px;
  margin-bottom: 20px;
}
.single-news .article-inner {
  width: 100%;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .single-news .article-inner {
    flex-direction: column;
  }
}
.single-news .article-inner .title {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .single-news .article-inner .title {
    width: 100%;
  }
}
.single-news .article-inner .title h3 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.single-news .article-inner .title p {
  font-size: 12px;
  line-height: 1.5;
}
.single-news .article-inner .title a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.single-news .article-inner .title a span img {
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-50%);
}
.single-news .article-inner .body {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .single-news .article-inner .body {
    width: 100%;
  }
}
.single-news .article-inner .body img {
  width: 100%;
  max-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
.single-news .article-inner .body h1, .single-news .article-inner .body h2, .single-news .article-inner .body h3, .single-news .article-inner .body h4, .single-news .article-inner .body p {
  margin-bottom: 40px;
  line-height: 1.5;
}
.single-news .article-inner .body h1 {
  font-size: 30px;
}
.single-news .article-inner .body h2 {
  font-size: 24px;
}
.single-news .article-inner .body h3 {
  font-size: 20px;
}
.single-news .article-inner .body h4 {
  font-size: 18px;
}
.single-news .article-inner .body p {
  font-size: 14px;
}
.single-news .pagination {
  width: 65%;
  margin: 40px 0 80px auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .single-news .pagination {
    width: 100%;
  }
}
.single-news .pagination-previous, .single-news .pagination-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  font-size: 28px;
  font-family: "MaisonNeueBlack";
  gap: 20px;
}
.single-news .pagination-previous img, .single-news .pagination-next img {
  width: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-news .pagination-prev {
  left: 0;
}
.single-news .pagination-next {
  right: 0;
}
.single-news .pagination-next img {
  transform: rotate(180deg);
}

.subpage-contact-wrapper {
  width: 100%;
  position: relative;
}
.subpage-contact-wrapper .contact-smoke {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
}
.subpage-contact-wrapper .contact-smoke::before {
  content: "";
  width: 100%;
  height: 960px;
  position: absolute;
  top: -120%;
  background-image: url("../img/border_smoke_short2.png");
  background-position: center;
  background-size: cover;
}
.subpage-contact-wrapper .form-section {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .subpage-contact-wrapper .form-section {
    width: 90%;
    margin: 0 auto;
  }
}
.subpage-contact-wrapper .form-section h3 {
  font-size: 30px;
  margin-bottom: 80px;
}
.subpage-contact-wrapper .form-section .wpcf7 {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .subpage-contact-wrapper .form-section .wpcf7 {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .subpage-contact-wrapper .form-section .wpcf7 {
    width: 100%;
  }
}
.subpage-contact-wrapper .form-section .wpcf7 form {
  width: 100%;
}
.subpage-contact-wrapper .form-section .wpcf7 form ul {
  width: 100%;
}
.subpage-contact-wrapper .form-section .wpcf7 form ul li {
  margin-bottom: 40px;
}
.subpage-contact-wrapper .form-section .wpcf7 form ul li p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .subpage-contact-wrapper .form-section .wpcf7 form ul li p {
    align-items: start;
    flex-direction: column;
  }
}
.subpage-contact-wrapper .form-section .wpcf7 form ul li p span {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .subpage-contact-wrapper .form-section .wpcf7 form ul li p span {
    margin-bottom: 10px;
  }
}
.subpage-contact-wrapper .form-section .wpcf7 form ul li p span input, .subpage-contact-wrapper .form-section .wpcf7 form ul li p span select, .subpage-contact-wrapper .form-section .wpcf7 form ul li p span textarea {
  width: 350px;
  display: block;
  padding: 12px 10px;
  color: #161719;
}
@media screen and (max-width: 767px) {
  .subpage-contact-wrapper .form-section .wpcf7 form ul li p span input, .subpage-contact-wrapper .form-section .wpcf7 form ul li p span select, .subpage-contact-wrapper .form-section .wpcf7 form ul li p span textarea {
    width: 90vw;
  }
}
.subpage-contact-wrapper .form-section .wpcf7 form ul .privacy-policy {
  width: 350px;
  margin: 0 auto;
}
.subpage-contact-wrapper .form-section .wpcf7 form ul .privacy-policy p {
  text-align: center;
}
.subpage-contact-wrapper .form-section .wpcf7 form ul .privacy-policy p label {
  display: flex;
  align-items: center;
  gap: 16px;
}
.subpage-contact-wrapper .form-section .wpcf7 form ul .privacy-policy p label input[type=checkbox] {
  width: 30px;
  height: 30px;
}
.subpage-contact-wrapper .form-section .wpcf7 form ul .privacy-policy p a {
  text-decoration: underline;
}
.subpage-contact-wrapper .form-section .wpcf7 form input.wpcf7-submit {
  width: 250px;
  margin: 60px auto 0;
  padding: 16px 0;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #000;
}
.subpage-contact-wrapper .form-section .wpcf7 form input.wpcf7-submit:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .subpage-contact-wrapper .form-section .wpcf7 form input.wpcf7-submit {
    width: 100%;
  }
}
.subpage-contact-wrapper .form-section .wpcf7 form input.wpcf7-previous {
  margin: 60px auto 0;
  padding: 0 20px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #35373D;
  border: none;
  border-bottom: 1px solid #FFF;
}
.subpage-contact-wrapper .form-section .wpcf7 form input.wpcf7-previous:hover {
  cursor: pointer;
}
.subpage-contact-wrapper .form-section select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.subpage-privacy-policy {
  width: 100%;
  background-image: url("../img/kv-privacy-policy.jpg");
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.subpage-privacy-policy-inner {
  width: calc(100% - 160px);
  margin: 0 auto;
  padding: 57px 0;
}
@media screen and (max-width: 767px) {
  .subpage-privacy-policy-inner {
    width: 90%;
  }
}
.subpage-privacy-policy-inner .subpage-privacy-policy-title {
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 210px;
}
@media screen and (max-width: 767px) {
  .subpage-privacy-policy-inner .subpage-privacy-policy-title {
    line-height: normal;
    flex-direction: column;
    align-items: start;
    margin: 40px 0;
  }
}
.subpage-privacy-policy-inner .subpage-privacy-policy-title h1 {
  font-size: 80px;
  font-family: "MaisonNeueBold";
}
@media screen and (max-width: 767px) {
  .subpage-privacy-policy-inner .subpage-privacy-policy-title h1 {
    font-size: 40px;
  }
}
.subpage-privacy-policy-inner .subpage-privacy-policy-title span {
  font-size: 16px;
}
.subpage-privacy-policy-body {
  width: 900px;
  margin: 0 auto;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .subpage-privacy-policy-body {
    width: 90%;
  }
}
.subpage-privacy-policy-body ul li {
  margin-bottom: 80px;
}
.subpage-privacy-policy-body ul li h3 {
  font-size: 26px;
  margin-bottom: 30px;
}
.subpage-privacy-policy-body ul li p a {
  text-decoration: underline;
  word-break: break-all;
}
.subpage-privacy-policy-body .signature {
  margin-bottom: 80px;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.swiper, .swiper-reverse {
  width: 100%;
  height: 280px;
}
.swiper .swiper-wrapper, .swiper-reverse .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper .swiper-wrapper .swiper-slide, .swiper-reverse .swiper-wrapper .swiper-slide {
  padding: 15px 30px;
  height: 100%;
}
.swiper .swiper-wrapper .swiper-slide img, .swiper-reverse .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}