/*********************************

_main.scss

*********************************/
/*********************************

_variables.scss

*********************************/
/*********************************

_mixins.scss

*********************************/
/*********************************

_functions.scss

*********************************/
/*********************************

_base.scss

*********************************/
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color: #fff;
  background-color: #242424;
}

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

section {
  position: relative;
}

main {
  margin: 0 auto;
  padding: 6.5972222222vw 0 0;
  display: block;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  line-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Hide HTML5 Up and Down arrows. */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

textarea {
  resize: none;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
}
a:hover {
  text-decoration: none !important;
  opacity: 0.8;
}

img {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: auto;
}

ul {
  list-style-position: inside;
}

::-webkit-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}

::placeholder,
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
}
button:hover {
  text-decoration: none !important;
  opacity: 0.8;
}

@media print, screen and (max-width: 768px) {
  main {
    padding: 19.2307692308vw 0 0;
  }
}
/*********************************

_misc.scss

*********************************/
/*********************************

_utilities.scss

*********************************/
.textCenter {
  text-align: center;
}

.displayNone {
  display: none;
}

.bgPatternA {
  background-image: url("./../images/common/top-bg-1.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-blend-mode: multiply;
}

.bgPatternB {
  background-image: url("./../images/common/bg-common-gray-cement.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-blend-mode: multiply;
}

.bgPatternC {
  background-image: url("./../images/common/bg-common-gray-cement-2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-blend-mode: multiply;
}

.textClamp2Lines {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media print, screen and (min-width: 769px) {
  .pcBlock {
    display: block;
  }
  .spBlock {
    display: none !important;
  }
  .pcFlex {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
  .spFlex {
    display: none !important;
  }
  .pcInline-block {
    display: inline-block;
  }
  .spInline-block {
    display: none !important;
  }
}
@media print, screen and (max-width: 768px) {
  .pcBlock {
    display: none !important;
  }
  .spBlock {
    display: block;
  }
  .pcFlex {
    display: none !important;
  }
  .spFlex {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
  .pcInline-block {
    display: none !important;
  }
  .spInline-block {
    display: inline-block;
  }
}
/*********************************

_header.scss

*********************************/
.header {
  margin: 0 auto;
  width: 100vw;
  height: auto;
  position: fixed;
  right: 0;
  top: 0;
  bottom: auto;
  left: auto;
  color: #fff;
  background-color: #242424;
  outline: none;
  z-index: 10;
}
.header.isActive {
  height: 100%;
}
.header.isActive * {
  color: #000;
}
.header.isActive .header__wrapper {
  padding-left: 5.5555555556vw;
  width: 62.5vw;
  height: calc(100% - 4.1666666667vw);
  min-height: 40.9722222222vw;
  border-bottom-left-radius: 6.9444444444vw;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  background-color: #fff;
}
.header.isActive .header__logo .white {
  opacity: 0;
}
.header.isActive .header__logo .black {
  opacity: 1;
}
.header.isActive .header__hamburgerText {
  color: #000;
}
.header.isActive .header__hamburgerText__inactive {
  opacity: 0;
}
.header.isActive .header__hamburgerText__active {
  opacity: 1;
}
.header.isActive .header__hamburgerIcon {
  width: 2.7777777778vw;
  height: 2.7777777778vw;
}
.header.isActive .header__hamburgerIconInner, .header.isActive .header__hamburgerIcon:before, .header.isActive .header__hamburgerIcon:after {
  background-color: #000;
}
.header.isActive .header__hamburgerIconInner {
  opacity: 0;
}
.header.isActive .header__hamburgerIcon::before {
  width: 100%;
  top: 1.4583333333vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header.isActive .header__hamburgerIcon::after {
  width: 100%;
  bottom: 1.1805555556vw;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header:not(.isActive) .header__wrapper {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.header__wrapper {
  margin: 0 0 auto auto;
  padding: 1.5277777778vw 4.1666666667vw 1.7361111111vw 3.6111111111vw;
  width: 100%;
  height: auto;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  transition: width 0.3s linear, height 0.3s linear;
  -webkit-transition: width 0.3s linear, height 0.3s linear;
  -o-transition: width 0.3s linear, height 0.3s linear;
  border: none;
  border-radius: 0;
  outline: none;
}
.header__top {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: inherit;
  width: 100%;
}
.header__content {
  margin: 5.2777777778vw 0 0 0;
  display: none;
  width: 100%;
}
.header__contentWrapper {
  width: 100%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header__logo {
  padding-right: 2.6388888889vw;
  position: relative;
}
.header__logo img {
  max-width: 17.9861111111vw;
}
.header__logo .white {
  opacity: 1;
}
.header__logo .black {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  opacity: 0;
}
.header__hamburger {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__hamburgerText {
  margin: 0 2.4305555556vw 0 0;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3888888889vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  position: relative;
  width: 6.9444444444vw;
  text-align: right;
  cursor: pointer;
}
.header__hamburgerText__active {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}
.header__hamburgerIcon {
  position: relative;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  width: 3.4722222222vw;
  height: 1.7361111111vw;
  cursor: pointer;
}
.header__hamburgerIconInner, .header__hamburgerIcon:before, .header__hamburgerIcon:after {
  margin: auto;
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 0.1333333333vw;
  width: 100%;
  background-color: #fff;
  transition: width 0.2s linear, -webkit-transform 0.2s linear;
  transition: width 0.2s linear, transform 0.2s linear;
  transition: width 0.2s linear, transform 0.2s linear, -webkit-transform 0.2s linear;
  -webkit-transition: width 0.2s linear, -webkit-transform 0.2s linear;
  -o-transition: width 0.2s linear, transform 0.2s linear;
}
.header__hamburgerIconInner, .header__hamburgerIcon:after {
  width: 1.875vw;
  left: 0;
  right: auto;
}
.header__hamburgerIconInner {
  top: 0;
  bottom: 0;
}
.header__hamburgerIcon:before {
  top: 0;
  bottom: auto;
}
.header__hamburgerIcon:after {
  top: auto;
  bottom: 0;
}
.header__hamburgerIcon.isActive .header__hamburgerIconInner {
  opacity: 0;
}
.header__hamburgerIcon.isActive::before {
  top: 0.625vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburgerIcon.isActive::after {
  bottom: 0.625vw;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__nav {
  margin: 1.3888888889vw 5.2083333333vw 0 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: auto;
  list-style: none;
}
.header__navItem {
  position: relative;
  width: auto;
  height: 28.9583333333vw;
}
.header__navItem:not(:last-of-type) {
  margin-right: 3.6111111111vw;
}
.header__navItem a {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.header__navItem a:hover {
  opacity: 0.5;
}
.header__navItem .jp {
  display: inline-block;
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
}
.header__navItem .en {
  margin: 0.6944444444vw 0 0;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.header__btns {
  margin-right: 9.0277777778vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.3888888889vw;
}

@media print, screen and (max-width: 768px) {
  .header {
    background-color: #000;
  }
  .header.isActive .header__wrapper {
    padding: 0;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 30.7692307692vw;
  }
  .header.isActive .header__hamburgerIcon {
    width: 7.1794871795vw;
    height: 7.1794871795vw;
  }
  .header.isActive .header__hamburgerIcon::before {
    top: 3.8461538462vw;
  }
  .header.isActive .header__hamburgerIcon::after {
    bottom: 3.0769230769vw;
  }
  .header__wrapper {
    padding: 0;
  }
  .header__top {
    padding: 4.6153846154vw 5.1282051282vw 3.5897435897vw 4.6153846154vw;
  }
  .header__logo {
    padding-right: 5.1282051282vw;
  }
  .header__logo img {
    max-width: 57.4358974359vw;
  }
  .header__hamburgerText {
    display: none;
  }
  .header__hamburgerIcon {
    width: 10.2564102564vw;
    height: 5.1282051282vw;
  }
  .header__hamburgerIconInner, .header__hamburgerIcon:before, .header__hamburgerIcon:after {
    height: 0.3948717949vw;
  }
  .header__hamburgerIconInner, .header__hamburgerIcon:after {
    width: 5.641025641vw;
  }
  .header__content {
    margin: 0 auto;
    height: calc(100% - 16.6666666667vw);
    overflow: scroll;
    padding: 10.7692307692vw 0 16.6666666667vw;
  }
  .header__contentWrapper {
    margin: 0 auto;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .header__nav {
    margin: 0 auto;
    width: 71.7948717949vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
  .header__navItem {
    padding: 0 3.3333333333vw 5.1282051282vw;
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 0.2564102564vw solid #B1B1B1;
  }
  .header__navItem:not(:last-of-type) {
    margin: 5.1282051282vw 0 0;
  }
  .header__navItem:first-of-type {
    border-bottom: none;
  }
  .header__navItem a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
  .header__navItem a:hover {
    opacity: 0.5;
  }
  .header__navItem .jp {
    font-size: 4.6153846154vw;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-orientation: unset;
  }
  .header__navItem .en {
    margin: 2.0512820513vw 0 0;
    font-size: 3.5897435897vw;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-orientation: unset;
  }
  .header__btns {
    margin: 4.8717948718vw auto 0;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5641025641vw;
  }
}
/*********************************

_footer.scss

*********************************/
.footer {
  padding: 3.75vw 3.75vw 0.9722222222vw;
  background-color: #242424;
  position: relative;
}
.footer__backToTop {
  position: absolute;
  bottom: 2.6041666667vw;
  right: 2.6041666667vw;
  width: 2.7777777778vw;
  display: block;
}
.footer__logo {
  margin: 0 auto 2.2222222222vw;
  display: block;
  width: 20.1388888889vw;
}
.footer__nav {
  list-style: none;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__nav li {
  line-height: 1;
}
.footer__nav li:not(:last-of-type) {
  margin: 0 2.0833333333vw 0 0;
}
.footer__nav a, .footer__nav span {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9027777778vw;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
}
.footer__navItemIcon {
  margin: 0 0.5555555556vw 0 0;
  width: 1.3888888889vw;
  height: auto;
}
.footer__copy {
  margin: 2.9166666667vw auto 0;
  width: 100%;
  display: block;
  font-size: 0.7638888889vw;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}

@media print, screen and (max-width: 768px) {
  .footer {
    padding: 10.7692307692vw 13.8461538462vw 2.8205128205vw;
  }
  .footer__backToTop {
    bottom: 8.7179487179vw;
    right: 5.1282051282vw;
    width: 8.9743589744vw;
  }
  .footer__topNote {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.5641025641vw;
    font-weight: normal;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0;
    color: #fff;
  }
  .footer__logo {
    margin: 5.1282051282vw auto 14.6153846154vw;
    width: 66.4102564103vw;
  }
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__nav li {
    line-height: 1;
    min-width: 57.6923076923vw;
  }
  .footer__nav li:not(:last-of-type) {
    margin: 0 0 2.5641025641vw;
  }
  .footer__nav li:first-of-type {
    margin-bottom: 4.8717948718vw;
  }
  .footer__nav a, .footer__nav span {
    font-size: 3.5897435897vw;
    line-height: 2;
  }
  .footer__navItemIcon {
    margin: 0 2.5641025641vw 0 0;
    width: 5.1282051282vw;
  }
  .footer__copy {
    margin: 16.1538461538vw auto 0;
    font-size: 2.5641025641vw;
    line-height: 2;
  }
}
/*********************************

_sidebar.scss

*********************************/
/*********************************

_article.scss

*********************************/
/*********************************

_button.scss

*********************************/
.btnTypeA {
  margin: 0 auto;
  width: 29.8611111111vw;
  height: 6.9444444444vw;
  display: block;
  background-color: #D5D5D5;
  padding: 0.1388888889vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clip-path: polygon(0.6944444444vw 0, calc(100% - 0.6944444444vw) 0, 100% 0.6944444444vw, 100% calc(100% - 0.6944444444vw), calc(100% - 0.6944444444vw) 100%, 0.6944444444vw 100%, 0 calc(100% - 0.6944444444vw), 0 0.6944444444vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeA__inner {
  padding: 0.6944444444vw 2.7777777778vw 0.6944444444vw 2.2222222222vw;
  width: 100%;
  height: 100%;
  background-color: #6B6257;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  clip-path: polygon(0.625vw 0, calc(100% - 0.625vw) 0, 100% 0.625vw, 100% calc(100% - 0.625vw), calc(100% - 0.625vw) 100%, 0.625vw 100%, 0 calc(100% - 0.625vw), 0 0.625vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeA__content {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4166666667vw;
}
.btnTypeA__ja {
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.btnTypeA__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
.btnTypeA__arrow {
  position: relative;
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  border-style: solid;
  border-width: 0 0.0694444444vw 0.0694444444vw 0;
  border-color: #fff;
  -webkit-transform: translateY(1.0763888889vw) rotate(-45deg) skew(-6deg, -6deg) translateX(1.25vw);
          transform: translateY(1.0763888889vw) rotate(-45deg) skew(-6deg, -6deg) translateX(1.25vw);
}
.btnTypeA:hover {
  opacity: 1;
  background-color: #fff;
}
.btnTypeA:hover .btnTypeA__inner {
  color: #fff;
  background-color: #515151;
}
.btnTypeA:hover .btnTypeA__arrow {
  border-color: #fff;
}

.btnTypeB {
  margin: 0 auto;
  width: 32.9861111111vw;
  height: 10.0694444444vw;
  display: block;
  background-color: #6B6257;
  padding: 0.1388888889vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clip-path: polygon(0.6944444444vw 0, calc(100% - 0.6944444444vw) 0, 100% 0.6944444444vw, 100% calc(100% - 0.6944444444vw), calc(100% - 0.6944444444vw) 100%, 0.6944444444vw 100%, 0 calc(100% - 0.6944444444vw), 0 0.6944444444vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeB__inner {
  padding: 1.0416666667vw 2.7777777778vw 1.0416666667vw;
  width: 100%;
  height: 100%;
  background-color: #D5D5D5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  clip-path: polygon(0.625vw 0, calc(100% - 0.625vw) 0, 100% 0.625vw, 100% calc(100% - 0.625vw), calc(100% - 0.625vw) 100%, 0.625vw 100%, 0 calc(100% - 0.625vw), 0 0.625vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeB__content {
  width: auto;
  min-width: 15vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.btnTypeB__labelIcon {
  width: 3.125vw;
  height: 3.0555555556vw;
  display: inline-block;
}
.btnTypeB__labelIcon img {
  width: inherit;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeB__label {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.3194444444vw;
}
.btnTypeB__labelText {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4166666667vw;
}
.btnTypeB__ja {
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.btnTypeB__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1111111111vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
.btnTypeB__desc {
  margin: 0.6944444444vw auto 0;
  display: block;
  font-size: 0.9027777778vw;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.btnTypeB:hover {
  opacity: 1;
  background-color: #fff;
}
.btnTypeB:hover .btnTypeB__inner {
  color: #fff;
  background-color: #515151;
}
.btnTypeB:hover .btnTypeB__arrow {
  border-color: #fff;
}
.btnTypeB:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.btnTypeB--brown {
  background-color: #D5D5D5;
}
.btnTypeB--brown img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.btnTypeB--brown .btnTypeB__inner {
  background-color: #6B6257;
  color: #fff;
}
.btnTypeB--brown:hover {
  opacity: 1;
  background-color: #fff;
}
.btnTypeB--brown:hover .btnTypeB__inner {
  color: #fff;
  background-color: #515151;
}
.btnTypeB--brown:hover .btnTypeB__arrow {
  border-color: #fff;
}

.btnTypeC {
  margin: 0 auto;
  width: 32.9861111111vw;
  height: 6.9444444444vw;
  display: block;
  background-color: #6B6257;
  padding: 0.1388888889vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  clip-path: polygon(0.6944444444vw 0, calc(100% - 0.6944444444vw) 0, 100% 0.6944444444vw, 100% calc(100% - 0.6944444444vw), calc(100% - 0.6944444444vw) 100%, 0.6944444444vw 100%, 0 calc(100% - 0.6944444444vw), 0 0.6944444444vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeC__inner {
  padding: 1.0416666667vw 4.375vw 1.0416666667vw 2.4652777778vw;
  width: 100%;
  height: 100%;
  background-color: #D5D5D5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  clip-path: polygon(0.625vw 0, calc(100% - 0.625vw) 0, 100% 0.625vw, 100% calc(100% - 0.625vw), calc(100% - 0.625vw) 100%, 0.625vw 100%, 0 calc(100% - 0.625vw), 0 0.625vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeC__content {
  width: auto;
  min-width: 15vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.btnTypeC__labelIcon {
  width: 3.125vw;
  height: 3.0555555556vw;
  display: inline-block;
}
.btnTypeC__labelIcon img {
  width: inherit;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeC__label {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.3194444444vw;
}
.btnTypeC__labelText {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4166666667vw;
}
.btnTypeC__ja {
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.btnTypeC__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1111111111vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
.btnTypeC__desc {
  margin: 0.6944444444vw auto 0;
  display: block;
  font-size: 0.9027777778vw;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.btnTypeC__arrowIcon {
  width: 0.5555555556vw;
  position: absolute;
  top: 50%;
  right: 2.0833333333vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btnTypeC:hover {
  opacity: 1;
  background-color: #fff;
}
.btnTypeC:hover .btnTypeC__inner {
  color: #fff;
  background-color: #515151;
}
.btnTypeC:hover .btnTypeC__arrow {
  border-color: #fff;
}
.btnTypeC:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.btnTypeD {
  margin: 0 auto;
  width: 21.3194444444vw;
  height: 5.9027777778vw;
  display: block;
  background-color: #D5D5D5;
  padding: 0.1388888889vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  clip-path: polygon(0.6944444444vw 0, calc(100% - 0.6944444444vw) 0, 100% 0.6944444444vw, 100% calc(100% - 0.6944444444vw), calc(100% - 0.6944444444vw) 100%, 0.6944444444vw 100%, 0 calc(100% - 0.6944444444vw), 0 0.6944444444vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeD__inner {
  padding: 1.0416666667vw 4.375vw 1.0416666667vw 2.4652777778vw;
  width: 100%;
  height: 100%;
  background-color: #6B6257;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  clip-path: polygon(0.625vw 0, calc(100% - 0.625vw) 0, 100% 0.625vw, 100% calc(100% - 0.625vw), calc(100% - 0.625vw) 100%, 0.625vw 100%, 0 calc(100% - 0.625vw), 0 0.625vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeD__content {
  width: auto;
  min-width: 15vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.btnTypeD__labelIcon {
  width: 0.5555555556vw;
  height: 1.3888888889vw;
  display: inline-block;
}
.btnTypeD__labelIcon img {
  width: inherit;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.btnTypeD__label {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.3194444444vw;
}
.btnTypeD__labelText {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4166666667vw;
}
.btnTypeD__ja {
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.btnTypeD__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1111111111vw;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
.btnTypeD__desc {
  margin: 0.6944444444vw auto 0;
  display: block;
  font-size: 0.9027777778vw;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.btnTypeD__arrowIcon {
  width: 0.8333333333vw;
  position: absolute;
  top: 50%;
  right: 2.7777777778vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btnTypeD__arrowIcon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.btnTypeD:hover {
  opacity: 1;
  background-color: #fff;
}
.btnTypeD:hover .btnTypeD__inner {
  color: #fff;
  background-color: #515151;
}
.btnTypeD:hover .btnTypeD__arrow {
  border-color: #fff;
}
.btnTypeD:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.verticalBtnTypeA {
  margin: 0 auto;
  width: 4.1666666667vw;
  height: auto;
  min-height: 13.4722222222vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  background-color: #6B6257;
  padding: 0.1388888889vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clip-path: polygon(0.6944444444vw 0, calc(100% - 0.6944444444vw) 0, 100% 0.6944444444vw, 100% calc(100% - 0.6944444444vw), calc(100% - 0.6944444444vw) 100%, 0.6944444444vw 100%, 0 calc(100% - 0.6944444444vw), 0 0.6944444444vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.verticalBtnTypeA__inner {
  padding: 1.5277777778vw 0;
  width: 100%;
  height: inherit;
  background-color: #D5D5D5;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  clip-path: polygon(0.625vw 0, calc(100% - 0.625vw) 0, 100% 0.625vw, 100% calc(100% - 0.625vw), calc(100% - 0.625vw) 100%, 0.625vw 100%, 0 calc(100% - 0.625vw), 0 0.625vw);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.verticalBtnTypeA__content {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.verticalBtnTypeA__ja {
  display: inline-block;
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: upright;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}
.verticalBtnTypeA:hover {
  opacity: 1;
  background-color: #fff;
}
.verticalBtnTypeA:hover * {
  color: #fff !important;
}
.verticalBtnTypeA:hover .verticalBtnTypeA__inner {
  background-color: #515151;
}
.verticalBtnTypeA:hover .verticalBtnTypeA__arrow {
  border-color: #fff;
}
.verticalBtnTypeA:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.verticalBtnTypeA--brown {
  background-color: #D5D5D5;
}
.verticalBtnTypeA--brown * {
  color: #fff !important;
}
.verticalBtnTypeA--brown .verticalBtnTypeA__inner {
  background-color: #6B6257;
  color: #fff;
}
.verticalBtnTypeA--brown:hover {
  opacity: 1;
  background-color: #fff;
}
.verticalBtnTypeA--brown:hover * {
  color: #fff !important;
}
.verticalBtnTypeA--brown:hover .verticalBtnTypeA__inner {
  background-color: #515151;
}
.verticalBtnTypeA--brown:hover .verticalBtnTypeA__arrow {
  border-color: #fff;
}
.verticalBtnTypeA--brown:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

@media print, screen and (max-width: 768px) {
  .btnTypeA {
    width: 76.9230769231vw;
    height: 20.5128205128vw;
    padding: 0.5128205128vw;
    clip-path: polygon(2.5641025641vw 0, calc(100% - 2.5641025641vw) 0, 100% 2.5641025641vw, 100% calc(100% - 2.5641025641vw), calc(100% - 2.5641025641vw) 100%, 2.5641025641vw 100%, 0 calc(100% - 2.5641025641vw), 0 2.5641025641vw);
  }
  .btnTypeA__inner {
    padding: 2.5641025641vw 10.7692307692vw 2.5641025641vw 6.6666666667vw;
    clip-path: polygon(2.3076923077vw 0, calc(100% - 2.3076923077vw) 0, 100% 2.3076923077vw, 100% calc(100% - 2.3076923077vw), calc(100% - 2.3076923077vw) 100%, 2.3076923077vw 100%, 0 calc(100% - 2.3076923077vw), 0 2.3076923077vw);
  }
  .btnTypeA__content {
    gap: 1.5384615385vw;
  }
  .btnTypeA__ja {
    font-size: 4.6153846154vw;
  }
  .btnTypeA__en {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5897435897vw;
  }
  .btnTypeA__arrow {
    position: relative;
    width: 2.0512820513vw;
    height: 2.0512820513vw;
    border-style: solid;
    border-width: 0 0.2564102564vw 0.2564102564vw 0;
    border-color: #fff;
    -webkit-transform: translateY(1.7948717949vw) rotate(-45deg) skew(-6deg, -6deg) translateX(4.6153846154vw);
            transform: translateY(1.7948717949vw) rotate(-45deg) skew(-6deg, -6deg) translateX(4.6153846154vw);
  }
  .btnTypeB {
    margin: 0 auto;
    width: 84.6153846154vw;
    height: 37.1794871795vw;
    padding: 0.5128205128vw;
    clip-path: polygon(2.5641025641vw 0, calc(100% - 2.5641025641vw) 0, 100% 2.5641025641vw, 100% calc(100% - 2.5641025641vw), calc(100% - 2.5641025641vw) 100%, 2.5641025641vw 100%, 0 calc(100% - 2.5641025641vw), 0 2.5641025641vw);
  }
  .btnTypeB__inner {
    padding: 5.8974358974vw;
    clip-path: polygon(2.3076923077vw 0, calc(100% - 2.3076923077vw) 0, 100% 2.3076923077vw, 100% calc(100% - 2.3076923077vw), calc(100% - 2.3076923077vw) 100%, 2.3076923077vw 100%, 0 calc(100% - 2.3076923077vw), 0 2.3076923077vw);
  }
  .btnTypeB__content {
    min-width: 51.2820512821vw;
  }
  .btnTypeB__labelIcon {
    width: 9.4871794872vw;
    height: 10.2564102564vw;
  }
  .btnTypeB__label {
    margin-left: 3.0769230769vw;
    gap: 4.1025641026vw;
  }
  .btnTypeB__labelText {
    gap: 1.5384615385vw;
  }
  .btnTypeB__ja {
    font-size: 4.6153846154vw;
  }
  .btnTypeB__en {
    font-size: 3.5897435897vw;
  }
  .btnTypeB__desc {
    margin: 2.5641025641vw auto 0;
    font-size: 3.0769230769vw;
    line-height: 1.6;
  }
  .btnTypeC {
    margin: 0 auto;
    width: 79.4871794872vw;
    height: 26.6666666667vw;
    padding: 0.5128205128vw;
    clip-path: polygon(2.5641025641vw 0, calc(100% - 2.5641025641vw) 0, 100% 2.5641025641vw, 100% calc(100% - 2.5641025641vw), calc(100% - 2.5641025641vw) 100%, 2.5641025641vw 100%, 0 calc(100% - 2.5641025641vw), 0 2.5641025641vw);
  }
  .btnTypeC__inner {
    padding: 6.1538461538vw 8.9743589744vw 5.641025641vw 5.641025641vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    clip-path: polygon(2.3076923077vw 0, calc(100% - 2.3076923077vw) 0, 100% 2.3076923077vw, 100% calc(100% - 2.3076923077vw), calc(100% - 2.3076923077vw) 100%, 2.3076923077vw 100%, 0 calc(100% - 2.3076923077vw), 0 2.3076923077vw);
  }
  .btnTypeC__content {
    min-width: 53.8461538462vw;
  }
  .btnTypeC__labelIcon {
    padding-top: 0.7692307692vw;
    width: 8.9743589744vw;
    height: 9.7435897436vw;
  }
  .btnTypeC__label {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 0;
    gap: 2.5641025641vw;
  }
  .btnTypeC__labelText {
    gap: 1.5384615385vw;
  }
  .btnTypeC__ja {
    font-size: 4.1025641026vw;
    line-height: 1.3;
    letter-spacing: 0.04em;
  }
  .btnTypeC__en {
    font-size: 3.8461538462vw;
  }
  .btnTypeC__desc {
    margin: 2.5641025641vw auto 0;
    font-size: 3.0769230769vw;
    line-height: 1.6;
  }
  .btnTypeC__arrowIcon {
    width: 1.7948717949vw;
    right: 5.1282051282vw;
  }
  .btnTypeD {
    margin: 0 auto;
    width: 78.7179487179vw;
    height: 21.7948717949vw;
    padding: 0.5128205128vw;
    clip-path: polygon(2.5641025641vw 0, calc(100% - 2.5641025641vw) 0, 100% 2.5641025641vw, 100% calc(100% - 2.5641025641vw), calc(100% - 2.5641025641vw) 100%, 2.5641025641vw 100%, 0 calc(100% - 2.5641025641vw), 0 2.5641025641vw);
  }
  .btnTypeD__inner {
    padding: 6.1538461538vw 8.9743589744vw 5.641025641vw 5.641025641vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    clip-path: polygon(2.3076923077vw 0, calc(100% - 2.3076923077vw) 0, 100% 2.3076923077vw, 100% calc(100% - 2.3076923077vw), calc(100% - 2.3076923077vw) 100%, 2.3076923077vw 100%, 0 calc(100% - 2.3076923077vw), 0 2.3076923077vw);
  }
  .btnTypeD__content {
    min-width: 53.8461538462vw;
  }
  .btnTypeD__labelIcon {
    padding-top: 0.7692307692vw;
    width: 8.9743589744vw;
    height: 9.7435897436vw;
  }
  .btnTypeD__label {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 0;
    gap: 2.5641025641vw;
  }
  .btnTypeD__labelText {
    gap: 1.5384615385vw;
  }
  .btnTypeD__ja {
    font-size: 5.1282051282vw;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .btnTypeD__en {
    font-size: 3.8461538462vw;
  }
  .btnTypeD__desc {
    margin: 2.5641025641vw auto 0;
    font-size: 3.0769230769vw;
    line-height: 1.6;
  }
  .btnTypeD__arrowIcon {
    width: 3.0769230769vw;
    right: 8.7179487179vw;
  }
  .verticalBtnTypeA {
    padding: 0.5128205128vw;
    width: 57.6923076923vw;
    height: 15.3846153846vw;
    min-height: auto;
    clip-path: polygon(2.5641025641vw 0, calc(100% - 2.5641025641vw) 0, 100% 2.5641025641vw, 100% calc(100% - 2.5641025641vw), calc(100% - 2.5641025641vw) 100%, 2.5641025641vw 100%, 0 calc(100% - 2.5641025641vw), 0 2.5641025641vw);
  }
  .verticalBtnTypeA__inner {
    padding: 3.5897435897vw 0;
    height: 100%;
    clip-path: polygon(2.3076923077vw 0, calc(100% - 2.3076923077vw) 0, 100% 2.3076923077vw, 100% calc(100% - 2.3076923077vw), calc(100% - 2.3076923077vw) 100%, 2.3076923077vw 100%, 0 calc(100% - 2.3076923077vw), 0 2.3076923077vw);
  }
  .verticalBtnTypeA__ja {
    font-size: 5.1282051282vw;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    text-orientation: unset;
  }
}
/*# sourceMappingURL=main.css.map */