@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  * 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. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
  * 1. Add the correct sizing in Firefox.
  * 2. Show the overflow in Edge 18- and IE.
  */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
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.
  */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * Collapse border spacing in all browsers (opinionated).
  */
table {
  border-collapse: collapse;
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -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 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

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

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * 1. Remove the tapping delay in IE 10.
  * 2. Remove the tapping delay on clickable elements
       in all browsers (opinionated).
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy=true] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden=false][hidden] {
  display: initial;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}
body.scrollOff {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 599px) {
  body {
    font-size: 14px;
  }
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}

.oswald--reg {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

.u-color--gray {
  color: #dbdbdb;
}

.u-color--fff {
  color: #fff;
}

.u-fz-small--mv {
  font-size: 0.75em;
}

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

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p,
figure {
  margin: 0;
}

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

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

@media (max-width: 1440px) {
  .inner {
    margin: 0 8.33333%;
  }
}
@media (max-width: 599px) {
  .inner {
    margin: 0 5.33333%;
  }
}
.l-header {
  background: #4e4e4e;
}
.l-header__inner {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
}
.l-header__nav {
  display: grid;
  place-items: end center;
  height: 75px;
}
.l-header__nav__inner {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
}
.l-header__list {
  display: flex;
  justify-content: right;
  align-items: center;
}
.l-header__item {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.024em;
  line-height: 1.5;
  color: #dbdbdb;
  margin-right: 40px;
}
.l-header__a {
  transition: all 0.1s;
}
.l-header__a:hover {
  color: #fff;
}

@media (max-width: 1440px) {
  .l-header__inner {
    max-width: 100%;
    margin: 0 6.5%;
  }
}
@media (max-width: 599px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: none;
    z-index: 9999;
  }
  .l-header__inner {
    margin: 0;
  }
  .l-header__nav {
    place-items: start center;
    height: 100%;
    padding-bottom: 0;
  }
  .l-header__item {
    font-size: 8.53333vw;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    letter-spacing: 0.032em;
    line-height: 1.375;
    color: #fff;
    margin-right: 0;
  }
  .l-header__a {
    display: grid;
    place-items: center start;
    height: 18.93333vw;
    padding-left: 5.33333vw;
    border-bottom: 1px solid #707070;
  }
}
.l-footer {
  position: relative;
  padding: 80px 0 0;
  background: #f5f5f5;
}
.l-footer__title {
  text-decoration-line: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 0.015em;
  padding-bottom: 0.425em;
}
.l-footer__list {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
  margin: 0 0 30px;
}
.l-footer__item {
  font-size: 0.875rem;
  letter-spacing: 0.024em;
  line-height: 1.5;
}
.l-footer__item + .l-footer__item {
  margin-left: 1.71428em;
}
.l-footer__a::after {
  display: inline-block;
  content: "";
  width: 0.78571em;
  height: 0.78571em;
  margin-left: 0.42857em;
  background: currentColor;
  clip-path: polygon(0 45%, 75% 45%, 75% 25%, 100% 50%, 75% 75%, 75% 55%, 0 55%);
  transition: all 0.1s;
}
.l-footer__a:hover {
  filter: brightness(150%);
}
.l-footer__a:hover::after {
  transform: translateX(0.3em);
}

@media (max-width: 599px) {
  .l-footer {
    padding: 14% 0 0;
  }
  .l-footer__title {
    padding-bottom: calc(12.8vw + 0.3em);
  }
  .l-footer__list {
    margin: 0;
  }
  .l-footer__item {
    font-size: 3.73333vw;
    letter-spacing: 0.032em;
    line-height: 1.375;
    margin: 0 0 2.5%;
  }
}
.c-title--section {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.032em;
  line-height: 1.375;
  margin: 0;
}
.c-title--section::before {
  display: inline-block;
  content: "";
  width: 0.25em;
  height: 0.25em;
  margin: 0 0.2em 0.2em;
  background: #ff9328;
  border-radius: 50%;
  vertical-align: middle;
}
.c-title--about {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2rem;
  margin: 0;
}
.c-title--about-en {
  font-size: 0.75em;
  color: #555;
}
.c-title--news {
  display: flex;
  align-items: center;
  font-size: 1.125em;
  letter-spacing: 0.032em;
  line-height: 1.38888;
  margin: 0;
}
.c-title--news::after {
  content: "/";
  font-size: 1.5em;
  margin: 0 0.4em;
}
.c-title--contact {
  font-size: 5rem;
  letter-spacing: 0.032em;
  line-height: 1.35;
  text-align: center;
  margin: 0 0 0.45em;
}
.c-title--mv-item {
  font-size: 0.875rem;
  letter-spacing: 0.024em;
  line-height: 1.5;
  margin-top: 0.57142em;
}
.c-title--big {
  font-size: 10rem;
  letter-spacing: 0.032em;
  line-height: 1.35625;
  text-align: center;
  white-space: nowrap;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .c-title--big {
    font-size: 10.9vw;
  }
}
@media (max-width: 1024px) {
  .c-title--about {
    font-size: 1.8rem;
  }
  .c-title--big {
    font-size: 10.9vw;
  }
}
@media (max-width: 599px) {
  .c-title--mv-item {
    font-size: 2.13333vw;
  }
  .c-title--about {
    font-size: 1.6875rem;
  }
  .c-title--contact {
    font-size: 4.25rem;
  }
  .c-title--big {
    display: grid;
    place-items: center;
    font-size: 14vw;
    line-height: 1.17647;
    text-align: left;
    white-space: normal;
  }
}
.c-sp-menu__button {
  display: none;
}

