@charset "UTF-8";
/* import ------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap");
/* init --------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
br,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

fieldset,
table,
img,
abbr,
acronym {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

object {
  outline: none;
}

html {
  font-size: 62.5%;
  font-weight: 400;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: white;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(0, 0, 0, 0.7);
  text-align: left;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  -webkit-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: "Plus Jakarta Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", "メイリオ", sans-serif;
}

a {
  color: black;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  text-decoration: underline;
}

a:hover,
a:active,
a:focus,
a:visited {
  color: black;
  text-decoration: none;
}

a,
input,
select,
textarea,
button,
*:before,
*:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

input[type="submit"],
button {
  border-radius: 0;
  -webkit-appearance: none;
}

a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

table {
  border-collapse: collapse;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

object {
  pointer-events: none;
}

label {
  cursor: pointer;
}

::-moz-selection {
  background: black;
  color: white;
}

::selection {
  background: black;
  color: white;
}

/* header ------------------------------------*/
.header {
  width: 100%;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: height 250ms ease, background-color 250ms ease;
  transition: height 250ms ease, background-color 250ms ease;
}

.second .header {
  width: calc(100% - 20px);
  height: 130px;
  top: 10px;
  left: 10px;
}

.second .header:before {
  content: "";
  width: 100%;
  height: 190px;
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  .second .header:before {
    height: 120px;
  }
}

.scroll .header,
.porters .header {
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 0;
  left: 0;
}

.scroll .header:before,
.porters .header:before {
  height: 0;
  opacity: 0;
}

