/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

html {
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.025em;
  color: #000;
}

.wrapper {
  overflow: hidden;
}

@media screen and (min-width: 480px) {
  .wrapper {
    min-width: max(1200px, 85.7142857143vw);
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video,
embed,
object {
  vertical-align: top;
}

img {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

address,
small,
input,
textarea,
select {
  font: inherit;
}

button {
  font: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

picture {
  display: block;
}

figure {
  margin: 0;
}

:focus {
  outline: none;
}

.wrapper {
  overflow: hidden;
}

@media screen and (min-width: 480px) {
  .spOnly {
    display: none;
  }
}

.pcOnly {
  display: none;
}

@media screen and (min-width: 480px) {
  .pcOnly {
    display: inline-block;
  }
}

.anchor {
  position: relative;
  top: -p2v(70);
}

@media screen and (min-width: 480px) {
  .anchor {
    top: 0;
  }
  .anchor--pcHeader {
    top: -pc-p2v(70);
  }
}

.anm {
  opacity: 0;
  transition: all 1s ease;
}

.anm.show {
  opacity: 1;
  translate: 0 0;
}

.anm--up {
  translate: 0 100px;
}

.anm--lr {
  translate: -100px 0;
}

.anm--rl {
  translate: 100px 0;
}

.anm--down {
  translate: 0 -100px;
}

@keyframes grad {
  0% {
    translate: -150% 0;
  }
  50% {
    translate: 0 0;
  }
  100% {
    translate: 150% 0;
  }
}

.header {
  --logo-main-color: white;
  --logo-mainSp-color: black;
  --menu-color: white;
  width: 100%;
  height: 10.9375vw;
  padding: 2.65625vw 3.90625vw;
  background-color: white;
  position: fixed;
  z-index: 10;
}

@media screen and (min-width: 480px) {
  .header {
    background-color: unset;
    height: max(70px, 5vw);
    padding: 1.2142857143vw 0;
    min-width: 1200px;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 480px) {
  .header__inner {
    width: max(960px, 68.5714285714vw);
    height: 100%;
    margin: auto;
  }
}

.header__link {
  display: block;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}

.header__logo {
  width: 46.40625vw;
  height: 100%;
  font-size: 0;
}

@media screen and (min-width: 480px) {
  .header__logo {
    width: max(265px, 18.9285714286vw);
  }
}

.header__logo .main {
  fill: var(--logo-mainSp-color);
}

@media screen and (min-width: 480px) {
  .header__logo .main {
    fill: var(--logo-main-color);
  }
}

.header__logo .point {
  fill: #b41d2a;
}

.header__logo .sub {
  fill: #b3b3b3;
}

.header__logo.is-active .main {
  --logo-main-color: #221714;
  transition: all 0.3s ease;
}

.header__logo > svg {
  width: 100%;
  height: 100%;
}

.header__menuArea {
  width: 33.59375vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 480px) {
  .header__menuArea {
    width: auto;
  }
}

.header__contact {
  width: 21.875vw;
  height: 4.6875vw;
}

@media screen and (min-width: 480px) {
  .header__contact {
    display: none;
  }
}

.header__contact > img {
  width: 100%;
}

.header__contact--menuList {
  display: block;
  width: 65.625vw;
  height: 9.375vw;
  margin: auto;
  background-color: #B41D2A;
  border-radius: 3.125vw;
  color: white;
  font-size: 4.0625vw;
  line-height: 9.375vw;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5rem;
}

@media screen and (min-width: 480px) {
  .header__contact--menuList {
    display: none;
  }
}

.header__menuImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.header__menuBtn {
  width: 6.25vw;
  height: 6.25vw;
  position: relative;
}

@media screen and (min-width: 480px) {
  .header__menuBtn {
    display: none;
  }
}

.header__menuBtn::before {
  content: "";
  width: 6.25vw;
  height: 0.9375vw;
  background-color: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.header__menuBtn::after {
  content: "";
  width: 6.25vw;
  height: 0.9375vw;
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  transition: all 0.3s ease;
}

.header__menuBtn.on .header__menuImg {
  height: 0;
}

.header__menuBtn.on::before {
  rotate: 45deg;
  transform-origin: 0% 50%;
}

.header__menuBtn.on::after {
  bottom: unset;
  top: 21%;
  transform: translate(-50%, -100%);
  rotate: -45deg;
  transform-origin: 50% 50%;
}

.header__menuListArea {
  width: 100vw;
  position: fixed;
  top: 10.9375vw;
  left: 100%;
  background-color: #221714;
  padding-bottom: 32.03125vw;
  transition: all 0.3s ease;
}

@media screen and (min-width: 480px) {
  .header__menuListArea {
    width: auto;
    position: static;
    background-color: unset;
    padding: 0;
    transition: unset;
  }
}

.header__menuListArea.show {
  left: 0;
}

.header__menuList {
  list-style: none;
  width: 92.1875vw;
  margin: auto;
  margin-bottom: 10.9375vw;
  color: white;
}

@media screen and (min-width: 480px) {
  .header__menuList {
    width: auto;
    position: static;
    background-color: unset;
    display: flex;
    justify-content: space-between;
    gap: max(30px, 2.1428571429vw);
    margin: 0;
    color: var(--menu-color);
  }
  .header__menuList.is-active {
    --menu-color: #231815;
    transition: all 0.3s ease;
  }
}

.header__menuItem {
  width: 100%;
  height: 14.0625vw;
  border-bottom: 1px solid white;
}

@media screen and (min-width: 480px) {
  .header__menuItem {
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    border: none;
    min-width: 75px;
    text-align: center;
  }
}

.header__menuItem > a {
  display: flex;
  align-items: center;
  height: 14.0625vw;
  padding: 0 7.03125vw;
  font-size: 4.375vw;
  line-height: 14.0625vw;
  font-weight: 400;
}

@media screen and (min-width: 480px) {
  .header__menuItem > a {
    font-size: max(14px, 1vw);
    font-weight: 700;
    display: block;
    height: max(36px, 2.5714285714vw);
    line-height: max(36px, 2.5714285714vw);
    padding: 0;
    width: 100%;
    position: relative;
  }
  .header__menuItem > a:hover::after {
    content: "";
    width: 100%;
    min-width: 75px;
    height: max(2px, 0.1428571429vw);
    background-color: #E50012;
    position: absolute;
    bottom: min(-5px, -0.3571428571vw);
    left: 50%;
    transform: translate(-50%, 0%);
  }
}

.header__menuItem--sub {
  margin-right: 2.34375vw;
}

@media screen and (min-width: 480px) {
  .header__menuItem--sub {
    display: none;
  }
}

.header__menuArrow {
  content: "";
  display: inline-block;
  width: 2.34375vw;
  height: 2.34375vw;
  background-image: url(../images/common/arrow_menu.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: 2.34375vw;
  margin-top: 0.78125vw;
}

@media screen and (min-width: 480px) {
  .header__menuArrow {
    display: none;
  }
}

.headerHome .header {
  --logo-main-color: #221714;
  --menu-color: #231815;
}

.footer {
  position: relative;
}

.footer__img {
  position: relative;
  z-index: -2;
}

.footer__contents {
  padding: 6.25vw 0 5.46875vw;
  background-color: white;
}

@media screen and (min-width: 480px) {
  .footer__contents {
    padding: max(60px, 4.2857142857vw) 0 max(70px, 5vw);
    display: flex;
    flex-direction: column;
    gap: max(27px, 1.9285714286vw);
  }
}

.footer__logo {
  width: 69.0625vw;
  margin: auto;
}

@media screen and (min-width: 480px) {
  .footer__logo {
    width: max(442px, 31.5714285714vw);
  }
}

.footer__logo > img {
  width: 100%;
}

@media screen and (min-width: 480px) {
  .footer__wrapper--home {
    margin-top: min(-70px, -5vw);
  }
}

.footer__menuList {
  display: none;
}

@media screen and (min-width: 480px) {
  .footer__menuList {
    width: max(960px, 68.5714285714vw);
    margin: auto;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: max(20px, 1.4285714286vw) max(145px, 10.3571428571vw) 0;
    border-top: 1px solid #B5B5B6;
  }
}

.footer__menuItem {
  font-size: max(14px, 1vw);
  font-weight: 400;
  line-height: max(28px, 2vw);
}

.copy {
  background-color: #181818;
  padding: 2.34375vw 0;
  height: 7.03125vw;
}

@media screen and (min-width: 480px) {
  .copy {
    padding: max(24px, 1.7142857143vw) 0;
    height: max(60px, 4.2857142857vw);
    background-color: black;
  }
}

.copy__txt {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.875vw;
  line-height: 2.34375vw;
  font-weight: 400;
  color: white;
  text-align: center;
}

@media screen and (min-width: 480px) {
  .copy__txt {
    font-size: max(12px, 0.8571428571vw);
    line-height: max(15px, 1.0714285714vw);
  }
}

.kvContents {
  padding-top: 10.9375vw;
  height: 64.0625vw;
}

@media screen and (min-width: 480px) {
  .kvContents {
    padding: 0;
    display: grid;
    grid-template-columns: auto max(1200px, 85.7%) auto;
    grid-template-rows: 1fr;
    height: max(340px, 24.2857142857vw);
  }
}

.kvContents__inner {
  position: relative;
  height: 100%;
}

@media screen and (min-width: 480px) {
  .kvContents__inner {
    display: grid;
    grid-column: 1/4;
    grid-row: 1/2;
  }
}

.kvContents__img {
  width: 100%;
  height: 100%;
}

.kvContents__img > img {
  width: 100%;
  height: 100%;
}

.kvContents__ttl {
  font-size: 3.4375vw;
  line-height: 6.875vw;
  font-weight: 700;
  color: white;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0%);
}

@media screen and (min-width: 480px) {
  .kvContents__ttl {
    font-size: max(22px, 1.5714285714vw);
    line-height: max(44px, 3.1428571429vw);
  }
}

.kvContents__ttl--txt {
  position: relative;
}

.kvContents__ttl--txt::after {
  content: "";
  width: 17.96875vw;
  height: 0.46875vw;
  background-color: #B41D2A;
  position: absolute;
  bottom: -2.34375vw;
  left: 50%;
  transform: translate(-50%, 0%);
}

@media screen and (min-width: 480px) {
  .kvContents__ttl--txt::after {
    width: max(115px, 8.2142857143vw);
    height: max(3px, 0.2142857143vw);
    bottom: min(-15px, -1.0714285714vw);
  }
}

.kvContents__objectArea {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  mix-blend-mode: overlay;
}

@media screen and (min-width: 480px) {
  .kvContents__objectArea {
    width: max(1200px, 85.7142857143vw);
  }
}

.kvContents__object {
  width: 44.6875vw;
  position: absolute;
  top: 30.46875vw;
  right: 4.21875vw;
}

@media screen and (min-width: 480px) {
  .kvContents__object {
    width: max(286px, 20.4285714286vw);
    top: max(198px, 14.1428571429vw);
    right: max(120px, 8.5714285714vw);
  }
}

.kvContents__object > img {
  width: 100%;
}
/*# sourceMappingURL=common.css.map */