/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.animate .fadein {
  opacity: 0;
  transform-style: preserve-3d;
  transition-property: opacity;
  transition-duration: 2000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate.show .fadein {
  opacity: 1;
}
.animate .slidein_left {
  opacity: 0;
  transform: translateX(-100px);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate .slidein_right {
  opacity: 0;
  transform: translateX(100px);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate.show .slidein_left, .animate.show .slidein_right {
  opacity: 1;
  transform: translateX(0);
}
.animate .slidein_top {
  opacity: 0;
  transform: translateY(-20px);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate .slidein_bottom {
  opacity: 0;
  transform: translateY(20px);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 1000ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0ms;
}
.animate.show .slidein_top, .animate.show .slidein_bottom {
  opacity: 1;
  transform: translateY(0);
}
.animate .zoomin {
  opacity: 0;
  transform: scale(1.5, 1.5);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-delay: 0ms;
}
.animate .zoomout {
  opacity: 0;
  transform: scale(0.5, 0.5);
  transform-style: preserve-3d;
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-delay: 0ms;
}
.animate.show .zoomin, .animate.show .zoomout {
  opacity: 1;
  transform: scale(1, 1);
}
.animate .d1 {
  transition-delay: 100ms;
}
.animate .d2 {
  transition-delay: 200ms;
}
.animate .d3 {
  transition-delay: 300ms;
}
.animate .d4 {
  transition-delay: 400ms;
}
.animate .d5 {
  transition-delay: 500ms;
}
.animate .d6 {
  transition-delay: 600ms;
}
.animate .d7 {
  transition-delay: 700ms;
}
.animate .d8 {
  transition-delay: 800ms;
}
.animate .d9 {
  transition-delay: 900ms;
}
.animate .d10 {
  transition-delay: 1000ms;
}
.animate .d11 {
  transition-delay: 1100ms;
}
.animate .d12 {
  transition-delay: 1200ms;
}
.animate .d13 {
  transition-delay: 1300ms;
}
.animate .d14 {
  transition-delay: 1400ms;
}
.animate .d15 {
  transition-delay: 1500ms;
}
.animate .d16 {
  transition-delay: 1600ms;
}
.animate .d17 {
  transition-delay: 1700ms;
}
.animate .d18 {
  transition-delay: 1800ms;
}
.animate .d19 {
  transition-delay: 1900ms;
}
.animate .d20 {
  transition-delay: 2000ms;
}

body {
  font-family: Arial, "Helvetica Neue", sans-serif;
  -webkit-text-size-adjust: 100%;
}
body a, body button {
  outline: none;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  body a, body button {
    opacity: 1;
    transform-style: preserve-3d;
    transition-property: opacity;
    transition-duration: 300ms;
    transition-timing-function: linear;
    transition-delay: 0ms;
  }
  body a:hover, body button:hover {
    opacity: 0.6;
  }
}
body a:hover, body button:hover {
  text-decoration: none;
}
body img {
  vertical-align: bottom;
  border: 0;
  outline: none;
}
body sup, body sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  position: relative;
  font-size: 50%;
}
body sup {
  bottom: 1ex;
}
body sub {
  top: 0.5ex;
}
body input, body textarea, body select, body button {
  padding: 0;
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body input::-ms-expand, body textarea::-ms-expand, body select::-ms-expand, body button::-ms-expand {
  display: none;
}
body .word_break {
  word-wrap: break-word;
  word-break: break-all;
}
body * {
  outline: none;
  box-sizing: border-box;
}
body *:hover, body *:active, body *:focus {
  outline: none;
}

body {
  background-color: #000;
  color: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

h1, h2, h3, .serif {
  font-family: "Libre Baskerville", serif;
}

img, video {
  display: block;
  width: 100%;
  height: auto;
}

header .flex .logo {
  display: block;
  position: relative;
}
header .flex .logo .logo_img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.2s linear;
}
header .flex .logo .logo_img.hide {
  opacity: 0;
}
header .flex .jp_btn {
  font-family: "Libre Baskerville", serif;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1200px;
  }
  body main {
    width: 100%;
    max-width: 1440px;
    margin: auto;
  }
  body .inner {
    width: clamp(750px, 62.5vw, 900px);
    margin: auto;
    position: relative;
    z-index: 2;
  }
  body .inner.inner_big {
    width: clamp(1000px, 83.3333333333vw, 1200px);
  }
  body .inner.inner_small {
    width: clamp(500px, 41.6666666667vw, 600px);
  }
  body .flex {
    display: flex;
  }
  body .flex.jcs {
    justify-content: start;
  }
  body .flex.jcc {
    justify-content: center;
  }
  body .flex.jcsb {
    justify-content: space-between;
  }
  body h1 {
    font-size: 41px;
    line-height: 51px;
    font-weight: 700;
    text-align: center;
  }
  body h2 {
    font-size: 36px;
    line-height: 45px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  body h3 {
    font-size: 24px;
    line-height: 27px;
    font-weight: 400;
  }
  body p, body li {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
  }
  body .tac {
    text-align: center;
  }
  body header {
    width: 100%;
    padding: 50px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  body header .flex {
    width: 83.3333333333vw;
    max-width: 1200px;
    margin: auto;
  }
  body header .flex .logo {
    width: clamp(184.1666666667px, 15.3472222222vw, 221px);
    height: clamp(23.3333333333px, 1.9444444444vw, 28px);
  }
  body header .flex .jp_btn {
    display: block;
    width: 60px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #fff;
    padding: 4px 0 6px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
  }
  body section {
    width: 100%;
    overflow: hidden;
  }
  body section.kv {
    width: 100%;
    height: auto;
    aspect-ratio: 1440/900;
    position: relative;
  }
  body section.kv::after {
    content: "";
    display: block;
    width: 100%;
    height: clamp(391.6666666667px, 32.6388888889vw, 470px);
    background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    bottom: clamp(70.8333333333px, 5.9027777778vw, 85px);
    left: 0;
    z-index: 0;
  }
  body section.kv .bg_video {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  body section.kv .inner {
    padding-top: clamp(285.8333333333px, 23.8194444444vw, 343px);
    position: relative;
    z-index: 1;
  }
  body section.kv .inner .box {
    margin-top: clamp(195.8333333333px, 16.3194444444vw, 235px);
  }
  body section.story {
    width: 100%;
    height: clamp(848.3333333333px, 70.6944444444vw, 1018px);
    position: relative;
  }
  body section.story::before, body section.story::after {
    content: "";
    display: block;
    width: 100%;
    background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    left: 0;
    z-index: 1;
  }
  body section.story::before {
    height: clamp(236.6666666667px, 19.7222222222vw, 284px);
    top: 0;
    transform: rotate(180deg);
  }
  body section.story::after {
    height: clamp(195.8333333333px, 16.3194444444vw, 235px);
    bottom: 0;
  }
  body section.story .bg_img {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }
  body section.story .inner {
    padding-top: clamp(170.8333333333px, 14.2361111111vw, 205px);
    position: relative;
    z-index: 1;
  }
  body section.story .inner .box {
    width: 400px;
  }
  body section.founder {
    padding: 0;
  }
  body section.founder .flex {
    align-items: center;
    gap: clamp(83.3333333333px, 6.9444444444vw, 100px);
    padding-right: clamp(125px, 10.4166666667vw, 150px);
  }
  body section.founder .flex .img {
    width: clamp(333.3333333333px, 27.7777777778vw, 400px);
  }
  body section.founder .flex .text {
    width: calc(100% - clamp(416.6666666667px, 34.7222222222vw, 500px));
  }
  body section.gins {
    padding-top: 90px;
  }
  body section.gins .bg_img {
    width: clamp(875px, 72.9166666667vw, 1050px);
    margin: auto;
  }
  body section.gins .inner ul {
    margin-top: 95px;
  }
  body section.gins .inner ul li {
    gap: clamp(33.3333333333px, 2.7777777778vw, 40px);
  }
  body section.gins .inner ul li .list_img {
    width: clamp(208.3333333333px, 17.3611111111vw, 250px);
  }
  body section.gins .inner ul li .list_text {
    width: calc(100% - clamp(241.6666666667px, 20.1388888889vw, 290px));
  }
  body section.gins .inner ul li .list_text h3 {
    margin-bottom: 10px;
  }
  body section.gins .inner ul li .list_text .award {
    margin-top: 20px;
  }
  body section.gins .inner ul li .list_text .award h3 {
    color: #AF9734;
  }
  body section.gins .inner ul li .list_text .award ul {
    align-items: center;
    gap: 30px;
    margin-top: 0;
  }
  body section.gins .inner ul li .list_text .award ul li {
    width: fit-content;
    margin-top: 0;
  }
  body section.gins .inner ul li .list_text .award ul li.h90 {
    height: 90px;
  }
  body section.gins .inner ul li .list_text .award ul li.h108 {
    height: 108px;
  }
  body section.gins .inner ul li .list_text .award ul li img {
    width: auto;
    height: 100%;
  }
  body section.gins .inner ul li:nth-of-type(n+2) {
    margin-top: 100px;
  }
  body section.craftsmanship {
    padding-top: clamp(329.1666666667px, 27.4305555556vw, 395px);
    padding-bottom: clamp(583.3333333333px, 48.6111111111vw, 700px);
    position: relative;
  }
  body section.craftsmanship .bg_img {
    display: block;
    width: clamp(445px, 37.0833333333vw, 534px);
    position: absolute;
    top: clamp(166.6666666667px, 13.8888888889vw, 200px);
    right: 0;
  }
  body section.craftsmanship .bg_video1 {
    display: block;
    width: clamp(695px, 57.9166666667vw, 834px);
    position: absolute;
    top: 0;
    right: calc(50% + clamp(131.6666666667px, 10.9722222222vw, 158px));
    z-index: 0;
  }
  body section.craftsmanship .bg_video1::before {
    content: "";
    display: block;
    width: 100%;
    height: clamp(131.6666666667px, 10.9722222222vw, 158px);
    background: linear-gradient(180deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    right: 0;
  }
  body section.craftsmanship .bg_video2 {
    display: block;
    width: clamp(841.6666666667px, 70.1388888889vw, 1010px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
  }
  body section.craftsmanship .bg_video2::before, body section.craftsmanship .bg_video2::after {
    content: "";
    display: block;
    width: 100%;
    background: linear-gradient(180deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    left: 0;
    z-index: 1;
  }
  body section.craftsmanship .bg_video2::before {
    height: clamp(220.8333333333px, 18.4027777778vw, 265px);
    top: 0;
  }
  body section.craftsmanship .bg_video2::after {
    height: clamp(208.3333333333px, 17.3611111111vw, 250px);
    bottom: 0;
    transform: rotate(180deg);
  }
  body section.craftsmanship .inner {
    width: clamp(416.6666666667px, 34.7222222222vw, 500px);
  }
  body section.sustainability {
    padding-bottom: 150px;
  }
  body section.design {
    padding-top: clamp(115px, 9.5833333333vw, 138px);
    padding-bottom: clamp(115px, 9.5833333333vw, 138px);
    position: relative;
  }
  body section.design .bg_img1 {
    width: clamp(635.8333333333px, 52.9861111111vw, 763px);
    position: absolute;
    top: 0;
    left: clamp(36.6666666667px, 3.0555555556vw, 44px);
    z-index: 0;
  }
  body section.design .bg_img2 {
    width: clamp(144.1666666667px, 12.0138888889vw, 173px);
    position: absolute;
    bottom: 0;
    right: clamp(100px, 8.3333333333vw, 120px);
    z-index: 0;
  }
  body section.design .inner {
    position: relative;
    padding-left: clamp(250px, 20.8333333333vw, 300px);
  }
  body section.location {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  body section.location .inner .map {
    margin-top: 40px;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
  body section.enjoyment {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  body section.enjoyment .flex {
    margin-top: 40px;
  }
  body section.enjoyment .flex .img {
    width: clamp(229.1666666667px, 19.0972222222vw, 275px);
  }
  body section.contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  body section.contact a {
    display: grid;
    place-items: center;
    width: 450px;
    height: 50px;
    border: 1px solid #fff;
    margin: 30px auto 0;
  }
  body footer {
    width: 100%;
    padding-bottom: 45px;
  }
  body footer .inner {
    padding-top: 30px;
    border-top: 1px solid #fff;
  }
  body footer .inner .copy {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.2em;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
  body main {
    width: 100%;
    margin: auto;
  }
  body .inner {
    width: 80vw;
    margin: auto;
    position: relative;
    z-index: 2;
  }
  body h1 {
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    text-align: center;
  }
  body h2 {
    font-size: 21px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 15px;
  }
  body h3 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
  }
  body p, body li {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
  }
  body .tac {
    text-align: center;
  }
  body header {
    width: 100%;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  body header .flex {
    width: 94.6666666667vw;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }
  body header .flex .logo {
    width: 29.4666666667vw;
    height: clamp(11.9466666667px, 3.7333333333vw, 28px);
  }
  body header .flex .jp_btn {
    display: block;
    width: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #fff;
    padding: 6px 0;
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    text-align: center;
  }
  body section {
    width: 100%;
    overflow-x: hidden;
  }
  body section.kv {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  body section.kv::after {
    content: "";
    display: block;
    width: 100%;
    height: 42.6666666667vw;
    background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    top: 38vw;
    left: 0;
    z-index: 0;
  }
  body section.kv .bg_video {
    width: 122.9333333333vw;
    position: absolute;
    top: 0;
    left: -9.6vw;
    z-index: 0;
  }
  body section.kv .inner {
    padding-top: 12vw;
    position: relative;
    z-index: 1;
  }
  body section.kv .inner .box {
    margin-top: 49.6vw;
  }
  body section.story {
    width: 100%;
    position: relative;
    z-index: 0;
    margin-top: -27.3333333333vw;
  }
  body section.story::before {
    content: "";
    display: block;
    width: 100%;
    height: 35.7333333333vw;
    background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotate(180deg);
  }
  body section.story .bg_img {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }
  body section.story .inner {
    padding-top: 76vw;
    position: relative;
    z-index: 1;
  }
  body section.founder {
    padding: 75px 0 0;
  }
  body section.founder .flex .text {
    margin-top: 25px;
  }
  body section.gins {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  body section.gins .bg_img {
    width: 100%;
    margin: auto;
  }
  body section.gins .inner ul {
    margin-top: 45px;
  }
  body section.gins .inner ul li .list_img {
    width: 100%;
  }
  body section.gins .inner ul li .list_text {
    width: 100%;
    margin-top: 15px;
  }
  body section.gins .inner ul li .list_text h3 {
    margin-bottom: 10px;
  }
  body section.gins .inner ul li .list_text .award {
    margin-top: 15px;
  }
  body section.gins .inner ul li .list_text .award h3 {
    font-size: 18px;
    line-height: 21px;
    color: #AF9734;
  }
  body section.gins .inner ul li .list_text .award ul {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 4vw;
    margin-top: 0;
  }
  body section.gins .inner ul li .list_text .award ul li {
    width: fit-content;
    height: 16vw;
    margin-top: 0;
  }
  body section.gins .inner ul li .list_text .award ul li img {
    width: auto;
    height: 100%;
  }
  body section.gins .inner ul li:nth-of-type(n+2) {
    margin-top: 50px;
  }
  body section.craftsmanship {
    padding-top: 64vw;
    padding-bottom: 89.3333333333vw;
    margin-top: -8vw;
    position: relative;
    z-index: 0;
  }
  body section.craftsmanship .bg_img {
    display: block;
    width: 60.6666666667vw;
    position: absolute;
    top: 69.0666666667vw;
    right: 0;
    z-index: 1;
  }
  body section.craftsmanship .bg_video1 {
    display: block;
    width: 111.2vw;
    position: absolute;
    top: 0;
    left: -30vw;
    z-index: 0;
  }
  body section.craftsmanship .bg_video1::before {
    content: "";
    display: block;
    width: 100%;
    height: 21.0666666667vw;
    background: linear-gradient(180deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0;
    right: 0;
  }
  body section.craftsmanship .bg_video2 {
    display: block;
    width: 134.6666666667vw;
    position: absolute;
    bottom: 0;
    left: -16.9333333333vw;
    margin: auto;
    z-index: 0;
  }
  body section.craftsmanship .bg_video2::before, body section.craftsmanship .bg_video2::after {
    content: "";
    display: block;
    width: 100%;
    background: linear-gradient(180deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    position: absolute;
    left: 0;
    z-index: 1;
  }
  body section.craftsmanship .bg_video2::before {
    height: 35.3333333333vw;
    top: 0;
  }
  body section.craftsmanship .bg_video2::after {
    height: 33.3333333333vw;
    bottom: 0;
    transform: rotate(180deg);
  }
  body section.craftsmanship .inner {
    width: 100%;
    min-height: 61.3333333333vw;
    padding: 0 42.6666666667vw 0 10vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body section.sustainability {
    padding-bottom: 75px;
    margin-top: -29.3333333333vw;
    position: relative;
    z-index: 1;
  }
  body section.design {
    padding-top: 48.2666666667vw;
    padding-bottom: 30.9333333333vw;
    position: relative;
  }
  body section.design .bg_img1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  body section.design .bg_img2 {
    width: 23.0666666667vw;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
  }
  body section.design .inner {
    position: relative;
  }
  body section.location {
    padding-top: 50px;
    padding-bottom: 32px;
  }
  body section.location .inner {
    width: 100%;
  }
  body section.location .inner h2, body section.location .inner p {
    padding: 0 10vw;
  }
  body section.location .inner p.tac {
    text-align: left;
  }
  body section.location .inner .map {
    margin-top: 20px;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
  body section.enjoyment {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  body section.enjoyment .flex {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
  }
  body section.enjoyment .flex .img {
    width: 36.6666666667vw;
  }
  body section.contact {
    padding-top: 32px;
    padding-bottom: 35px;
  }
  body section.contact a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 40px;
    border: 1px solid #fff;
    margin: 15px auto 0;
  }
  body section.contact a p {
    font-size: 11px;
    line-height: 13px;
  }
  body footer {
    width: 100%;
    padding-bottom: 75px;
  }
  body footer .inner {
    padding-top: 22px;
    border-top: 1px solid #fff;
  }
  body footer .inner .copy {
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.2em;
  }
  .pc {
    display: none !important;
  }
}