.htdstyle .header {
  height: 80px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.gnav_open .header {
  background-color: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  scrollbar-gutter: stable;
  overflow: hidden;
}

.gnav_open .header:before {
  display: none;
}

@media screen and (max-width: 992px) {
  .header {
    height: 60px !important;
  }
}

.header:after {
  content: "";
  width: calc(100% - 100px);
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 50px;
  bottom: 0;
  z-index: 1;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

@media screen and (max-width: 992px) {
  .header:after {
    width: calc(100% - 40px);
    left: 20px;
  }
}

.home .header:after {
  display: none;
}

.second .header:after {
  background-color: rgba(255, 255, 255, 0.3);
}

.scroll .header:after,
.gnav_open .header:after,
.porters .header:after,
.htdstyle .header:after {
  opacity: 0;
}

.header-logo {
  width: 100px;
  display: block;
  position: relative;
  z-index: 2;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

@media screen and (max-width: 992px) {
  .header-logo {
    width: 60px;
  }
}

.header-logo .bk {
  display: block;
}

.header-logo .wt {
  display: none;
}

.home .header-logo .bk,
.second .header-logo .bk {
  display: none;
}

.home .header-logo .wt,
.second .header-logo .wt {
  display: block;
}

.scroll .header-logo,
.porters .header-logo,
.htdstyle .header-logo {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
          transform: scale3d(0.8, 0.8, 0.8);
}

@media screen and (max-width: 992px) {
  .scroll .header-logo,
  .porters .header-logo,
  .htdstyle .header-logo {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.scroll .header-logo .bk,
.porters .header-logo .bk,
.htdstyle .header-logo .bk {
  display: block;
}

.scroll .header-logo .wt,
.porters .header-logo .wt,
.htdstyle .header-logo .wt {
  display: none;
}

.gnav_open .header-logo .bk {
  display: none;
}

.gnav_open .header-logo .wt {
  display: block;
}

.header-online {
  position: absolute;
  top: 50%;
  right: 50px;
  z-index: 3;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 992px) {
  .header-online {
    right: 20px;
  }
}

.header-online a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-online a:before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: block;
  background-image: url(../images/common/icn_cart_b.svg);
  background-size: 100% auto;
}

.home .header-online a,
.second .header-online a {
  color: white;
}

.home .header-online a:before,
.second .header-online a:before {
  background-image: url(../images/common/icn_cart_w.svg);
}

.scroll .header-online a,
.porters .header-online a,
.htdstyle .header-online a {
  color: black;
}

.scroll .header-online a:before,
.porters .header-online a:before,
.htdstyle .header-online a:before {
  background-image: url(../images/common/icn_cart_b.svg);
}

.gnav_open .header-online a {
  color: white;
}

.gnav_open .header-online a:before {
  background-image: url(../images/common/icn_cart_w.svg);
}

.header-online span {
  font-size: 1.3rem;
  line-height: 1.6;
}

@media screen and (max-width: 992px) {
  .header-online span {
    display: none;
  }
}

.footer {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.03);
}

.footer-shop {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-shop {
    display: block;
  }
}

.footer-shop:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}

.footer-shop__item {
  padding: 60px 50px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 768px) {
  .footer-shop__item {
    padding: 40px 20px;
  }
}

.footer-shop__item:after {
  content: "";
  width: 1px;
  height: calc(100% - 40px);
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  bottom: 20px;
}

@media screen and (max-width: 768px) {
  .footer-shop__item:after {
    width: calc(100% - 40px);
    height: 1px;
    right: 20px;
    bottom: 0;
  }
}

.footer-shop__item:last-child:after {
  display: none;
}

.footer-shop .image {
  max-width: 380px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.footer-shop .name {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  line-height: 1.6;
}

.footer-shop .name span {
  font-size: 1.1rem;
}

.footer-shop .address {
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: center;
}

.footer-shop .tel {
  margin: 5px 0;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  color: black;
}

.footer-shop .open {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}

.footer-main {
  padding: 80px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-main {
    padding: 40px 20px;
    display: block;
  }
}

.footer-main:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}

.footer-nav, .footer-sub, .footer-sns {
  margin-right: 6vw;
}

.footer-nav li, .footer-sub li, .footer-sns li {
  margin-bottom: 20px;
}

.footer-nav li a, .footer-sub li a, .footer-sns li a {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-nav {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
}

@media screen and (max-width: 768px) {
  .footer-nav {
    display: none;
  }
}

.footer-nav li a {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .footer-sub {
    display: none;
  }
}

.footer-sub li a {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .footer-sns {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .footer-sns li {
    margin-right: 40px;
  }
  .footer-sns li:last-child {
    margin-right: 0;
  }
}

.footer-sns li a {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .footer-sns li a span {
    display: none;
  }
}

.footer-sns li a:before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 10px;
  display: block;
  background-position: center;
  background-size: 100% auto;
}

.footer-sns li a.twitter:before {
  background-image: url(../../assets/images/common/icn_twitter.svg);
}

.footer-sns li a.instagram:before {
  background-image: url(../../assets/images/common/icn_instagram.svg);
}

.footer-sns li a.facebook:before {
  background-image: url(../../assets/images/common/icn_facebook.svg);
}

.footer-sns li a.pintarest:before {
  background-image: url(../../assets/images/common/icn_pintarest.svg);
}

.footer-other {
  margin-left: auto;
}

.footer-other p {
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .footer-other p {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}

.footer-other small {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .footer-other small {
    text-align: center;
  }
}

/* menu icon ---------------------------------- */
.menu {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 45px;
  left: 50px;
  z-index: 15;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .menu {
    width: 30px;
    height: 30px;
    top: 15px;
    left: 20px;
  }
}

.nowloading .menu {
  opacity: 0;
  pointer-events: none;
}

.completed .menu {
  opacity: 1;
  pointer-events: visible;
  -webkit-transition: opacity 600ms ease, top 250ms ease;
  transition: opacity 600ms ease, top 250ms ease;
}

.scroll .menu,
.porters .menu,
.htdstyle .menu {
  top: 15px !important;
}

.second .menu {
  top: 50px;
  left: 60px;
}

@media screen and (max-width: 992px) {
  .second .menu {
    top: 25px;
    left: 30px;
  }
}

.menu:hover div:first-child,
.menu:hover div:last-child {
  left: 5px;
}

@media screen and (max-width: 992px) {
  .menu:hover div:first-child,
  .menu:hover div:last-child {
    left: 3px;
  }
}

.menu:hover div:nth-child(2) {
  left: 5px;
}

@media screen and (max-width: 992px) {
  .menu:hover div:nth-child(2) {
    left: 3px;
  }
}

.menu div {
  width: 40px;
  height: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: black;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media screen and (max-width: 992px) {
  .menu div {
    width: 30px;
  }
}

.menu div:first-child {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.menu div:nth-child(2) {
  left: 10px;
}

@media screen and (max-width: 992px) {
  .menu div:nth-child(2) {
    left: 6px;
  }
}

.menu div:last-child {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.home .menu div,
.second .menu div {
  background-color: white;
}

.scroll .menu div,
.porters .menu div,
.htdstyle .menu div {
  background-color: black;
}

.gnav_open .menu div {
  background-color: white;
}

.gnav_open .menu div:first-child {
  -webkit-animation: open_line_1 500ms ease 0ms forwards;
          animation: open_line_1 500ms ease 0ms forwards;
}

.gnav_open .menu div:nth-child(2) {
  -webkit-animation: open_line_2 500ms ease 0ms forwards;
          animation: open_line_2 500ms ease 0ms forwards;
}

.gnav_open .menu div:last-child {
  -webkit-animation: open_line_3 500ms ease 0ms forwards;
          animation: open_line_3 500ms ease 0ms forwards;
}

.gnav_close .menu div:first-child {
  -webkit-animation: close_line_1 500ms ease 0ms forwards;
          animation: close_line_1 500ms ease 0ms forwards;
}

.gnav_close .menu div:nth-child(2) {
  -webkit-animation: close_line_2 500ms ease 0ms forwards;
          animation: close_line_2 500ms ease 0ms forwards;
}

.gnav_close .menu div:last-child {
  -webkit-animation: close_line_3 500ms ease 0ms forwards;
          animation: close_line_3 500ms ease 0ms forwards;
}

@-webkit-keyframes open_line_1 {
  0% {
    left: 5px;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  50% {
    left: 5px;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  51% {
    left: 5px;
    -webkit-transform: translateY(1px) rotate3d(0, 0, 1, 0);
            transform: translateY(1px) rotate3d(0, 0, 1, 0);
  }
  100% {
    left: 5px;
    -webkit-transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
            transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
  }
}

@keyframes open_line_1 {
  0% {
    left: 5px;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  50% {
    left: 5px;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  51% {
    left: 5px;
    -webkit-transform: translateY(1px) rotate3d(0, 0, 1, 0);
            transform: translateY(1px) rotate3d(0, 0, 1, 0);
  }
  100% {
    left: 5px;
    -webkit-transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
            transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
  }
}

@-webkit-keyframes open_line_2 {
  0% {
    left: 5px;
    opacity: 1;
  }
  50% {
    left: 5px;
    opacity: 1;
  }
  100% {
    left: 5px;
    opacity: 0;
  }
}

@keyframes open_line_2 {
  0% {
    left: 5px;
    opacity: 1;
  }
  50% {
    left: 5px;
    opacity: 1;
  }
  100% {
    left: 5px;
    opacity: 0;
  }
}

@-webkit-keyframes open_line_3 {
  0% {
    left: 5px;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    left: 5px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  51% {
    left: 5px;
    -webkit-transform: translateY(0) rotate3d(0, 0, 1, 0);
            transform: translateY(0) rotate3d(0, 0, 1, 0);
  }
  100% {
    left: 5px;
    -webkit-transform: translateY(0) rotate3d(0, 0, 1, -45deg);
            transform: translateY(0) rotate3d(0, 0, 1, -45deg);
  }
}

@keyframes open_line_3 {
  0% {
    left: 5px;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    left: 5px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  51% {
    left: 5px;
    -webkit-transform: translateY(0) rotate3d(0, 0, 1, 0);
            transform: translateY(0) rotate3d(0, 0, 1, 0);
  }
  100% {
    left: 5px;
    -webkit-transform: translateY(0) rotate3d(0, 0, 1, -45deg);
            transform: translateY(0) rotate3d(0, 0, 1, -45deg);
  }
}

@-webkit-keyframes close_line_1 {
  0% {
    left: 5px;
    -webkit-transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
            transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
  }
  50% {
    left: 5px;
    -webkit-transform: translateY(1px) rotate3d(0, 0, 1, 0);
            transform: translateY(1px) rotate3d(0, 0, 1, 0);
  }
  51% {
    left: 5px;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  100% {
    left: 0;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

@keyframes close_line_1 {
  0% {
    left: 5px;
    -webkit-transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
            transform: translateY(1px) rotate3d(0, 0, 1, 45deg);
  }
  50% {
    left: 5px;
    -webkit-transform: translateY(1px) rotate3d(0, 0, 1, 0);
            transform: translateY(1px) rotate3d(0, 0, 1, 0);
  }
  51% {
    left: 5px;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  100% {
    left: 0;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}

@-webkit-keyframes close_line_2 {
  0% {
    left: 5px;
    opacity: 0;
  }
  50% {
    left: 5px;
    opacity: 0;
  }
  100% {
    left: 10px;
    opacity: 1;
  }
}

@keyframes close_line_2 {
  0% {
    left: 5px;
    opacity: 0;
  }
  50% {
    left: 5px;
    opacity: 0;
  }
  100% {
    left: 10px;
    opacity: 1;
  }
}

@-webkit-keyframes close_line_3 {
  0% {
    left: 5px;
    -webkit-transform: translateY(0) rotate3d(0, 0, 1, -45deg);
            transform: translateY(0) rotate3d(0, 0, 1, -45deg);
  }
  50% {
    left: 5px;
    -webkit-transform: translateY(0) rotate3d(0, 0, 1, 0);
            transform: translateY(0) rotate3d(0, 0, 1, 0);
  }
  51% {
    left: 5px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    left: 0;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

@keyframes close_line_3 {
  0% {
    left: 5px;
    -webkit-transform: translateY(0) rotate3d(0, 0, 1, -45deg);
            transform: translateY(0) rotate3d(0, 0, 1, -45deg);
  }
  50% {
    left: 5px;
    -webkit-transform: translateY(0) rotate3d(0, 0, 1, 0);
            transform: translateY(0) rotate3d(0, 0, 1, 0);
  }
  51% {
    left: 5px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    left: 0;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

/* nav --------------------------------------- */
.gnav {
  width: calc(100% - 100px);
  max-width: 360px;
  height: calc(100vh - 170px);
  max-height: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  border-radius: 10px;
  position: fixed;
  top: 120px;
  left: 50px;
  z-index: 20;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease;
  transition: opacity 300ms ease, -webkit-transform 300ms ease;
  transition: opacity 300ms ease, transform 300ms ease;
  transition: opacity 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
}

@media screen and (max-width: 992px) {
  .gnav {
    width: calc(100% - 20px);
    height: calc(100vh - 90px);
    max-height: 700px;
    top: 60px;
    left: 10px;
  }
}

.gnav_open .gnav {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: visible;
}

.gnav_open.scroll .gnav,
.gnav_open.porters .gnav {
  top: 80px;
}

@media screen and (max-width: 992px) {
  .gnav_open.scroll .gnav,
  .gnav_open.porters .gnav {
    top: 60px;
  }
}

.gnav_close .gnav {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.gnav__wrap {
  padding: 50px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: scroll;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  scroll-behavior: smooth;
}

@media screen and (max-width: 992px) {
  .gnav__wrap {
    padding: 40px 10px;
  }
}

.gnav-main {
  padding: 0 10px;
}

.gnav-main li {
  margin-bottom: 5px;
}

.gnav-main li:last-child {
  margin-bottom: 0;
}

.gnav-main li a {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 2.4rem;
  line-height: 1.6;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}

.gnav-main li a:after {
  content: "";
  width: 15px;
  height: 6px;
  display: block;
  background-image: url(../../assets/images/common/icn_arrow_r.png);
  background-size: 100% auto;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
}

.gnav-main li a:hover {
  color: rgba(0, 0, 0, 0.7);
}

.gnav-main li a:hover:after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

@media screen and (max-width: 992px) {
  .gnav-main li a {
    font-size: 2.2rem;
  }
}

.gnav-sub {
  margin-top: 20px;
  padding: 0 10px;
  padding-top: 30px;
  position: relative;
}

.gnav-sub:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}

.gnav-sub li {
  margin-bottom: 5px;
}

.gnav-sub li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}

.gnav-sub li a:after {
  content: "";
  width: 15px;
  height: 6px;
  display: block;
  background-image: url(../../assets/images/common/icn_arrow_r.png);
  background-size: 100% auto;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
}

.gnav-sub li a:hover {
  color: rgba(0, 0, 0, 0.7);
}

.gnav-sub li a:hover:after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.gnav-porters {
  margin: 40px 0;
}

@media screen and (max-width: 992px) {
  .gnav-porters {
    margin-bottom: 0;
  }
}

.gnav-porters a {
  display: block;
}

.gnav-porters a img {
  border-radius: 5px;
}

.gnav-contact {
  margin-top: auto;
  padding: 0 10px;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gnav-contact dt,
.gnav-contact dd {
  margin-top: 5px;
  line-height: 1.8;
}

.gnav-contact dt {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  font-size: 1.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gnav-contact dt:before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 5px;
  display: block;
  background-image: url(../../assets/images/common/icn_pin.svg);
  background-size: 100% auto;
}

.gnav-contact dd {
  font-size: 1.3rem;
}

.overlay {
  width: 100%;
  height: 100vh;
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  -webkit-transition: opacity 300ms ease, -webkit-backdrop-filter 300ms ease;
  transition: opacity 300ms ease, -webkit-backdrop-filter 300ms ease;
  transition: opacity 300ms ease, backdrop-filter 300ms ease;
  transition: opacity 300ms ease, backdrop-filter 300ms ease, -webkit-backdrop-filter 300ms ease;
}

.gnav_open .overlay {
  opacity: 1;
  pointer-events: visible;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.gnav_close .overlay {
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
}

/* loading ----------------------------------- */
/* common main parts ------------------------- */
.gnav_open .main {
  scrollbar-gutter: stable;
  overflow: auto;
}

.pagehead {
  width: 100%;
  height: calc(150px + 30vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagehead__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  position: relative;
  top: 4vw;
  z-index: 1;
  font-size: 6rem;
  line-height: 1.6;
  color: white;
}

@media screen and (max-width: 992px) {
  .pagehead__title {
    font-size: 4rem;
  }
}

.pagehead__image {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 0;
}

.pagehead__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pagehead.tall {
  height: calc(250px + 40vw);
}

.pagetitle {
  width: 100%;
  height: 180px;
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pagetitle.line-bottom:after {
  content: "";
  width: calc(100% - 100px);
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 50px;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .pagetitle.line-bottom:after {
    width: calc(100% - 40px);
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .pagetitle {
    height: auto;
    margin-top: 60px;
    padding: 0 20px;
    display: block;
  }
}

.pagetitle__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  font-size: 4rem;
  line-height: 1.6;
  color: black;
}

@media screen and (max-width: 768px) {
  .pagetitle__title {
    padding: 40px 0;
    font-size: 3rem;
    text-align: center;
  }
}

.pagetitle .breadcrumb {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .pagetitle .breadcrumb {
    top: 10px;
    left: 20px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.contents {
  margin-bottom: 120px;
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .contents {
    margin-bottom: 80px;
    padding: 0 20px;
  }
}

/* common sub parts -------------------------- */
.pagination {
  width: 100%;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 60px;
  }
}

.pagination li {
  margin-right: 20px;
}

.pagination li a,
.pagination li span {
  width: 24px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.pagination li a:hover, .pagination li a.current,
.pagination li span:hover,
.pagination li span.current {
  color: black;
}

.pagination li a.current:after,
.pagination li span.current:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: black;
  position: absolute;
  left: 0;
  bottom: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  line-height: 1.4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb li:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 10px;
  display: block;
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate3d(0, 0, -1, 45deg);
          transform: rotate3d(0, 0, -1, 45deg);
}

.breadcrumb li:last-child {
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb li:last-child:after {
  display: none;
}

.more-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  line-height: 1.6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.more-btn a:before {
  content: "";
  width: 40px;
  height: 20px;
  margin-right: 10px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-image: url(../../assets/images/common/icn_arrow_r.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.more-btn a:hover:before {
  border-color: black;
}

.more-btn.wt a {
  color: white;
}

.more-btn.wt a:before {
  border-color: rgba(255, 255, 255, 0.2);
  background-image: url(../../assets/images/common/icn_arrow_r_w.png);
}

.more-btn.wt a:hover:before {
  border-color: white;
}

.item-list__item a {
  display: block;
}

.item-list__image {
  width: 100%;
  padding-top: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.item-list__image figure {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.item-list__image figure.off {
  z-index: 0;
}

.item-list__image figure.on {
  z-index: 1;
  opacity: 0;
}

a:hover .item-list__image figure.on {
  opacity: 1;
}

.item-list .shop,
.item-list .name,
.item-list .brand {
  line-height: 1.6;
  text-align: center;
  color: black;
}

.item-list .shop {
  font-size: 1.2rem;
}

.item-list .name {
  margin: 5px 0;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .item-list .name {
    margin: 2px 0;
    font-size: 1.4rem;
  }
}

.item-list .brand {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.6);
}

.works-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.works-list__item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wt .works-list__item a {
  color: white;
}

.works-list__item a:hover .works-list__title {
  text-decoration: underline !important;
}

.works-list__image {
  width: 100%;
  margin-bottom: 20px;
  padding-top: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.works-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.works-list__category {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  line-height: 1.6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .works-list__category {
    font-size: 1.2rem;
  }
}

.works-list__category:before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 5px;
  display: block;
  border: 1px solid black;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wt .works-list__category:before {
  border-color: white;
}

.works-list__title {
  margin-bottom: 30px;
  font-size: 2.4rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .works-list__title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}

.works-list-data {
  width: 100%;
  margin-top: auto;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.works-list-data:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: black;
  position: absolute;
  left: 0;
  bottom: 0;
}

.wt .works-list-data:after {
  background-color: white;
}

.works-list-data span {
  font-size: 1.2rem;
  line-height: 1.4;
}

.works-list-data span:first-child {
  max-width: 60%;
}

.blog-ui {
  width: 100%;
  padding: 20px 0 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog-ui:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}

.blog-ui-list {
  margin-bottom: 5px;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-ui-list dt {
  max-width: 60px;
  -ms-flex-preferred-size: 60px;
      flex-basis: 60px;
  min-width: 60px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  color: black;
}

.blog-ui-list dd {
  max-width: 160px;
  -ms-flex-preferred-size: 160px;
      flex-basis: 160px;
  min-width: 160px;
  position: relative;
}

.blog-ui-list dd:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 15px;
  top: calc(50% - 3px);
  z-index: 1;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.blog-ui-list dd select {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.06);
  border: 0;
  position: relative;
  z-index: 0;
  font-size: 1.3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* common effect ----------------------------- */
.imghover,
a .imghover {
  overflow: hidden;
}

.imghover img,
a .imghover img {
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
  -webkit-transform: scale3d(1.02, 1.02, 1.02);
          transform: scale3d(1.02, 1.02, 1.02);
}

.imghover:hover img,
a:hover .imghover img {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.notice {
  margin: 20px 0;
}

.notice li {
  margin: 5px 0;
  font-size: 1.2rem;
  line-height: 1.6;
}