@media (max-width: 599px) {
  .c-sp-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding: 20.53333vw 5.33333% 0;
    background: #4e4e4e;
    z-index: 9999;
    animation: fade-in 0.2s forwards;
  }
  .c-sp-menu.open {
    display: block;
  }
  .c-sp-menu__button {
    display: block;
    position: fixed;
    top: 4vw;
    right: 5.33333vw;
    width: 7.46666vw;
    height: 5.06666vw;
    border: none;
    background-image: linear-gradient(#dbdbdb, #dbdbdb);
    background-position: center top 50%;
    background-size: 100% 0.8vw;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.1s;
  }
  .c-sp-menu__button::before, .c-sp-menu__button::after {
    position: absolute;
    right: 0;
    content: "";
    width: 100%;
    height: 0.8vw;
    background: #dbdbdb;
    transform-origin: right center;
    transition: all 0.3s;
    transition: transform 0.3s, background 0.3s;
  }
  .c-sp-menu__button::before {
    top: 0;
  }
  .c-sp-menu__button::after {
    bottom: 0;
  }
  .c-sp-menu__button.open {
    background-size: 0 0.8vw;
  }
  .c-sp-menu__button.open::before, .c-sp-menu__button.open::after {
    right: 0.5vw;
    height: 0.85vw;
    background: #ff9328;
  }
  .c-sp-menu__button.open::before {
    transform: rotate(-45deg) translateY(-0.8vw);
  }
  .c-sp-menu__button.open::after {
    transform: rotate(45deg) translateY(0.8vw);
  }
}
.c-button--header {
  display: grid;
  place-items: center;
  letter-spacing: 0.032em;
  color: #171515;
  width: 120px;
  height: 48px;
  background: #ff9329;
  transition: all 0.05s;
}
.c-button--header:hover {
  filter: brightness(120%);
}
.c-button--contact {
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 120px;
  height: 48px;
  margin: 56px auto 0;
  border: none;
  background: #ff9328;
  cursor: pointer;
  transition: all 0.1s;
  display: block;
}
.c-button--contact:hover {
  filter: brightness(120%);
}

@media (max-width: 599px) {
  .c-button--header {
    position: fixed;
    bottom: 0;
    right: 0;
    font-size: 4.26666vw;
    width: 100%;
    height: 12.8vw;
    z-index: 9999;
  }
}
.c-bg--mv {
  background: #4e4e4e;
}
.c-bg--white {
  background: #fff;
}
.c-bg--gray {
  background: #f5f5f5;
}

.c-breadcrumb {
  max-width: 1440px;
  padding: 0 12px;
  margin: 8px auto 0;
  color: #fff;
}
.c-breadcrumb__list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 33px;
  list-style: none;
}
@media (max-width: 599px) {
  .c-breadcrumb__list {
    gap: 5px 12px;
    justify-content: flex-start;
  }
}
.c-breadcrumb__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  color: #968780;
  transition: opacity 0.3s;
}
.c-breadcrumb__link:hover {
  opacity: 0.7;
}
@media (max-width: 599px) {
  .c-breadcrumb__link {
    font-size: 12px;
  }
}
.c-breadcrumb__item {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: #968780;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 599px) {
  .c-breadcrumb__item {
    font-size: 12px;
  }
}
.c-breadcrumb__item + .c-breadcrumb__item {
  position: relative;
}
.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: "＞";
  margin-right: 18px;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

