@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,700;1,14..32,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@300..700&display=swap");
/* A Modern CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

:root {
  --text-color: #333333;
  --wh: #fff;
}

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

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

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

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

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

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

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

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

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

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  color: var(--text-color);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7333333333;
  background: #fff;
  overflow-x: clip;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 499px) {
  body {
    font-size: 13px;
  }
}

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

a {
  text-decoration: none;
  color: #333333;
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}
a:hover {
  transition: all 0.3s cubic-bezier(0.43, 0.05, 0.17, 1);
}

input[type=radio],
input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  margin: 0;
  padding: 0;
}

.inner {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}
.inner.--1100 {
  max-width: 1100px;
}

.mincho {
  font-family: "Shippori Mincho B1", serif;
}

.inter {
  font-family: "Inter", sans-serif;
}

.cormorant {
  font-family: "Cormorant Garamond", serif;
}

/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
LOADING
==================================================== */
/* ====================================================
KEYFRAMES
==================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(100px);
}
.fade-up.active {
  animation: fadeUp 0.5s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-out {
  animation: zoomOut 0.5s ease-out;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* クリップパスでフェードイン */
.fadein_txt {
  width: -moz-fit-content;
  width: fit-content;
  /* opacity: 0; */
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.fadein_txt.show {
  clip-path: polygon(0 0, 100% 0, calc(100% + 9rem) 100%, 0% 100%);
  transition: clip-path 1.2s ease-out;
}/*# sourceMappingURL=common.css.map */