@charset "UTF-8";
/*------------------------------------------------------------
Variable Header
------------------------------------------------------------*/
/*------------------------------------------------------------
Text Color
------------------------------------------------------------*/
/*------------------------------------------------------------
Background color
------------------------------------------------------------*/
/*------------------------------------------------------------
Base
------------------------------------------------------------*/
/*------------------------------------------------------------
page
------------------------------------------------------------*/
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

table,
input,
textarea,
select,
option {
  line-height: 1.1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

input,
textarea {
  box-sizing: border-box;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

@font-face {
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  src: url("/ja/assets/fonts/Hiragino_Kaku_Gothic_ProN_W6.otf") format("opentype");
}
@font-face {
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  src: url("/ja/assets/fonts/Hiragino_Kaku_Gothic_ProN_W3.otf") format("truetype");
}
@font-face {
  font-family: "Yu_Mincho";
  src: url("/ja/assets/fonts/Yu-Mincho-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Yu_Gothic";
  src: url("/ja/assets/fonts/Yu-Gothic.ttf") format("truetype");
}
@font-face {
  font-family: "Yu_Gothic_Light";
  src: url("/ja/assets/fonts/Yu-Gothic-Light.ttf") format("truetype");
}
/*------------------------------------------------------------
theme (css variables)
------------------------------------------------------------*/
body.theme-brand1 {
  --color-bg: #ffe8e8;
  --color-text: #8a0000;
  --color-primary: #ff2b2b;
  --color-border: #ff9b9b;
}

body.theme-brand2 {
  --color-bg: #e8ffec;
  --color-text: #00561f;
  --color-primary: #00c853;
  --color-border: #8affb1;
}

body.theme-brand3 {
  --color-bg: #f8e8ff;
  --color-text: #3d0066;
  --color-primary: #a400ff;
  --color-border: #dca8ff;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.header {
  display: flex;
  align-items: center;
  height: 8rem;
  position: fixed;
  width: 100%;
  z-index: 999;
  background: #FFF;
  padding: 0 4rem;
}
@media only screen and (max-width: 1100px) {
  .header {
    padding: 0 3rem;
    justify-content: space-between;
    column-gap: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    height: 7rem;
  }
}
.header::after {
  content: "";
  position: fixed;
  height: 1.3rem;
  top: 6.7rem;
  left: 0;
  width: 100%;
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 10000;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .header::after {
    top: 5.7rem;
  }
}
.header .header_container {
  width: 98.4rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1100px) {
  .header .header_container {
    width: -webkit-fill-available;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_container {
    width: 100%;
  }
}
.header .header_container .header_wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  .header .header_container .header_wrapper {
    column-gap: 5rem;
  }
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper {
    column-gap: 0;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 790px) {
  .header .header_container .header_wrapper {
    column-gap: 1.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_nav {
    position: fixed;
    top: 6.9rem;
    right: -100%;
    z-index: 998;
    transition: all 0.3s;
    width: 100%;
    height: 100vh;
    padding: 4rem 2rem;
    background-color: #FFF;
  }
}
.header .header_container .header_wrapper .header_nav .header_nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3.3rem;
  color: #3F6994;
  font-size: 1.4rem;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6", sans-serif;
}
@media only screen and (max-width: 1100px) {
  .header .header_container .header_wrapper .header_nav .header_nav-list {
    column-gap: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_nav .header_nav-list {
    display: block;
    margin: 0 auto;
    width: 24.5rem;
    box-sizing: content-box;
    border-left: 0.1rem solid #3F6994;
    border-right: 0.1rem solid #3F6994;
  }
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item {
  position: relative;
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header_nav-link {
  padding: 1.5rem 0;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header_nav-link {
    text-align: center;
    display: block;
    padding: 1.2rem 0;
  }
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header_nav-link:hover a {
  opacity: 0.6;
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header_nav-link:hover span {
  opacity: 1;
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu {
  position: absolute;
  bottom: -2.8rem;
  left: auto;
  right: 0;
  width: max-content;
  transform: translateY(100%);
  z-index: 999;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu {
    position: unset;
    bottom: 0;
    transform: translateY(0);
    width: 100%;
    min-width: unset;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.8s ease;
  }
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu._active {
    opacity: 1;
    visibility: visible;
    height: 21rem;
  }
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu .header-submenu-item {
    background-color: #D9E9F8;
    padding: 0 1.5rem;
  }
  .header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu .header-submenu-item .header-submenu-link {
    text-align: center;
  }
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu .header-submenu-item:last-child .header-submenu-link {
  border-bottom: none;
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu .header-submenu-item .header-submenu-link {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 0.1rem solid rgba(63, 105, 148, 0.3);
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  transition: all 0.2s;
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu .header-submenu-item .header-submenu-link {
    text-align: center;
  }
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item .header-submenu .header-submenu-item .header-submenu-link:hover {
  opacity: 0.6;
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item.-has_submenu .header_nav-link::after {
  content: url(../images/common/arrow_01.svg);
  line-height: 0;
  margin-left: 5px;
  display: inline-block;
  transition: all 0.4s;
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item.-has_submenu .header_nav-link._active-submenu::after {
  transform: rotate(180deg);
  transition: all 0.4s;
}
.header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item.-has_submenu:hover .header-submenu {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}
@media only screen and (min-width: 991px) {
  .header .header_container .header_wrapper .header_nav .header_nav-list .header_nav-item.-has_submenu:hover .header_nav-link::after {
    transform: rotate(180deg);
    transition: all 0.4s;
  }
}
.header .header_container .header_wrapper .header_nav._active {
  right: 0;
  transition: all 0.3s;
}
.header .header_container .header_wrapper .header_logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_logo {
    position: unset;
    transform: unset;
  }
}
.header .header_container .header_wrapper .header_logo:hover a img {
  opacity: 0.6;
}
.header .header_container .header_wrapper .header_logo a {
  display: block;
}
.header .header_container .header_wrapper .header_logo a img {
  width: 12.5rem;
  transition: all 0.3;
}
@media only screen and (max-width: 767px) {
  .header .header_container .header_wrapper .header_logo a img {
    width: 10.9rem;
  }
}
.header .header_container .header_wrapper .header_hamburger-menu {
  display: none;
  z-index: 999;
  cursor: pointer;
}
.header .header_container .header_wrapper .header_hamburger-menu .line1,
.header .header_container .header_wrapper .header_hamburger-menu .line2,
.header .header_container .header_wrapper .header_hamburger-menu .line3 {
  display: block;
  width: 2.8rem;
  height: 0.2rem;
  margin: 0.8rem 0;
  background-color: #333333;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .header .header_container .header_wrapper .header_hamburger-menu {
    display: block;
  }
}
.header .header_container .header_wrapper .header_hamburger-menu._active .line1 {
  transform: rotate(-45deg) translate(-0.8rem, 0.6rem);
}
.header .header_container .header_wrapper .header_hamburger-menu._active .line2 {
  opacity: 0;
}
.header .header_container .header_wrapper .header_hamburger-menu._active .line3 {
  transform: rotate(45deg) translate(-0.8rem, -0.6rem);
}
@media only screen and (max-width: 1100px) {
  .header .header-btn-pc {
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .header .header-btn-pc {
    display: none;
  }
}
.header .header-btn-mobile {
  display: none;
}
@media only screen and (max-width: 991px) {
  .header .header-btn-mobile {
    margin-top: 4rem;
    text-align: center;
    display: block;
  }
}

._is-visible {
  visibility: hidden;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.footer {
  width: 100%;
  height: 100%;
  padding: 4.8rem 4.7rem 4.3rem 4.6rem;
  background-color: #418FDE;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 3.7rem 2rem 5.6rem;
  }
}
.footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 150rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper {
    flex-direction: column;
    row-gap: 4.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-left {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4.8rem;
  }
}
.footer .footer-wrapper .footer-left .footer-logo {
  padding-bottom: 11.7rem;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-left .footer-logo {
    padding: 0;
  }
}
.footer .footer-wrapper .footer-left .footer-logo img {
  width: 22rem;
  height: 8.1rem;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-left .footer-logo img {
    width: 19rem;
    height: 7.1rem;
  }
}
.footer .footer-wrapper .footer-left .footer-logo:hover img {
  opacity: 0.6;
}
.footer .footer-wrapper .footer-left .footer-copyright {
  color: #fff;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-left .footer-copyright {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right {
    order: 1;
  }
}
.footer .footer-wrapper .footer-right .footer-nav {
  margin-top: 0.3rem;
  min-width: 455px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav {
    min-width: unset;
  }
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list {
  display: flex;
  gap: 3.3rem;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list {
    flex-direction: column;
    gap: 0;
  }
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item {
  color: #fff;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link {
  transition: all 0.3s;
  position: relative;
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link {
    display: block;
    padding: 2.15rem 1.6rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.5);
  }
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-nav-link::after {
    display: inline-block;
    content: url("/ja/assets/images/common/arrow_08.svg");
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: all 0.4s;
  }
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item a.footer-nav-link:hover {
  opacity: 0.6;
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item span.footer-nav-link:hover {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-nav-dropdown::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 18px;
    background: #fff;
    height: 14px;
    width: 2px;
    transition: 0.3s ease-in-out;
  }
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-nav-dropdown::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 14px;
    background: #fff;
    top: 31px;
    right: 12px;
    transition: 0.3s ease-in-out;
  }
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-nav-dropdown._active-submenu::before {
    transform: rotate(90deg);
  }
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-nav-dropdown._active-submenu::after {
    top: 31px;
    transform: unset;
    opacity: 0;
  }
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu {
  margin-top: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu {
    width: 100%;
    min-width: unset;
    padding: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease, opacity 0.8s ease;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu._active {
    opacity: 1;
    visibility: visible;
    height: 19.2rem;
  }
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu .footer-submenu-item {
  color: #fff;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 1.7rem;
  transition: all 0.3s;
  position: relative;
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu .footer-submenu-item:hover {
  opacity: 0.6;
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu .footer-submenu-item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu .footer-submenu-item::after {
    display: inline-block;
    content: url("/ja/assets/images/common/arrow_08.svg");
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: all 0.4s;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu .footer-submenu-item {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item .footer-submenu .footer-submenu-item a {
    display: block;
    padding: 1.35rem 4.5rem;
    text-align: right;
  }
}
.footer .footer-wrapper .footer-right .footer-nav .footer-nav-list .footer-nav-item.-has_submenu .footer-nav-link._active-submenu::after {
  transform: rotate(90deg);
  transition: all 0.4s;
  top: 38%;
}
.footer .c-btn-pagetop {
  position: unset;
  opacity: 0;
  visibility: hidden;
  display: block;
  margin-left: auto;
  margin-right: -27px;
  transform: translateY(-80px);
}
@media only screen and (max-width: 767px) {
  .footer .c-btn-pagetop {
    margin-right: 0;
    transform: translateY(-60px);
  }
}
.footer .c-btn-pagetop.is-footer {
  opacity: 1;
  visibility: visible;
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  min-width: 35rem;
  position: relative;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

._body-unscroll {
  overflow: hidden;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

._section {
  padding: 9.2rem 0 9.65rem;
}
@media only screen and (max-width: 767px) {
  ._section {
    padding: 9.05rem 0;
  }
}

#scroll-container {
  height: 100%;
  height: 100%;
  overflow: hidden;
}

.scrollbar-track {
  z-index: 9999 !important;
}

.scrollbar-thumb {
  z-index: 9999 !important;
}

.breadcrumbs-area {
  padding: 10px 48px;
  border-top: 1px solid rgba(65, 143, 222, 0.5);
  background: #FFF;
}
.breadcrumbs-area li {
  color: #333;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 13px;
  font-style: normal;
  line-height: normal;
  display: inline-block;
  font-weight: normal;
}
.breadcrumbs-area li:first-child {
  margin-left: 0;
}
.breadcrumbs-area li:after {
  content: ">";
  margin-left: 5px;
}
.breadcrumbs-area li:last-child::after {
  content: "";
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Button
------------------------------------------------------------*/
.c-btn-white, .c-btn-gray, .c-btn-blue {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  max-height: 4rem;
  min-width: 15.6rem;
  border: 0.1rem solid #fff;
  border-radius: 0.2rem;
  transition: 0.3s ease;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .c-btn-white, .c-btn-gray, .c-btn-blue {
    min-width: 17.4rem;
    padding: 0.9rem;
    max-height: 5rem;
  }
}
.c-btn-white::after, .c-btn-gray::after, .c-btn-blue::after {
  position: absolute;
  display: inline-block;
  height: 0.5rem;
  content: "";
  background: url(/ja/assets/images/common/arrow_04.svg) no-repeat left center;
  width: 86px;
  background-size: 86px;
  top: 45%;
  right: -74%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  line-height: 0;
}
@media only screen and (max-width: 991px) {
  .c-btn-white::after, .c-btn-gray::after, .c-btn-blue::after {
    right: -66%;
    top: 46%;
  }
}
.c-btn-white:hover, .c-btn-gray:hover, .c-btn-blue:hover {
  color: #418FDE;
  background-color: #FFF;
  transition: all 0.3;
}
.c-btn-white:hover:after, .c-btn-gray:hover:after, .c-btn-blue:hover:after {
  right: -83%;
}

.c-btn-blue {
  border: 0.1rem solid #418FDE;
  color: #418FDE;
}
.c-btn-blue::after {
  content: "";
  width: 96px;
  height: 96px;
  mask: url(/ja/assets/images/common/arrow_06.svg) no-repeat center;
  mask-size: 96px;
  background-color: #418FDE;
}
.c-btn-blue:hover {
  color: #fff;
  background-color: #418FDE;
  transition: all 0.3;
}
.c-btn-blue:hover:after {
  right: -83%;
}

.c-btn-gray {
  border: 0.1rem solid #828282;
  color: #828282;
}
.c-btn-gray::after {
  background: url(/ja/assets/images/common/arrow_06.svg) no-repeat left center;
  width: 96px;
  background-size: 96px;
}
.c-btn-gray:hover {
  color: #fff;
  background-color: #828282;
  transition: all 0.3;
}
.c-btn-gray:hover:after {
  right: -83%;
}

.c-btn-pagetop {
  position: fixed;
  bottom: 9rem;
  right: 2rem;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .c-btn-pagetop {
    bottom: 3rem;
    width: 4.6rem;
  }
}
.c-btn-pagetop._show {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}
.c-btn-pagetop.is-footer {
  opacity: 0;
  visibility: hidden;
}

.c-btn-primary {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  width: max-content;
  background-color: #418FDE;
  border: 0.2rem solid #418FDE;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.7px;
  color: #fff;
}
.c-btn-primary:hover {
  background-color: #FFF;
  color: #418FDE;
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
.c-main-title {
  margin-bottom: 4.9rem;
}
@media only screen and (max-width: 767px) {
  .c-main-title {
    margin-bottom: 4rem;
  }
}
.c-main-title h2 {
  color: #3F6994;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Yu_Mincho", sans-serif;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 7rem;
}
@media only screen and (max-width: 767px) {
  .c-main-title h2 {
    font-size: 4rem;
  }
}
.c-main-title p {
  color: #333333;
  text-align: center;
  font-feature-settings: "pwid" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 4rem;
  letter-spacing: 0.18rem;
  margin-top: -0.6rem;
}
@media only screen and (max-width: 767px) {
  .c-main-title p {
    font-size: 1.6rem;
    line-height: 4rem;
    letter-spacing: 0.16rem;
    margin-top: -1rem;
  }
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
.news-page {
  max-width: 1000px;
  padding-top: 54px;
  margin: 0 auto;
  margin-bottom: 200px;
}
@media only screen and (max-width: 1024px) {
  .news-page {
    padding: 48px 20px 0;
    margin-bottom: 96px;
  }
}
.news-page__title {
  color: #828282;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Yu_Mincho";
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 70px;
  margin-bottom: 38px;
}
.news-page__subtitle {
  display: block;
  color: #333;
  text-align: center;
  font-feature-settings: "pwid" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 40px;
  letter-spacing: 1.8px;
}
.news-page__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 72px;
  gap: 16px;
  align-self: stretch;
  border-bottom: 1px solid #418FDE;
}
@media only screen and (max-width: 767px) {
  .news-page__tabs {
    gap: 0px;
  }
}
.news-page__tab {
  border: none;
  background: #E0E0E0;
  cursor: pointer;
  color: rgb(0, 0, 0);
  transition: background-color 0.3s;
  border-radius: 8px 8px 0 0;
  display: flex;
  width: 152px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #333;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.8px;
}
@media only screen and (max-width: 767px) {
  .news-page__tab {
    width: 100%;
    font-size: 15px;
  }
  .news-page__tab:first-child {
    margin-right: 16px;
  }
}
.news-page__tab:hover {
  background-color: #d5d5d5;
}
.news-page__tab--active {
  background: #418FDE;
  color: #fff;
}
.news-page__tab--active:hover {
  background: #418FDE;
  color: #fff;
}
.news-page__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
@media only screen and (max-width: 867px) {
  .news-page__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 525px) {
  .news-page__cards {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}
.news-page__pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.news-page__pagination button {
  border: none;
  border-radius: 4px;
  padding: 0px;
  cursor: pointer;
  color: #333;
  text-align: right;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.news-page__pagination button:disabled {
  cursor: not-allowed;
}

/* ================================
 NEWS CARD (HỖ TRỢ THẺ A BÊN TRONG)
 ================================ */
.news-card {
  border-radius: 24px;
  background: #FFF;
  box-shadow: 5px 4px 15px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: opacity 0.4s ease;
  display: block;
}
.news-card:hover {
  opacity: 0.7;
}
.news-card {
  /* ===== thẻ a ===== */
}
.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 0;
}
.news-card {
  /* ===== image ===== */
}
.news-card__image {
  width: 100%;
  transition: transform 0.4s ease;
  border-bottom: 1px solid #B4B3B3;
  overflow: hidden;
  position: relative;
  padding: 66.3157894737% 0 0;
}
.news-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  transform: rotate(0.01deg);
}
.news-card:hover .news-card__image img {
  transform: scale(1.04) rotate(0.001deg);
}
.news-card__content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.news-card {
  /* ===== tags ===== */
}
.news-card__tags {
  margin-bottom: 8px;
}
.news-card__tag {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.8px;
  border-radius: 8px;
  padding: 5px 16px 7px;
}
.news-card__tag--blue {
  background-color: #418FDE;
}
.news-card__tag--gray {
  background-color: #888;
}
.news-card {
  /* ===== title ===== */
}
.news-card__title {
  color: #333;
  font-feature-settings: "palt" on;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic ProN W3", "Yu Gothic Medium", "Yu Gothic Medium", arial, "Meiryo", Meiryo, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 250;
  line-height: normal;
  letter-spacing: 0.8px;
  padding: 16px 0;
}
.news-card {
  /* ===== date ===== */
}
.news-card__date {
  color: #333;
  text-align: right;
  font-feature-settings: "palt" on;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-top: auto;
}

.news-page__pagination {
  margin-top: 104px;
  display: flex;
  justify-content: center;
  padding-bottom: 72px;
  border-bottom: 1px solid #418FDE;
}
@media only screen and (max-width: 767px) {
  .news-page__pagination {
    border-bottom: 2px solid #418FDE;
  }
}

.news-pager-items {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .news-pager-items {
    gap: 24px;
  }
}

.news-pager-item {
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
  color: #333333;
  text-align: right;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .news-pager-item {
    font-size: 18px;
  }
}
.news-pager-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.news-pager-item:hover:not(.-current) a {
  color: #418FDE;
}
.news-pager-item.-current a {
  color: #418FDE;
  pointer-events: none;
  border-bottom: 2px solid #418FDE;
}
.news-pager-item {
  /* prev / next */
}
.news-pager-item.-prev svg {
  transform: rotateY(180deg);
  margin-right: 8px;
}
.news-pager-item.-next svg {
  margin-left: 8px;
}
.news-pager-item.-prev a, .news-pager-item.-next a {
  color: #333333;
}
.news-pager-item.-prev.disabled, .news-pager-item.-next.disabled {
  display: none;
}
.news-pager-item.-prev svg, .news-pager-item.-next svg {
  transition: stroke 0.25s ease;
}
.news-pager-item.-prev:hover a, .news-pager-item.-prev:hover a span, .news-pager-item.-next:hover a, .news-pager-item.-next:hover a span {
  color: #418FDE;
}
.news-pager-item.-prev:hover a svg path,
.news-pager-item.-prev:hover a svg line, .news-pager-item.-prev:hover a span svg path,
.news-pager-item.-prev:hover a span svg line, .news-pager-item.-next:hover a svg path,
.news-pager-item.-next:hover a svg line, .news-pager-item.-next:hover a span svg path,
.news-pager-item.-next:hover a span svg line {
  stroke: #418FDE;
}

.sekkisei-page .vertical-tabs .tab .tab-content,
.sekkisei-page .campaign,
.sekkisei-page .pickup,
.sekkisei-page .brands,
.sekkisei-page .duty-free {
  background-color: #E0EBFF !important;
}

.decorte-page .vertical-tabs .tab .tab-content,
.decorte-page .campaign,
.decorte-page .pickup,
.decorte-page .brands,
.decorte-page .duty-free {
  background-color: #F7F4FB !important;
}

.addiction-page .vertical-tabs .tab .tab-content,
.addiction-page .campaign,
.addiction-page .pickup,
.addiction-page .brands,
.addiction-page .duty-free {
  background-color: #DCDCDC !important;
}

.jillstuart-page .vertical-tabs .tab .tab-content,
.jillstuart-page .campaign,
.jillstuart-page .pickup,
.jillstuart-page .brands,
.jillstuart-page .duty-free {
  background-color: #F7E9E6 !important;
}

.product .brands .c-main-title h2,
.product .duty-free .c-main-title h2 {
  color: #3F6994 !important;
}

.product-detail {
  display: flex;
  max-width: 1000px;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding-top: 80px;
  gap: 60px;
}
.product-detail .left {
  display: flex;
  width: 376px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  order: 1;
}
.product-detail .mySwiper2 {
  width: 100%;
  height: 400px;
}
@media only screen and (max-width: 768px) {
  .product-detail .mySwiper2 {
    padding-bottom: 32px;
  }
}
.product-detail .mySwiper2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (min-width: 768px) {
  .product-detail .mySwiper2 .swiper-pagination {
    display: none;
  }
}
.product-detail .mySwiper2 .swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background-color: #D9E9F8;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: opacity 0.3s;
  opacity: 1;
}
.product-detail .mySwiper2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #418FDE;
  opacity: 1;
}
.product-detail .mySwiper2 .swiper-button-prev,
.product-detail .mySwiper2 .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s ease;
}
.product-detail .mySwiper2 .swiper-button-prev::after,
.product-detail .mySwiper2 .swiper-button-next::after {
  display: none;
}
.product-detail .mySwiper2 .swiper-button-prev svg,
.product-detail .mySwiper2 .swiper-button-next svg {
  display: block;
}
.product-detail .mySwiper2 .swiper-button-prev {
  left: 0px;
}
.product-detail .mySwiper2 .swiper-button-next {
  right: 0px;
}
@media only screen and (max-width: 768px) {
  .product-detail .mySwiper {
    display: none;
  }
}
.product-detail .mySwiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  margin-top: 24px;
}
.product-detail .mySwiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
  height: 80px;
  cursor: pointer;
  margin-right: 0 !important;
  opacity: 0.6;
}
.product-detail .mySwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.product-detail .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.product-detail .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  border-color: #B4B3B3;
}
.product-detail .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  order: 2;
}
.product-detail .right h2 {
  color: #000;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.product-detail .right .product-overview {
  color: #000;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding: 48px 0;
}
.product-detail .right .product-contents h3 {
  color: #3F6994;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.9px;
  margin-bottom: 24px;
}
.product-detail .right .product-contents ul {
  padding-left: 25px;
}
.product-detail .right .product-contents ul li {
  color: #000;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.9px;
  position: relative;
}
.product-detail .right .product-contents ul li::before {
  content: "•";
  color: #000;
  display: inline-block;
  position: absolute;
  left: -15px;
  top: 0px;
  line-height: unset;
}
.product-detail .right .price {
  color: #000;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding: 0;
  padding-top: 67px;
}
.product-detail .right .price span {
  font-size: 32px;
}
.product-detail .right .sub-price {
  color: #000;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 13px;
  font-style: normal;
  font-weight: 250;
  line-height: normal;
  letter-spacing: 0.65px;
  padding: 0;
}
.product-detail .right .sub-price span {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .product-detail {
    gap: 0px;
    padding-top: 48px;
    flex-direction: column;
  }
  .product-detail .right {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }
  .product-detail .right h2 {
    order: 1;
    font-size: 18px;
  }
  .product-detail .right .product-overview {
    order: 2;
    font-size: 14px;
    padding: 25px 0 40px;
  }
  .product-detail .right .swiper {
    order: 3;
  }
  .product-detail .right .product-contents {
    order: 4;
    margin-top: 20px;
  }
  .product-detail .right .product-contents h3 {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .product-detail .right .product-contents ul li {
    font-size: 14px;
  }
  .product-detail .right .price {
    order: 5;
    font-size: 18px;
    padding-top: 23px;
    margin-bottom: 0;
  }
  .product-detail .right .price span {
    font-size: 26px;
  }
  .product-detail .right .sub-price {
    order: 6;
    font-size: 12px;
  }
  .product-detail .right .sub-price span {
    font-size: 13px;
  }
  .product-detail .right .btn-popup {
    order: 7;
    margin-top: 40px;
    max-width: 100%;
    width: 100%;
    font-size: 16px;
  }
  .product-detail .left {
    display: none;
    max-width: 100%;
  }
}

.btn.btn-map {
  display: flex;
  width: 100%;
  max-width: 440px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background: #418FDE;
  color: #fff;
  position: relative;
  margin-top: 40px;
  color: #FFF;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
}
.btn.btn-map svg {
  position: absolute;
  right: 10px;
}
.btn.btn-map:hover {
  opacity: 0.5;
}

.vertical-tabs {
  width: 100%;
  font-family: sans-serif;
  margin: 80px 0 200px;
}
@media only screen and (max-width: 768px) {
  .vertical-tabs {
    margin: 48px 0 96px;
  }
}
.vertical-tabs .tab .tab-title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 56px;
  height: 80px;
  -webkit-user-select: none;
          user-select: none;
  transition: background 0.3s;
  border-top: 1px solid #828282;
  color: #333;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .vertical-tabs .tab .tab-title {
    font-size: 15px;
    height: 40px;
    padding: 0 8px;
  }
  .vertical-tabs .tab .tab-title svg {
    width: 17px;
    height: 40px;
  }
}
.vertical-tabs .tab .tab-title.open {
  border-bottom: 1px solid #828282;
}
.vertical-tabs .tab .tab-title .icon {
  line-height: 0;
}
.vertical-tabs .tab .tab-title:hover {
  background: #fff;
}
.vertical-tabs .tab .tab-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  background: #E0EBFF;
}
.vertical-tabs .tab .tab-content h3 {
  color: #333333;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .vertical-tabs .tab .tab-content h3 {
    font-size: 15px;
    line-height: normal;
  }
}
.vertical-tabs .tab .tab-content ul {
  padding-left: 25px;
}
@media only screen and (max-width: 768px) {
  .vertical-tabs .tab .tab-content ul {
    padding-left: 20px;
  }
}
.vertical-tabs .tab .tab-content ul li {
  color: #333333;
  text-align: justify;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 32px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .vertical-tabs .tab .tab-content ul li {
    font-size: 14px;
  }
}
.vertical-tabs .tab .tab-content ul li::before {
  content: "•";
  color: #333333;
  display: inline-block;
  position: absolute;
  left: -15px;
  top: 0px;
  line-height: unset;
}
.vertical-tabs .tab .tab-content p {
  color: #333333;
  text-align: justify;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 18px;
  font-style: normal;
  font-weight: 250;
  line-height: 32px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .vertical-tabs .tab .tab-content p {
    font-size: 14px;
  }
}
.vertical-tabs .tab .tab-inner {
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .vertical-tabs .tab .tab-inner {
    padding: 32px 8px;
  }
}
.vertical-tabs .tab:last-child .tab-title {
  border-bottom: 1px solid #828282;
}

.c-accordion {
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-accordion {
    border-radius: 16px;
  }
}
.c-accordion:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .c-accordion:not(:last-child) {
    margin-bottom: 24px;
  }
}
.c-accordion.show .c-accordion_btn::after {
  transform: translate(-50%, -50%);
}
.c-accordion_head {
  position: relative;
  padding: 0 80px 0 24px;
  background: #D9E9F8;
  transition: 0.3s ease;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-accordion_head {
    padding: 0 45px 0 20px;
  }
}
@media screen and (hover: hover) {
  .c-accordion_head:hover {
    opacity: 0.7;
  }
}
.c-accordion_title {
  padding: 16px 0 18px;
  display: inline-block;
  color: #1E4266;
  font-size: 32px;
  line-height: 1.25em;
  font-weight: 300;
  letter-spacing: 0.05em;
  border-top: 8px solid #3F6994;
}
@media only screen and (max-width: 767px) {
  .c-accordion_title {
    font-size: 22px;
    border-top-width: 6px;
  }
}
.c-accordion_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  width: 24px;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .c-accordion_btn {
    right: 20px;
    width: 19px;
  }
}
.c-accordion_btn::before, .c-accordion_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #418FDE;
  transition: 0.3s ease;
}
.c-accordion_btn::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.c-accordion_wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.c-accordion_content {
  padding: 7px 24px 24px;
  background: #D9E9F8;
}
@media only screen and (max-width: 767px) {
  .c-accordion_content {
    padding: 20px;
  }
}

.card-link:hover {
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

.c-card {
  position: relative;
  padding: 7px 12px 11px 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 84px;
  background: url(../../shop-list/images/img_border_01.svg) top right/max(100%, 464px) auto no-repeat;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.4s ease;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .c-card {
    padding: 6px 8px 8px 8px;
    min-height: 69px;
    background-image: url(../../shop-list/images/img_border_01-sp.svg);
    background-size: max(100%, 727px) auto;
    background-position: calc(100% + 1px) 0%;
    gap: 0;
    border-radius: 6px;
  }
}
.c-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  background: #fff;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .c-card::before {
    height: calc(100% - 30px);
  }
}
.c-card_detail {
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}
.c-card_name {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
  color: #1E4266;
}
@media only screen and (max-width: 767px) {
  .c-card_name {
    font-size: 14px;
  }
}
.c-card_brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-card_brand .brand-item {
  width: 12px;
  aspect-ratio: 1/1;
  background: #CDC5D2;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .c-card_brand .brand-item {
    width: 8px;
  }
}
.c-card_brand .brand-item.brand_1 {
  background: var(--color-decorte);
}
.c-card_brand .brand-item.brand_2 {
  background: var(--color-sekkisei);
}
.c-card_brand .brand-item.brand_3 {
  background: var(--color-jillstuart);
}
.c-card_brand .brand-item.brand_4 {
  background: var(--color-addiction);
}
.c-card_btn {
  flex-shrink: 0;
  padding: 7px 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media only screen and (max-width: 767px) {
  .c-card_btn {
    padding: 4px 4px 0;
  }
}
.c-card_btn.building .btn_icon::before {
  background-image: url(../../shop-list/images/icon_building.svg);
}
.c-card_btn.island .btn_icon::before {
  background-image: url(../../shop-list/images/icon_island.svg);
}
.c-card_btn.person .btn_icon::before {
  background-image: url(../../shop-list/images/icon_person.svg);
}
.c-card_btn .btn_icon {
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  border: 1px solid #418FDE;
  border-radius: 50%;
  transition: 0.2s ease;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-card_btn .btn_icon {
    width: 36px;
  }
}
.c-card_btn .btn_icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../../shop-list/images/icon_plane.svg) center/calc(100% + 2px) auto no-repeat;
}
.c-card_btn .btn_txt {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #418FDE;
}
@media only screen and (max-width: 767px) {
  .c-card_btn .btn_txt {
    font-size: 11px;
  }
}
@media screen and (hover: hover) {
  .c-card:hover {
    transform: translateY(-4px);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.15));
  }
  .c-card:hover .c-card_btn .btn_icon {
    background-color: #418FDE;
  }
  .c-card:hover .c-card_btn .btn_icon::before {
    filter: brightness(0) invert(1);
  }
}

.pickup {
  background: rgba(98, 153, 255, 0.2);
  padding: 60px 0;
}
.pickup .product__grid3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 911px;
  padding-left: 32px;
}
@media only screen and (max-width: 767px) {
  .pickup .product__grid3 {
    padding-left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 43px 23px;
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.pickup .product__grid3 .card2 {
  width: 250px;
}
@media only screen and (max-width: 990px) {
  .pickup .product__grid3 .card2 {
    width: 100%;
  }
}
.pickup .product__grid3 .card2__image {
  position: relative;
  box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .pickup .product__grid3 .card2__image {
    border-radius: 16px;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.pickup .product__grid3 .card2__image img {
  border-radius: 24px;
  height: 250px;
  width: 250px;
}
@media only screen and (max-width: 990px) {
  .pickup .product__grid3 .card2__image img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
  }
}
.pickup .product__grid3 .card2__badge {
  color: #FFF;
  text-align: center;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  position: absolute;
  top: -31px;
  left: -29px;
  content: "";
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: #CFB254;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  outline: 2px solid #CFB254;
  outline-offset: 2px;
}
@media only screen and (max-width: 990px) {
  .pickup .product__grid3 .card2__badge {
    width: 53px;
    height: 53px;
    font-size: 12px;
    top: -11px;
    left: -11px;
  }
}
.pickup .product__grid3 .card2__label {
  background: #2874C2;
  display: inline-block;
  padding: 5px 6px;
  border-radius: 2px;
  color: #fff;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 0.934;
  letter-spacing: 0.75px;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .pickup .product__grid3 .card2__label {
    font-size: 13px;
  }
}

.exclusive {
  padding: 0;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .exclusive {
    padding: 0;
  }
}
.exclusive .product__grid4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 34px;
}
@media only screen and (max-width: 990px) {
  .exclusive .product__grid4 {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 23px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .exclusive .product__grid4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.exclusive .product__grid4 .card2__image {
  position: relative;
  box-shadow: 3px 3px 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 990px) {
  .exclusive .product__grid4 .card2__image {
    border-radius: 16px;
  }
}
.exclusive .product__grid4 .card2__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 990px) {
  .exclusive .product__grid4 .card2__image img {
    max-height: 340px;
  }
}
@media only screen and (max-width: 990px) {
  .exclusive .product__grid4 .card2__title {
    margin-bottom: 0;
    letter-spacing: 0.7px;
  }
}
.exclusive .product__grid4 .card2__badge {
  color: #FFF;
  text-align: center;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  position: absolute;
  top: -31px;
  left: -29px;
  content: "";
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: #CFB254;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  outline: 2px solid #CFB254;
  outline-offset: 2px;
}
@media only screen and (max-width: 990px) {
  .exclusive .product__grid4 .card2__badge {
    width: 53px;
    height: 53px;
    font-size: 12px;
    top: -11px;
    left: -11px;
  }
}
.exclusive .product__grid4 .card2__label {
  background: #2874C2;
  display: inline-block;
  padding: 5px 6px;
  border-radius: 2px;
  color: #fff;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 0.934;
  letter-spacing: 0.75px;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  .exclusive .product__grid4 .card2__label {
    font-size: 13px;
  }
}

.campaign {
  padding: 60px 0;
  background: rgba(98, 153, 255, 0.2);
}
@media only screen and (max-width: 990px) {
  .campaign .container {
    width: 100%;
    padding: 0;
  }
}
.campaign__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 990px) {
  .campaign__grid {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}

.banner {
  width: 100%;
  height: auto;
  margin-bottom: 17.2rem;
  position: relative;
  padding: 48px 110px 0;
}
@media only screen and (max-width: 767px) {
  .banner {
    margin-bottom: 96px;
    padding: 0;
  }
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease-out 0.5s;
  z-index: -2;
}
.banner__slide {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .banner__slide {
    padding: 0;
  }
  .banner__slide img {
    width: 100%;
    object-fit: cover;
  }
}
.banner__slide .swiper-button {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.banner__slide .swiper-button.show {
  display: flex;
}
.banner__slide .swiper-button-prev,
.banner__slide .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  height: 31px;
  width: 16px;
}
.banner__slide .swiper-button-prev svg path,
.banner__slide .swiper-button-next svg path {
  fill: #fff;
}
.banner__slide .swiper-button-prev:after,
.banner__slide .swiper-button-next:after {
  display: none;
}
.banner__slide .swiper-button-prev.custom-btn::before,
.banner__slide .swiper-button-next.custom-btn::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 144px;
  background-color: #fff;
}
.banner__slide .swiper-button-prev {
  left: -88px;
}
.banner__slide .swiper-button-prev::before {
  right: -24px;
}
.banner__slide .swiper-button-next {
  right: -88px;
}
.banner__slide .swiper-button-next::before {
  left: -24px;
}
.banner__slide {
  /* PAGINATION */
}
.banner__slide .swiper-pagination {
  display: flex !important;
  justify-content: center;
  margin-top: 24px;
  position: absolute;
  bottom: -32px !important;
}
.banner__slide .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}
.banner__slide .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .banner__slide .swiper-button.show {
    display: flex !important;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    gap: 16px;
  }
  .banner__slide .swiper-button-prev,
  .banner__slide .swiper-button-next {
    transform: none !important;
    position: static !important;
    width: 10px !important;
    height: 10px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  .banner__slide .swiper-button-prev::before,
  .banner__slide .swiper-button-next::before {
    display: none;
  }
  .banner__slide .swiper-button-prev svg,
  .banner__slide .swiper-button-next svg {
    width: 10px !important;
    height: 10px !important;
    stroke-width: 2px;
    stroke: #FFF;
  }
  .banner__slide .swiper-button-prev svg path,
  .banner__slide .swiper-button-next svg path {
    fill: #fff;
  }
  .banner__slide {
    /* Pagination */
  }
  .banner__slide .swiper-pagination {
    position: static !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    margin-top: 0;
  }
  .banner__slide .swiper-pagination .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    margin: 0 5px !important;
  }
  .banner__slide .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
  }
}
.banner._fade::before {
  opacity: 1;
}
.banner__logo {
  padding: 65px 0;
  text-align: center;
}
.banner__logo-w {
  filter: brightness(0) invert(1);
}
@media only screen and (max-width: 768px) {
  .banner__logo {
    padding: 48px 0;
  }
  .banner__logo img {
    max-width: 180px;
  }
}
.banner__nav {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media only screen and (max-width: 768px) {
  .banner__nav {
    gap: 12px;
    padding: 0 20px;
    margin: 0;
  }
}
.banner__nav-item {
  width: 248px;
  height: 260px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(0, 12, 54, 0) 0%, rgba(0, 36, 156, 0.3) 100%);
  background-blend-mode: multiply;
  color: #FFF;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .banner__nav-item {
    width: 104px;
    height: 150px;
  }
}
.banner__nav-item span {
  color: #FFF;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  padding: 25px 0 24px;
  letter-spacing: 2px;
  display: block;
  min-height: 105px;
}
.banner__nav-item span.banner__nav-title {
  font-feature-settings: "palt" on;
  font-family: "Yu_Mincho";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  padding: 58px 0 0;
  letter-spacing: normal;
  min-height: unset;
}
@media only screen and (max-width: 768px) {
  .banner__nav span {
    font-size: 13px;
    padding: 8px 0 16px;
    min-height: 61px;
    letter-spacing: 0.75px;
  }
  .banner__nav span.banner__nav-title {
    font-size: 20px;
    padding: 23px 0 0;
    min-height: auto;
    letter-spacing: normal;
  }
}
@media only screen and (max-width: 372px) {
  .banner__nav span {
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 361px) {
  .banner__nav span {
    letter-spacing: 0.75px;
    font-size: 11px;
  }
}

/* Cards */
.grid {
  width: 100%;
  margin: auto;
  display: grid;
  align-items: stretch;
}

.card {
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  width: 480px;
  padding: 40px 30px;
  align-items: center;
  gap: 8px;
  background: #fff;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}
.card::before, .card::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: repeating-linear-gradient(to right, #CFB254 0, #CFB254 1px, transparent 1px, transparent 3px);
}
.card::before {
  top: 0;
}
.card::after {
  bottom: 0;
}
.card img {
  width: 100%;
  height: auto;
  max-width: 160px;
  border: 1px solid #CFB254;
}
@media only screen and (max-width: 990px) {
  .card {
    width: 100%;
    padding: 32px 20px;
    gap: 16px;
  }
  .card img {
    max-width: 140px;
  }
}
.card__content {
  width: calc(100% - 169px);
}
.card__label {
  color: #fff;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.8px;
  background-color: #FF94AB;
  color: #fff;
  display: inline-block;
  padding: 8px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .card__label {
    font-size: 13px;
  }
}
.card__label::before {
  content: "";
  position: absolute;
  right: -21px;
  top: 0;
  width: 28px;
  height: 100%;
  background-color: #FF94AB;
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}
.card__title {
  color: #00249C;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W6";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.8px;
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .card__title {
    font-size: 14px;
  }
}
.card__price {
  margin-top: 10px;
  font-weight: bold;
}

.product__grid .card2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.product__grid .card2__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product__grid .card2__title {
  color: #333333;
  text-align: justify;
  font-feature-settings: "palt" on;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: auto;
  padding: 20px 0 8px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .product__grid .card2__title {
    font-size: 14px;
    padding: 16px 0 6px;
  }
}
.product__grid .card2__price {
  margin-top: auto;
  color: #333333;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3";
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .product__grid .card2__price {
    font-size: 14px;
  }
}
@media only screen and (max-width: 361px) {
  .product__grid .card2__price {
    font-size: 13px;
  }
}
.product__grid .card2__price span {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .product__grid .card2__price span {
    font-size: 18px;
  }
}

.c-popup {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}
.c-popup.show {
  opacity: 1;
  visibility: visible;
}
.c-popup_wrap {
  position: relative;
  width: min(100vw - 40px, 1056px);
  max-height: 90vh;
  padding: 72px 80px 80px;
  background: #FFF;
  border-radius: 24px;
  overflow-y: auto;
}
@media only screen and (max-width: 991px) {
  .c-popup_wrap {
    padding: 43px 39px;
    max-height: calc(100dvh - 40px);
  }
}
.c-popup_close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 56px;
  aspect-ratio: 1/1;
  background: #DBDCDC;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .c-popup_close {
    top: 20px;
    right: 20px;
    width: 40px;
  }
}
.c-popup_close::before, .c-popup_close::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
}
@media only screen and (max-width: 991px) {
  .c-popup_close::before, .c-popup_close::after {
    width: 28px;
  }
}
.c-popup_close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-popup_close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (hover: hover) {
  .c-popup_close:hover {
    opacity: 0.7;
  }
}

.popup-map {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  transition: opacity 0.55s ease;
  z-index: 999;
  overflow: auto;
}
.popup-map .popup-content {
  width: 100%;
  background: #fff;
  padding: 2rem;
  position: relative;
  height: auto;
  min-height: 500px;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .popup-map .popup-content {
    padding: 0;
    overflow: hidden;
    position: relative;
  }
}
.popup-map .popup-content #mapImage {
  transition: opacity 0.2s ease;
}
.popup-map .popup-content .image-wrapper {
  position: relative;
  display: inline-block;
}
.popup-map .popup-content .hover-mask {
  position: absolute;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
}
.popup-map .popup-content .hover-mask.active {
  opacity: 0.45;
}
.popup-map .popup-content .dot-mask {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #007aff;
  pointer-events: none;
  z-index: 10;
  display: none;
  transform-origin: center;
  opacity: 0;
}
@keyframes pingHoldThenShrink {
  0% {
    transform: scale(4.5);
    opacity: 0.12;
  }
  28% { /* GIỮ TO NGẮN HƠN */
    transform: scale(4.5);
    opacity: 0.18;
  }
  100% { /* THU NHỎ MƯỢT */
    transform: scale(1);
    opacity: 1;
  }
}
.popup-map .popup-content .dot-mask.active {
  display: block;
  animation: pingHoldThenShrink 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.popup-map .popup-content #logo-container {
  position: absolute;
  top: 0;
  left: 0;
}
.popup-map.show {
  opacity: 1;
  pointer-events: auto;
}
.popup-map.show .popup-content {
  transform: translateY(0);
}
.popup-map.closing {
  opacity: 0;
  transition-delay: 0.15s;
}
.popup-map .popup-close {
  position: fixed;
  top: 48px;
  right: 20px;
}
.popup-map .popup-mb {
  background: rgba(255, 255, 255, 0.9);
  padding: 88px 0 160px;
  display: flex;
  justify-content: flex-start;
  gap: 28px;
  text-align: left;
  padding-left: 40px;
  overflow: auto;
  height: 100vh;
}
.popup-map .popup-mb .title {
  color: #1E4266;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
}
.popup-map .popup-mb .des {
  color: #000;
  font-feature-settings: "palt" on;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.75px;
  padding: 32px 0px 64px;
}
.popup-map .popup-mb .content {
  background: #4F4F4F;
  margin: 64px 0px;
  color: #fff;
  width: fit-content;
  padding: 0 16px;
  position: relative;
}
.popup-map .popup-mb .content::before {
  content: "";
  position: absolute;
  width: 296px;
  border-top: 1px solid #1E4266;
  top: -64px;
  left: -40px;
}
.popup-map .popup-mb a:not(.btn.btn-map) {
  display: block;
}
.popup-map .popup-mb img {
  margin-bottom: 40px;
}
.popup-map .popup-mb img:last-child {
  margin-bottom: 64px;
}
.popup-map .popup-mb .btn {
  width: 100%;
  margin-top: 128px;
  position: relative;
  max-width: 256px;
}
.popup-map .popup-mb .btn::before {
  content: "";
  position: absolute;
  width: 296px;
  border-top: 1px solid #1E4266;
  top: -128px;
  left: -40px;
}
.popup-map .popup-mb .scroll p {
  position: fixed;
  top: 50vh;
  right: 20px;
  writing-mode: vertical-rl;
  display: flex;
  gap: 14px;
  align-items: center;
}
.popup-map .popup-mb .scroll p svg {
  margin-left: 5px;
}
.popup-map .popup-mb .logo-item {
  position: absolute;
  width: 140px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Pages
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
CSS of home page
------------------------------------------------------------*/
.top section {
  margin-bottom: 0;
}
.top .top-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: hidden;
}
.top .top-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/ja/assets/images/top/img_top_01.jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease-out 0.5s;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel::before {
    top: 35rem;
    height: auto;
    aspect-ratio: 375/1052;
    background-image: url("/ja/assets/images/top/img_top_07.jpg");
  }
}
@media only screen and (max-width: 575px) {
  .top .top-carousel::before {
    top: 15rem;
  }
}
@media only screen and (max-width: 480px) {
  .top .top-carousel::before {
    top: 20rem;
  }
}
@media only screen and (max-width: 375px) {
  .top .top-carousel::before {
    top: 25rem;
  }
}
@media only screen and (max-width: 350px) {
  .top .top-carousel::before {
    height: 100%;
    top: 0;
  }
}
.top .top-carousel._fade::before {
  opacity: 1;
}
.top .top-carousel .carousel-wrapper {
  height: auto;
  display: flex;
}
@media only screen and (min-width: 1441px) {
  .top .top-carousel .carousel-wrapper {
    height: 36.05vw;
  }
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper {
    height: auto;
    flex-direction: column;
  }
}
.top .top-carousel .carousel-wrapper .carousel-thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-items: center;
  background: transparent;
  position: relative;
  width: 28%;
  padding: 4.9rem 0 3.7rem 0;
}
@media only screen and (min-width: 1441px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb {
    justify-content: center;
  }
}
@media only screen and (max-width: 1200px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb {
    padding: 3.5rem 0 3.5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb {
    order: 2;
    width: 100%;
    padding: 0;
    height: 8.5rem;
  }
}
.top .top-carousel .carousel-wrapper .carousel-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  background: #418FDE;
  background-blend-mode: multiply;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.top .top-carousel .carousel-wrapper .carousel-thumb .line {
  display: block;
  height: 1px;
  width: 15.4rem;
  background-color: #FFF;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb .line {
    display: none;
  }
}
.top .top-carousel .carousel-wrapper .carousel-thumb button.prev,
.top .top-carousel .carousel-wrapper .carousel-thumb button.next {
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.prev,
  .top .top-carousel .carousel-wrapper .carousel-thumb button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.top .top-carousel .carousel-wrapper .carousel-thumb button.prev .line,
.top .top-carousel .carousel-wrapper .carousel-thumb button.next .line {
  margin-bottom: 0.6rem;
}
.top .top-carousel .carousel-wrapper .carousel-thumb button.prev {
  padding-bottom: 5.5rem;
}
@media only screen and (max-width: 1200px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.prev {
    padding-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.prev {
    padding-bottom: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.prev {
    left: 4.4rem;
    padding-bottom: 0;
  }
}
.top .top-carousel .carousel-wrapper .carousel-thumb button.next {
  padding-top: 5.5rem;
}
@media only screen and (max-width: 1200px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.next {
    padding-top: 1.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.next {
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.next {
    right: 4.4rem;
    padding-top: 0;
  }
}
.top .top-carousel .carousel-wrapper .carousel-thumb button.pausePlayBtn {
  display: inline-block;
  margin-top: 2.3rem;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.pausePlayBtn {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.pausePlayBtn {
    margin-top: 0;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .carousel-thumb button.pausePlayBtn img {
    width: 2.88rem;
    height: 2.88rem;
  }
}
.top .top-carousel .carousel-wrapper .carousel-main {
  width: 72%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .carousel-main {
    width: 100%;
    order: 1;
  }
}
.top .top-carousel .carousel-wrapper .carousel-main .main-slider {
  width: 100%;
  height: 100%;
}
.top .top-carousel .carousel-wrapper .carousel-main .main-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top .top-carousel .carousel-wrapper .thumb-slider {
  width: 21.8rem;
  height: 40rem;
}
@media only screen and (min-width: 1441px) {
  .top .top-carousel .carousel-wrapper .thumb-slider {
    width: 30rem;
  }
}
@media only screen and (max-width: 1024px) {
  .top .top-carousel .carousel-wrapper .thumb-slider {
    width: 18rem;
  }
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider {
    width: 30vw;
    height: auto;
  }
}
@media only screen and (max-width: 375px) {
  .top .top-carousel .carousel-wrapper .thumb-slider {
    width: 16rem;
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider img {
  width: 60%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider img {
    width: 100%;
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide {
  cursor: pointer;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide {
    height: unset;
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide a {
  cursor: pointer;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide a {
    height: unset;
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide img {
    transform: scale(0.7);
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide._brand1 img {
  transform: scale(0.66);
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide._brand1 img {
    transform: scale(1);
    margin-top: -4px;
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide._brand2 img {
  transform: scale(0.52);
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide._brand3 img {
  transform: scale(0.66);
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide._brand3 img {
    transform: scale(1);
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide._brand4 img {
  opacity: 1;
  transform: scale(0.66);
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active img {
  opacity: 1;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active img {
    transform: scale(1.2);
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active._brand1 img {
  transform: scale(1.445);
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active._brand1 img {
    transform: scale(1);
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active._brand2 img {
  transform: scale(1.147);
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active._brand2 img {
    transform: scale(0.8);
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active._brand3 img {
  transform: scale(1.654);
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active._brand3 img {
    transform: scale(1);
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active._brand4 img {
  transform: scale(1.5);
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-thumb-active._brand4 img {
    transform: scale(1);
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-prev {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-prev img {
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
  }
}
.top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-next {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-wrapper .thumb-slider .swiper-slide-next img {
    mask-image: linear-gradient(to left, transparent, black);
    -webkit-mask-image: linear-gradient(to left, transparent, black);
  }
}
.top .top-carousel .carousel-desc {
  height: 79.7rem;
  padding: 10.1rem 0 18.4rem 0;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-desc {
    padding: 20.5rem 0 16rem 0;
    height: auto;
    overflow: hidden;
  }
}
.top .top-carousel .carousel-desc .carousel-desc-title {
  text-align: center;
  font-family: Yu_Mincho, serif;
  color: #3F6994;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 7.4rem;
  letter-spacing: -0.1rem;
  margin-bottom: 5rem;
  margin-left: 18px;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-desc .carousel-desc-title {
    font-size: 3.4rem;
    line-height: 5.6rem;
    letter-spacing: -0.1rem;
    padding: 0 0.6rem;
    margin-bottom: 4.4rem;
    margin-left: 0;
    margin-right: -1.2rem;
  }
}
.top .top-carousel .carousel-desc .carousel-desc-text {
  color: #333333;
  text-align: center;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 4.4rem;
  letter-spacing: 0.3rem;
}
@media only screen and (max-width: 767px) {
  .top .top-carousel .carousel-desc .carousel-desc-text {
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: 0px;
    padding: 0 2.1rem;
  }
}
@media only screen and (max-width: 575px) {
  .top .top-carousel .carousel-desc .carousel-desc-text {
    text-align: justify;
  }
}
@media only screen and (max-width: 575px) {
  .top .top-carousel .carousel-desc .carousel-desc-text br {
    display: none;
  }
}
.top .top-carousel .carousel-desc .carousel-desc-text span {
  display: block;
  margin-top: 3rem;
}
.top .brands {
  background-color: #FFF;
  padding: 18.2rem 0 9.65rem;
}
.top .duty-free {
  background-color: #FFF;
  padding: 8.9rem 0 10rem !important;
}
@media only screen and (max-width: 767px) {
  .top .duty-free {
    padding: 9rem 0 !important;
  }
}
.top .news {
  padding: 8.4rem 0 18.3rem 0;
}
@media only screen and (max-width: 767px) {
  .top .news {
    padding: 9.1rem 0 20rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .top .news .container {
    padding: 0;
  }
}
.top .news .container .c-main-title {
  margin-bottom: 5.2rem;
}
@media only screen and (max-width: 767px) {
  .top .news .container .c-main-title {
    margin-bottom: 4.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .top .news .container .news-container {
    width: 100%;
    overflow: hidden;
  }
}
.top .news .container .news-container .news-wrapper {
  display: flex;
  justify-content: center;
  column-gap: 3rem;
}
@media only screen and (max-width: 991px) {
  .top .news .container .news-container .news-wrapper {
    display: block;
  }
}
.top .news .container .news-container .news-wrapper .news-item {
  overflow: hidden;
  width: calc(33.3333333333% - 1.9rem);
  border-radius: 2.4rem;
  background: #FFF;
  box-shadow: 5px 4px 15px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
@media only screen and (max-width: 991px) {
  .top .news .container .news-container .news-wrapper .news-item {
    margin: 0 1.2rem;
  }
}
.top .news .container .news-container .news-wrapper .news-item .news-item:first-child {
  margin-left: 0;
}
.top .news .container .news-container .news-wrapper .news-item .news-item:last-child {
  margin-right: 0;
}
.top .news .container .news-container .news-wrapper .news-item .news-img {
  transition: all 0.3s;
  transition: transform 0.4s ease;
  border-bottom: 1px solid #B4B3B3;
  overflow: hidden;
  position: relative;
  padding: 66.3157894737% 0 0;
}
@media only screen and (max-width: 767px) {
  .top .news .container .news-container .news-wrapper .news-item .news-img {
    padding: 36% 0;
    background-position: top;
    background-size: cover;
  }
}
.top .news .container .news-container .news-wrapper .news-item .news-img img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  transform: rotate(0.01deg);
}
.top .news .container .news-container .news-wrapper .news-item .news-inner {
  padding: 2.3rem 2.4rem 1.85rem;
}
.top .news .container .news-container .news-wrapper .news-item .news-inner .news-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 0.6rem 1.5rem;
  margin-bottom: 1.8rem;
  color: #fff;
  border-radius: 0.8rem;
  background: #418FDE;
  text-align: center;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.8px;
}
@media only screen and (max-width: 767px) {
  .top .news .container .news-container .news-wrapper .news-item .news-inner .news-tag {
    margin-bottom: 1.9rem;
  }
}
.top .news .container .news-container .news-wrapper .news-item .news-inner .news-text {
  color: #333333;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0px;
  margin-bottom: 2.5rem;
  height: 13.2rem;
  align-self: stretch;
}
@media only screen and (max-width: 991px) {
  .top .news .container .news-container .news-wrapper .news-item .news-inner .news-text {
    height: 21.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .top .news .container .news-container .news-wrapper .news-item .news-inner .news-text {
    height: 14.2rem;
    line-height: 1.47;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
  }
}
.top .news .container .news-container .news-wrapper .news-item .news-inner .news-date {
  color: #333333;
  text-align: left;
  font-feature-settings: "palt" on;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.top .news .container .news-container .news-wrapper .news-item:hover {
  opacity: 0.6;
}
.top .news .container .news-container .news-wrapper .news-item:hover .news-img img {
  transform: scale(1.04);
}
.top .news .container .news-container .news-slider .slick-list {
  padding: 0 3rem !important;
}
.top .news .container .news-container .news-slider .slick-list .slick-track {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.top .news .container .news-btn {
  text-align: center;
  margin-top: 6.3rem;
}
@media only screen and (max-width: 767px) {
  .top .news .container .news-btn {
    margin-top: 5.2rem;
  }
}
.top .about {
  padding-top: 0;
  padding-bottom: 18.5rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .top .about {
    padding-top: 20.2rem;
    padding-bottom: 13.2rem;
  }
}
.top .about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top/img_top_21.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease-out 0.5s;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .top .about::before {
    background-image: url(../images/top/img_top_28.png);
  }
}
@media only screen and (max-width: 375px) {
  .top .about::before {
    background-image: url(../images/top/img_top_22.png);
  }
}
.top .about._fade::before {
  opacity: 1;
}
.top .about .c-main-title {
  margin-bottom: 3.7rem;
}
@media only screen and (max-width: 767px) {
  .top .about .c-main-title {
    margin-bottom: 3.2rem;
  }
}
.top .about .about-wrapper p {
  color: #333333;
  text-align: center;
  word-break: break-word;
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 4.4rem;
  letter-spacing: 0.3rem;
}
@media only screen and (max-width: 767px) {
  .top .about .about-wrapper p {
    color: #333333;
    text-align: justify;
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: 0.48px;
  }
}
@media only screen and (max-width: 767px) {
  .top .about .about-wrapper p br {
    display: none;
  }
}
.top .about .about-wrapper p.first-text {
  margin-bottom: 4.4rem;
}
@media only screen and (max-width: 767px) {
  .top .about .about-wrapper p.first-text {
    margin-bottom: 3rem;
  }
}

.thumb-slider .swiper-wrapper {
  transition-timing-function: ease-out !important;
}

.brands {
  background-color: #FFF;
  padding: 18.2rem 0 9.65rem;
}
@media only screen and (max-width: 767px) {
  .brands {
    padding: 18.2rem 0 8.95rem;
  }
}
.brands .brands-prods {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.4rem;
}
@media only screen and (max-width: 1024px) {
  .brands .brands-prods {
    gap: 1.5rem 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .brands .brands-prods {
    justify-content: center;
    gap: 2.3rem 2.4rem;
  }
}
.brands .brands-prods .brands-prods-item {
  width: calc(25% - 2rem);
  border-radius: 2.4rem;
  background: #FFF;
  box-shadow: 5px 4px 15px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
@media only screen and (max-width: 1024px) {
  .brands .brands-prods .brands-prods-item {
    width: calc(50% - 1.5rem);
  }
}
.brands .brands-prods .brands-prods-item a {
  display: block;
  padding: 5.1rem 0.5rem 3rem 0.5rem;
}
@media only screen and (max-width: 767px) {
  .brands .brands-prods .brands-prods-item a {
    padding: 2rem 1rem 2.6rem;
  }
}
.brands .brands-prods .brands-prods-item a img {
  width: 100%;
  height: auto;
}
.brands .brands-prods .brands-prods-item a img.brand {
  height: 6.5rem;
  margin-bottom: 1rem;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .brands .brands-prods .brands-prods-item a img.brand {
    height: 4.8rem;
    margin-bottom: 0;
  }
}
.brands .brands-prods .brands-prods-item a .wrapper {
  overflow: hidden;
}
.brands .brands-prods .brands-prods-item a .wrapper img.prod {
  padding: 0 1.6rem;
  transition: all 0.2s linear !important;
}
@media only screen and (max-width: 767px) {
  .brands .brands-prods .brands-prods-item a .wrapper img.prod {
    padding: 0;
  }
}
.brands .brands-prods .brands-prods-item:hover {
  opacity: 0.5 !important;
}
.brands .brands-prods .brands-prods-item:hover a .wrapper img.prod {
  transform: scale(1.2) !important;
  transition: all 0.2s linear !important;
}

.duty-free {
  background-color: #FFF;
  padding: 8.9rem 0 10rem;
}
@media only screen and (max-width: 767px) {
  .duty-free {
    padding: 9rem 0;
  }
}
.duty-free .duty-free-wrapper {
  display: flex;
  border-radius: 3.2rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .duty-free .duty-free-wrapper {
    flex-direction: column;
  }
}
.duty-free .duty-free-wrapper .duty-free-left {
  width: 53.9%;
  background-image: url("/ja/assets/images/top/img_top_16.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 991px) {
  .duty-free .duty-free-wrapper .duty-free-left {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .duty-free .duty-free-wrapper .duty-free-left {
    width: 100%;
    aspect-ratio: 16/11.5;
  }
}
.duty-free .duty-free-wrapper .duty-free-right {
  background-color: #418FDE;
  padding: 7.7rem 5.5rem 8.9rem;
  width: 46%;
}
@media only screen and (max-width: 991px) {
  .duty-free .duty-free-wrapper .duty-free-right {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .duty-free .duty-free-wrapper .duty-free-right {
    width: 100%;
    padding: 2.5rem 4rem 4.3rem 3.8rem;
  }
}
.duty-free .duty-free-wrapper .duty-free-right p {
  font-family: "Hiragino_Kaku_Gothic_ProN_W3", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 300;
  color: #fff;
  line-height: 4rem;
  margin-bottom: 4.2rem;
}
@media only screen and (max-width: 767px) {
  .duty-free .duty-free-wrapper .duty-free-right p {
    font-size: 1.6rem;
    font-weight: 300;
    text-align: justify;
    line-height: 3.2rem;
    margin-bottom: 3.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .duty-free .duty-free-wrapper .duty-free-right p .onlyPC {
    display: none;
  }
}
.duty-free .duty-free-wrapper .duty-free-right .btn {
  text-align: center;
}

[data-aos] {
  opacity: 0;
  transition-property: all;
  transition-timing-function: ease-out;
}

[data-aos=fade] {
  transform: translateY(0);
}

[data-aos=fade-up] {
  transform: translateY(50px);
}

[data-aos].aos-animate {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) scale(1) !important;
}

.scroll-content {
  position: relative;
}

.btn {
  width: 400px;
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  overflow: auto;
}

main {
  padding-top: 8rem;
}
@media only screen and (max-width: 767px) {
  main {
    padding-top: 7rem;
  }
}

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

.only-pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}

.sekkisei .banner::before {
  background-image: url("/ja/sekkisei/images/background.png");
}
@media only screen and (max-width: 767px) {
  .sekkisei .banner::before {
    background-image: url("/ja/sekkisei/images/background-sp.png");
  }
}
.sekkisei .c-main-title h2 {
  color: #4F4F4F;
}

.decorte .banner::before {
  background-image: url("/ja/decorte/images/background.png");
}
.decorte .banner__nav-item {
  background: linear-gradient(180deg, rgba(251, 251, 251, 0.8) 0%, rgba(72, 72, 72, 0.8) 100%);
  mix-blend-mode: multiply;
}
.decorte .banner .swiper-button-prev svg path,
.decorte .banner .swiper-button-next svg path {
  fill: #4F4F4F;
}
.decorte .banner .swiper-button-prev.custom-btn::before,
.decorte .banner .swiper-button-next.custom-btn::before {
  background-color: #4F4F4F;
}
.decorte .campaign,
.decorte .brands,
.decorte .duty-free,
.decorte .pickup,
.decorte .sms {
  background: rgba(174, 139, 212, 0.1) !important;
}

.jillstuart .banner::before {
  background-image: url("/ja/jillstuart/images/background.png");
}
.jillstuart .banner__nav-item {
  background: linear-gradient(180deg, rgba(0, 12, 54, 0) 0%, rgba(0, 0, 0, 0.4) 72.6%);
  background-blend-mode: multiply;
}
.jillstuart .banner .swiper-button-prev svg path,
.jillstuart .banner .swiper-button-next svg path {
  fill: #4F4F4F;
}
.jillstuart .banner .swiper-button-prev.custom-btn::before,
.jillstuart .banner .swiper-button-next.custom-btn::before {
  background-color: #4F4F4F;
}
.jillstuart .campaign,
.jillstuart .pickup,
.jillstuart .sms,
.jillstuart .brands,
.jillstuart .duty-free {
  background: rgba(238, 210, 205, 0.5) !important;
}

.addiction .banner::before {
  background-image: url("/ja/addiction/images/background.png");
}
.addiction .banner__nav-item {
  background: linear-gradient(180deg, rgba(0, 12, 54, 0) 0%, rgba(0, 0, 0, 0.4) 72.6%);
  background-blend-mode: multiply;
}
.addiction .banner .swiper-button-prev svg path,
.addiction .banner .swiper-button-next svg path {
  fill: #4F4F4F;
}
.addiction .banner .swiper-button-prev.custom-btn::before,
.addiction .banner .swiper-button-next.custom-btn::before {
  background-color: #4F4F4F;
}
.addiction .campaign,
.addiction .pickup,
.addiction .sms,
.addiction .brands,
.addiction .duty-free {
  background: rgba(79, 79, 79, 0.2) !important;
}

.sekkisei::after {
  display: none;
}

/* sms */
.sms {
  display: flex;
  padding: 56px 0;
  flex-direction: column;
  align-items: center;
  background: rgba(98, 153, 255, 0.2);
  margin: 140px 0 200px;
}
@media only screen and (max-width: 990px) {
  .sms {
    padding: 40px 0;
    margin: 0;
    margin-bottom: 96px;
  }
}
.sms .sms_inner {
  margin: 0 20px;
  padding: 40px 48px;
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .sms .sms_inner {
    padding: 32px 24px;
    border-radius: 16px;
  }
}
.sms .sms_inner h3 {
  color: #4F4F4F;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .sms .sms_inner h3 {
    font-size: 18px;
    letter-spacing: 0.9px;
    margin-bottom: 16px;
  }
}
.sms .sms_inner h3::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 1px;
  background-color: #828282;
}
.sms .sms_inner p {
  color: #333333;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 0.9px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .sms .sms_inner p {
    text-align: left;
    font-size: 16px;
    font-style: normal;
    line-height: 180%;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
  }
}
.sms .icon img {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
}
@media only screen and (max-width: 990px) {
  .sms .icon img {
    width: 48px;
    height: 48px;
  }
}

#scroll-container:not(.top) section {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  #scroll-container:not(.top) section {
    margin-bottom: 96px;
  }
}
#scroll-container:not(.top) {
  /* Brands */
}
#scroll-container:not(.top) .brands {
  padding: 200px 0;
  background: rgba(98, 153, 255, 0.2);
  margin-bottom: 0px;
}
@media only screen and (max-width: 990px) {
  #scroll-container:not(.top) .brands {
    padding: 72px 0 96px;
  }
}
#scroll-container:not(.top) .brands .brands-prods .brands-prods-item a {
  padding: 45px 0;
}
#scroll-container:not(.top) .brands .brands-prods .brands-prods-item a img.brand {
  margin-bottom: 0;
}
#scroll-container:not(.top) {
  /* Duty Free Shop */
}
#scroll-container:not(.top) .duty-free {
  padding: 0;
  margin: 0;
  background: rgba(98, 153, 255, 0.2);
  padding-bottom: 200px;
}
@media only screen and (max-width: 990px) {
  #scroll-container:not(.top) .duty-free {
    padding: 0px 0 96px;
  }
}
#scroll-container:not(.top) .bg-decorte {
  background: #F7F4FB;
}
#scroll-container:not(.top) .bg-sekkisei {
  background: #E0EBFF;
}
#scroll-container:not(.top) .bg-jillstuart {
  background: #F6E8E5;
}
#scroll-container:not(.top) .bg-addiction {
  background: #DCDCDC;
}
#scroll-container:not(.top) .bg-shoplist {
  background: rgba(65, 143, 222, 0.15);
}
#scroll-container:not(.top, .sekkisei) .campaign .c-main-title h2,
#scroll-container:not(.top, .sekkisei) .pickup .c-main-title h2,
#scroll-container:not(.top, .sekkisei) .exclusive .c-main-title h2 {
  color: #4F4F4F;
}

* {
  box-sizing: border-box;
}

body.store .duty-free {
  background: rgba(65, 143, 222, 0.15) !important;
}

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

.mv {
  margin-bottom: 89px !important;
  padding-top: 139px;
  position: relative;
  background: #418FDE;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .mv {
    aspect-ratio: 1920/692;
    width: 100%;
    min-height: 519px;
  }
  .mv .container {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .mv .mv-heading {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .mv {
    margin-bottom: 70px !important;
    padding-top: 89px;
    box-shadow: none;
  }
}
.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../shop-list/images/img_mv_01.jpg") center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}
.mv-heading {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .mv-heading {
    padding-top: 20px;
  }
}
.mv-heading_en {
  margin-bottom: 12px;
  color: #fff;
  font-family: "Yu_Mincho";
  font-size: 98px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  opacity: 0.3;
}
@media only screen and (max-width: 767px) {
  .mv-heading_en {
    font-size: max(min(10.67vw, 98px), 40px);
  }
}
.mv-heading_jp {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3em;
  line-height: 1.4285714286;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .mv-heading_jp {
    font-size: max(min(4.8vw, 28px), 18px);
  }
}
.mv-anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 104px;
}
@media only screen and (max-width: 767px) {
  .mv-anchor {
    gap: 32px;
  }
}
.mv-anchor-item a {
  padding: 18px 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: 248px;
  min-height: 200px;
  background: linear-gradient(0deg, rgba(0, 12, 54, 0.3) 0%, rgba(0, 36, 156, 0) 100%);
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .mv-anchor-item a {
    padding: 16px 10px;
    width: 104px;
    min-height: 120px;
    gap: 16px;
  }
}
@media screen and (hover: hover) {
  .mv-anchor-item a:hover {
    opacity: 0.7;
  }
}
.mv-anchor-item a > span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.8181818182;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .mv-anchor-item a > span {
    font-size: 14px;
    line-height: 1.2;
  }
}
.mv-anchor-item a::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 9/16;
  background: url("../../shop-list/images/arrow_down.svg") center/100% auto no-repeat;
}
@media only screen and (max-width: 767px) {
  .mv-anchor-item a::after {
    width: 14px;
    aspect-ratio: 14/23;
    background-image: url("../../shop-list/images/arrow_down-sp.svg");
  }
}

.shop {
  --color-decorte: #CDC5D2;
  --color-sekkisei: #6299FF;
  --color-jillstuart: #E8B2A8;
  --color-addiction: #4F4F4F;
}
@media only screen and (max-width: 767px) {
  .shop .container {
    padding: 0;
  }
}
.shop-wrap {
  padding-top: 20px;
}
.shop-wrap:not(:last-child) {
  margin-bottom: 180px;
}
@media only screen and (max-width: 767px) {
  .shop-wrap:not(:last-child) {
    margin-bottom: 116px;
  }
}
.shop-ttl {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
@media only screen and (max-width: 767px) {
  .shop-ttl {
    margin-bottom: 70px;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .shop-ttl img {
    width: 107px;
  }
}
.shop-ttl_02 {
  gap: 0;
}
@media only screen and (max-width: 767px) {
  .shop-ttl_02 {
    gap: 20px;
  }
}
.shop-ttl_02 img {
  width: 223px;
}
.shop-ttl_txt {
  font-size: 26px;
  font-weight: 500;
  color: #1E4266;
  line-height: 1.5384615385;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .shop-ttl_txt {
    font-size: 20px;
  }
}
.shop-ttl_h4 {
  margin-bottom: 16px;
  padding-left: 20px;
  color: #1E4266;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  border-left: 4px solid #1E4266;
}
@media only screen and (max-width: 767px) {
  .shop-ttl_h4 {
    padding-left: 16px;
    font-size: 18px;
  }
}
.shop-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}
@media only screen and (max-width: 767px) {
  .shop-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.shop-list:not(:last-child) {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .shop-list:not(:last-child) {
    margin-bottom: 40px;
  }
}
.shop .c-card.--filtered-out {
  display: none;
}
.shop-list:not(:has(.c-card:not(.--filtered-out))) {
  display: none;
}
.shop-ttl_h4:not(:has(+ .shop-list .c-card:not(.--filtered-out))) {
  display: none;
}
.shop .c-accordion:not(:has(.c-card:not(.--filtered-out))) {
  display: none;
}

.filter {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .filter {
    margin-bottom: 95px;
  }
}
.filter-ttl {
  margin-bottom: 16px;
  color: #1E4266;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .filter-ttl {
    font-size: 16px;
  }
}
.filter-group {
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 60px;
  border-top: 1px solid #3F6994;
}
@media only screen and (max-width: 991px) {
  .filter-group {
    gap: 24px 35px;
  }
}
@media only screen and (max-width: 767px) {
  .filter-group {
    padding: 21px 28px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 24px 23px;
  }
}
.filter-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .filter-label {
    justify-content: flex-start;
  }
}
.filter-label input[type=checkbox] {
  flex-shrink: 0;
  appearance: none;
  width: 24px;
  height: 24px;
  background-color: #F2F2F2;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .filter-label input[type=checkbox] {
    margin: 0;
    width: 22px;
    height: 22px;
  }
}
.filter-label input[type=checkbox]::before {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .filter-label input[type=checkbox]::before {
    width: 22px;
    height: 22px;
  }
}
.filter-label input[type=checkbox][value=decorte]::before {
  content: url(/ja/shop-list/images/icon_checkbox-decorte.svg);
}
.filter-label input[type=checkbox][value=sekkisei]::before {
  content: url(/ja/shop-list/images/icon_checkbox-sekkisei.svg);
}
.filter-label input[type=checkbox][value=jillstuart]::before {
  content: url(/ja/shop-list/images/icon_checkbox-jillstuart.svg);
}
.filter-label input[type=checkbox][value=addiction]::before {
  content: url(/ja/shop-list/images/icon_checkbox-addiction.svg);
}
.filter-label input[type=checkbox]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
@media only screen and (max-width: 767px) {
  .filter-label img {
    max-width: calc(100% - 32px);
  }
}

.detail-ttl {
  margin-bottom: 61px;
  color: #1E4266;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .detail-ttl {
    margin-bottom: 10px;
    padding-right: 20px;
    font-size: 18px;
    text-align: left;
  }
}
.detail-box {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .detail-box {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.detail-img img {
  border-radius: 16px;
}
.detail-main {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media only screen and (max-width: 767px) {
  .detail-main {
    gap: 24px;
  }
}
.detail-sub {
  margin-bottom: 10px;
  color: #1E4266;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .detail-sub {
    font-size: 16px;
  }
}
.detail-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}
.detail-desc:not(:last-child) {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .detail-desc {
    font-size: 15px;
  }
}
.detail-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px 20px;
}
.detail-map_btn a {
  padding: 6px 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: #418FDE;
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .detail-map_btn a {
    padding: 5px 10px;
    font-size: 14px;
  }
}
.detail-map_btn a::before {
  content: "";
  width: 16px;
  aspect-ratio: 8/11;
  background: url(../../shop-list/images/icon_map.svg) center/100% auto no-repeat;
}
@media only screen and (max-width: 767px) {
  .detail-map_btn a::before {
    width: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .detail-map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .detail-map .detail-sub {
    margin-bottom: 0;
    order: 1;
  }
  .detail-map .detail-desc {
    margin-bottom: 0;
    order: 3;
    width: 100%;
  }
  .detail-map_btn {
    order: 2;
  }
}
.detail-btn {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .detail-btn {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.detail-btn li {
  width: 100%;
}
.detail-btn li a {
  width: 100%;
  padding: 11px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #418FDE;
  border-radius: 2px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 5%;
  color: #fff;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .detail-btn li a {
    font-size: 16px;
  }
}
.detail-btn li a::after {
  content: "";
  width: 26px;
  aspect-ratio: 1/1;
  background: url(../../shop-list/images/icon_link.svg) center/100% auto no-repeat;
}
@media only screen and (max-width: 767px) {
  .detail-btn li a::after {
    width: 22px;
  }
}
@media screen and (hover: hover) {
  .detail-btn li a:hover {
    opacity: 0.4;
  }
}

.notfound ._section {
  margin-bottom: 0 !important;
}
.notfound .c-main-title {
  padding-left: 30px;
  position: relative;
}
.notfound .c-main-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #418FDE;
}
.notfound .c-main-title h2 {
  text-align: left;
  font-weight: 600;
  color: #418FDE;
}
.notfound .c-main-title p {
  text-align: left;
}
.notfound p,
.notfound li {
  color: #333333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.8px;
}
.notfound .box {
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.notfound .box ul {
  padding-left: 25px;
}
.notfound .box ul li {
  list-style-type: none;
  margin-bottom: 15px;
  position: relative;
}
.notfound .box ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  width: 6px;
  height: 6px;
  background-color: #418FDE;
  border-radius: 50%;
}
.notfound .box ul li:last-child {
  margin-bottom: 0;
}
.notfound .notfound-btn {
  margin-top: 40px;
}
.notfound .notfound-btn .text-link {
  text-decoration: none;
  font-weight: normal;
  transition: all 0.1s ease-in-out;
  color: #418FDE;
  text-decoration: none;
  outline: none;
  font-size: 18px;
}
.notfound .notfound-btn .text-link.-arrow::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-left: 6px;
  display: inline-block;
  text-decoration: none;
}

.detailstub .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0 48px;
  margin-bottom: 80px !important;
  border-bottom: 2px solid #418FDE;
}
@media only screen and (max-width: 767px) {
  .detailstub .info {
    display: block;
    padding: 48px 0 24px;
    margin-bottom: 64px !important;
  }
}
.detailstub .info .info-inner {
  display: flex;
  align-items: center;
  column-gap: 48px;
}
@media only screen and (max-width: 767px) {
  .detailstub .info .info-inner {
    column-gap: 24px;
  }
}
.detailstub .info .info-inner .date {
  color: #333333;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.detailstub .info .info-inner .tag {
  padding: 10px 20px;
  background-color: #fff;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.9px;
  border-radius: 8px;
  background: #418FDE;
  box-shadow: 2px 3px 13px 0 rgba(0, 0, 0, 0.15);
}
.detailstub .info .info-link {
  font-size: 16px;
  color: #418FDE;
  text-decoration: none;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .detailstub .info .info-link {
    text-align: right;
    margin-top: 20px;
  }
}
.detailstub p {
  color: #333333;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 220%;
  letter-spacing: 0.9px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .detailstub p {
    letter-spacing: 0.8px;
  }
}
.detailstub p sup {
  line-height: 0;
  font-size: 12px;
}
.detailstub .main-title {
  color: #333333;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .detailstub .main-title {
    font-size: 28px;
    margin-bottom: 64px;
  }
}
.detailstub .sub-title {
  margin-top: 50px;
  color: #3F6994;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 220%;
  letter-spacing: 1px;
  padding-left: 25px;
  position: relative;
}
.detailstub .sub-title::before {
  content: "◆";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .detailstub .sub-title {
    margin-top: 35px;
    font-size: 18px;
    line-height: 180%;
    letter-spacing: 0.9px;
  }
}
.detailstub picture {
  text-align: center;
  display: block;
  margin: 40px auto;
}
@media only screen and (max-width: 767px) {
  .detailstub picture {
    margin: 20px auto;
  }
}
.detailstub picture img {
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .detailstub picture img {
    width: 100%;
    height: auto;
  }
}
.detailstub .content {
  margin-bottom: 110px;
}
.detailstub .sharelinks {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  display: block;
  border-bottom: 1px solid #d5d5d5;
}
.detailstub .sharelinks .sharelink-pdflink {
  font-size: 16px;
  display: block;
  text-align: right;
  color: #418FDE;
  text-decoration: none;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .detailstub .sharelinks .sharelink-pdflink {
    margin-bottom: 40px;
  }
}
.detailstub .sharelinks .sharelink-links {
  clear: both;
  display: flex;
  justify-content: center;
}
.detailstub .sharelinks .sharelink-links [class*=sharelink-icon-] {
  content: "";
  text-indent: -500px;
  overflow: hidden;
  background-size: contain !important;
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 15px;
  opacity: 1;
  transition: opacity 0.1s ease-in;
}
@media only screen and (max-width: 767px) {
  .detailstub .sharelinks .sharelink-links [class*=sharelink-icon-] {
    width: 42px;
    height: 42px;
  }
}
.detailstub .sharelinks .sharelink-links .sharelink-icon-facebook {
  background: transparent url(/ja/assets/images/common/icon_facebook.png) no-repeat 0 0;
}
.detailstub .sharelinks .sharelink-links .sharelink-icon-twitter {
  background: transparent url(/ja/assets/images/common/icon_twitter.png) no-repeat 0 0;
}
.detailstub .sharelinks .sharelink-links .sharelink-icon-line {
  background: transparent url(/ja/assets/images/common/icon_line.png) no-repeat 0 0;
}
.detailstub .btn-area a {
  display: inline-flex;
  align-items: center;
  color: #333333;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  padding-left: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid #418FDE;
  position: relative;
  transition: all 0.3s ease;
}
.detailstub .btn-area a::before {
  content: url(/ja/assets/images/common/arrow_12.png);
  font-family: Yu_Gothic_Light, sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 20px;
  color: #418FDE;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
.detailstub .btn-area a:hover {
  opacity: 0.6;
  color: #418FDE;
}
.detailstub .btn-area a:hover::before {
  left: -5px;
  transition: all 0.3s ease;
}