.p-mv__title {
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
}
.p-mv__table {
  display: grid;
  grid-template-columns: repeat(4, 19.96671%);
  justify-content: space-between;
  padding: 0;
}
.p-mv__item {
  margin-bottom: 64px;
  display: inline-block;
}
.p-mv__hover {
  display: block;
  position: relative;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  background: #4e4e4e;
}
.p-mv__hover::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #313131;
  pointer-events: none;
}
.p-mv__hover:hover .p-mv__img {
  filter: blur(8px);
  cursor: pointer;
}
.p-mv__hover:hover .p-mv__text {
  display: flex;
}
.p-mv__img {
  transition: all 0.3s;
}
.p-mv__text {
  display: none;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.44444;
  text-align: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: fade-in 0.8s forwards;
}

@media (max-width: 1440px) {
  .p-mv__item {
    margin-bottom: 27%;
  }
  .p-mv__text {
    font-size: 1.25vw;
  }
}
@media (max-width: 1024px) {
  .p-mv {
    margin-bottom: 0;
  }
  .p-mv__table {
    grid-template-columns: repeat(3, 28.7%);
  }
  .p-mv__item {
    margin-bottom: 27%;
  }
  .p-mv__text {
    font-size: 1.75vw;
  }
}
@media (max-width: 599px) {
  .p-mv__title {
    top: 18.13333vw;
  }
  .p-mv__table {
    grid-template-columns: repeat(2, 42.68656%);
  }
  .p-mv__text {
    font-size: 2.66666vw;
  }
}
.p-category {
  position: relative;
  margin-top: 0.16666%;
  z-index: 1;
}
.p-category__table {
  display: grid;
  grid-template-columns: repeat(3, 29.36772%);
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
  margin: 2rem auto;
}
.p-category__img {
  transition: all 0.1s;
}
.p-category__a {
  display: block;
  overflow: hidden;
}
.p-category__a:hover .p-category__img {
  transform: scale(1.15);
}

@media (max-width: 1024px) {
  .p-category__table {
    grid-template-columns: repeat(2, 42.5%);
  }
  .p-category__item:last-of-type {
    margin: 20% auto 0;
  }
}
@media (max-width: 599px) {
  .p-category__table {
    grid-template-columns: repeat(2, 46%);
  }
  .p-category__item:last-of-type {
    margin: 20% auto 0;
  }
}
.p-about {
  position: relative;
  z-index: 1;
}
.p-about__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
}
.p-about__text {
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  font-feature-settings: "palt";
  margin: 0 0 0 10%;
  padding: 2.4375em 0 2.4375em 10%;
  border-left: 1px solid #171515;
}

@media (max-width: 1440px) {
  .p-about__inner {
    padding: 5% 0;
  }
}
@media (max-width: 599px) {
  .p-about__inner {
    display: block;
    padding: 18% 0;
  }
  .p-about__text {
    font-size: 0.8125rem;
    margin: 10% 0 0 5%;
    padding: 1.5em 0 1.5em 5%;
    border-left: 1px solid #171515;
  }
}
.p-news {
  position: relative;
  background: #ff9329;
  z-index: 1;
}
.p-news__inner {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
.p-news__table {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 4.5em;
}
.p-news__table:first-of-type {
  animation: slide-right-01 36s -18s infinite linear;
}
.p-news__table:last-of-type {
  animation: slide-right-02 36s infinite linear;
}
.p-news__item {
  flex-shrink: 0;
}
.p-news__item a {
  display: flex;
  align-items: center;
  margin-right: 2.5em;
}
.p-news__ico {
  width: 2em;
  margin-right: 1.125em;
}
.p-news__day {
  letter-spacing: 0.032em;
  margin-right: 1em;
}
.p-news__text {
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (max-width: 599px) {
  .p-news__inner {
    font-size: 0.875rem;
  }
}
.p-contact {
  position: relative;
  padding: 128px 0 0;
  z-index: 1;
  overflow: hidden;
}
.p-contact__form {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
}
.p-contact__label {
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
.p-contact__label:after {
  content: "＊";
  font-size: 0.8em;
  font-weight: 700;
  color: #ff9329;
  margin-left: 0.4em;
}
.p-contact__input {
  font-size: 0.875em;
  letter-spacing: 0.05em;
  height: 2.5em;
  padding: 0 1em;
  border: 1px solid #171515;
  background: #f5f5f5;
  width: 100%;
}
.p-contact__input:focus {
  background: #ff9329;
}
.p-contact__textarea {
  font-size: 0.875em;
  height: 5em;
  padding: 0.8125em 1em;
  resize: none;
}
.p-contact__note {
  color: #ff9328;
  font-size: 0.875em;
  font-weight: 500;
  margin-bottom: 1.3125em;
}

@media (max-width: 599px) {
  .p-contact {
    padding: 25% 0 5%;
  }
  .p-contact__form {
    font-size: 0.85714rem;
    max-width: 100%;
  }
}
.p-ig {
  position: relative;
  margin: 0;
  padding-top: 123px;
  overflow-x: hidden;
}
.p-ig__table {
  position: relative;
  display: flex;
  background: #fff;
}
.p-ig__table::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% 0;
  content: "";
  width: 100vw;
  height: 50%;
  background: #f5f5f5;
  pointer-events: none;
}
.p-ig__item {
  position: relative;
  width: 20%;
  height: auto;
  aspect-ratio: 1;
  border: solid #171515;
  border-width: 1px 0 1px 1px;
}
.p-ig__item:last-of-type {
  border-width: 1px;
}
.p-ig__item:hover {
  filter: brightness(120%);
}

@media (max-width: 599px) {
  .p-ig {
    padding-top: 19vw;
  }
}
.p-single__inner {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.p-single__num {
  color: #fff;
  font-size: 40px;
}
.p-single__title {
  color: #fff;
  font-size: 64px;
  margin-top: -1rem;
}
@media (max-width: 599px) {
  .p-single__title {
    font-size: 54px;
    margin-top: 1rem;
    line-height: 1;
  }
}
.p-single__main {
  color: #fff;
}
.p-single__information {
  display: flex;
  gap: 30px;
}
@media (max-width: 599px) {
  .p-single__information {
    display: block;
  }
}
.p-single__information--eyecatch {
  width: 50%;
}
@media (max-width: 599px) {
  .p-single__information--eyecatch {
    width: 100%;
  }
}
.p-single__information--eyecatch img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single__information--lead {
  width: 50%;
}
@media (max-width: 599px) {
  .p-single__information--lead {
    width: 100%;
    margin-top: 1rem;
  }
}
.p-single__information--category {
  display: inline-block;
  background-color: #2126aa;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 24px;
}
.p-single__explain {
  max-width: 1200px;
  margin: 2rem auto;
}
.p-single__button {
  background-color: #ff9328;
  width: 240px;
  border: none;
  padding: 1rem;
  margin: 4rem auto;
  display: block;
  color: #171515;
  text-align: center;
}

.p-pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.p-pagination .page-numbers {
  color: #fff;
}
.p-pagination .page-numbers.current {
  background-color: #ff9328;
  color: #171515;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  display: block;
}
.p-pagination .c-link-arrow__arrow {
  font-size: 2rem;
}

.p-information__item {
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 2rem 0;
}
.p-information__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .p-information__title {
    font-size: 1.4rem;
  }
}

@media (max-width: 1440px) {
  .u-br--none {
    display: none;
  }
}
.u-flex--right {
  justify-content: right;
}

@media (max-width: 599px) {
  .u-block--sp {
    display: block;
  }
}
.u-margin--contact {
  margin-bottom: 40px;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-right-01 {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide-right-02 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.u-ring {
  position: relative;
}
.u-ring.start::before {
  animation: ring 1.5s forwards;
}
.u-ring::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 520px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 65px #4e4e4e;
  pointer-events: none;
}
.u-ring--top::before {
  top: -260px;
  right: calc(50% + 460px);
  transform: translateY(-270px);
}
.u-ring--bottom::before {
  top: 0;
  left: calc(50% + 460px);
  transform: translateY(calc(50% + 40px));
}

@media (max-width: 1440px) {
  .u-ring--top::before {
    right: auto;
    left: -260px;
  }
  .u-ring--bottom::before {
    left: auto;
    right: -260px;
  }
}
@media (max-width: 1024px) {
  .u-ring--top::before {
    left: auto;
    right: calc(50% + 200px);
  }
  .u-ring--bottom::before {
    right: auto;
    left: calc(50% + 200px);
  }
}
@media (max-width: 599px) {
  .u-ring::before {
    width: 62vw;
    height: 62vw;
    box-shadow: inset 0 0 0 8vw #4e4e4e;
  }
  .u-ring--top::before {
    top: -25vw;
    right: calc(50% + 30vw);
    transform: translateY(-30vw);
  }
  .u-ring--bottom::before {
    bottom: 0;
    left: calc(50% + 25vw);
    transform: translateY(calc(50% + 12vw));
  }
}
@keyframes ring {
  to {
    transform: translateY(0);
  }
}
.fade-item {
  opacity: 0;
  transform: translateX(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-item.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}/*# sourceMappingURL=app.css.map */