@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Serif+JP:wght@300;400;500&display=swap");
:root {
  --font-en: "Marcellus", Sans-serif;
  --font-jp: "Noto Serif JP", Serif;
  --font-sans: "Noto Sans JP", "Noto Sans Japanese", "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", Sans-serif;
  --color-main: 202, 36, 32;
}

body {
  font-family: var(--font-jp);
  width: 100%;
  font-size: 62.5%;
}

body.is-locked {
  position: fixed;
}

html {
  box-sizing: border-box;
  text-size-adjust: 100%;
  word-break: normal;
  tab-size: 4;
  tab-size: 4;
}

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

::after,
::before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: 0;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  color: inherit;
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  display: table;
  max-width: 100%;
  color: inherit;
  white-space: normal;
  border: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  color: inherit;
  appearance: button;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

li {
  list-style-type: none;
}

address {
  font-style: normal;
}

@media only screen and (min-width: 420px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

p,
a {
  word-break: break-all;
  word-wrap: break-word;
  line-break: strict;
}

@media not all and (min-width: 768px) {
  .u-sm-min {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .u-sm-max {
    display: none;
  }
}

.c-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--icon-color);
}
.c-icon__arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c-icon__arrow--down {
  transform: rotate(90deg);
}
.c-icon__arrow--return {
  transform: rotate(180deg);
}
.c-icon__arrow-short {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c-icon__arrow-before, .c-icon__arrow-after {
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  transition-property: fill;
  transition-duration: 300ms;
}
.c-icon__arrow-after {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  opacity: 0;
}
.c-icon__external {
  display: block;
  width: 100%;
  height: 100%;
}

@media (hover: hover) {
  a:hover .c-icon__arrow-before, button:hover .c-icon__arrow-before {
    animation-name: arrow_before;
  }
  a:hover .c-icon__arrow-after, button:hover .c-icon__arrow-after {
    animation-name: arrow_after;
  }
}
@keyframes arrow_before {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes arrow_after {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 256;
  width: 100%;
  color: #fff;
  transition-property: background-color;
  transition-duration: 400ms;
}
@media not all and (min-width: 768px) {
  .l-header {
    height: 23.5897435897vw;
  }
}
.l-header.is-fixed {
  background-color: rgba(68, 68, 68, 0.9);
}
@media all and (min-width: 768px) {
  .l-header.is-fixed .l-header-menu__recruit {
    height: 6.25vw;
  }
  .l-header.is-fixed .l-header__logo {
    transform: scale(0.88);
  }
}
@media all and (min-width: 1440px) {
  .l-header.is-fixed .l-header-menu__recruit {
    height: 90px;
  }
}
.l-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media not all and (min-width: 768px) {
  .l-header__inner {
    padding-top: 3.0769230769vw;
    padding-right: 5.1282051282vw;
    padding-left: 5.1282051282vw;
    padding-bottom: 3.0769230769vw;
  }
}
.l-header__logo {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(3, auto);
}
@media all and (min-width: 768px) {
  .l-header__logo {
    margin-left: 2.2222222222vw;
  }
}
@media all and (min-width: 1440px) {
  .l-header__logo {
    margin-left: 32px;
    transition-property: transform;
    transition-duration: 400ms;
  }
}
.l-header__logo-image {
  height: auto;
}
@media not all and (min-width: 768px) {
  .l-header__logo-image {
    width: 53.8461538462vw;
    margin-bottom: 2.0512820513vw;
  }
}
@media all and (min-width: 768px) {
  .l-header__logo-image {
    width: 14.5833333333vw;
    margin-bottom: 0.5555555556vw;
  }
}
@media all and (min-width: 1440px) {
  .l-header__logo-image {
    width: 210px;
    margin-bottom: 8;
  }
}
.l-header__logo-company {
  grid-row: 1/2;
  margin-right: auto;
  margin-left: auto;
  width: auto;
  height: 5.1282051282vw;
  margin-bottom: 1.5384615385vw;
}
@media all and (min-width: 768px) {
  .l-header__logo-company {
    margin-bottom: 0.4166666667vw;
    height: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .l-header__logo-company {
    margin-bottom: 6px;
    height: 20px;
  }
}
.l-header__logo-department {
  grid-row: 2/3;
  width: 53.8461538462vw;
  height: auto;
  margin-bottom: 3.0769230769vw;
}
@media all and (min-width: 768px) {
  .l-header__logo-department {
    width: 14.5833333333vw;
    margin-bottom: 0.8333333333vw;
  }
}
@media all and (min-width: 1440px) {
  .l-header__logo-department {
    width: 210px;
    margin-bottom: 12px;
  }
}
.l-header__logo-label {
  grid-row: 3/4;
  font-size: 3.5897435897vw;
  text-align: center;
  line-height: 1;
}
@media all and (min-width: 768px) {
  .l-header__logo-label {
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .l-header__logo-label {
    font-size: 14px;
  }
}
.l-header__button {
  position: relative;
  z-index: 1024;
  width: 16.4102564103vw;
  height: 16.4102564103vw;
  transition-property: background-color;
  transition-duration: 400ms;
}
@media all and (min-width: 768px) {
  .l-header__button {
    display: none;
  }
}
.l-header__button.is-open {
  background-color: #444;
}
.l-header__button.is-open .l-header__button-rect {
  opacity: 0;
}
.l-header__button.is-open::before {
  bottom: 8.2051282051vw;
  transform: rotate(45deg);
}
.l-header__button.is-open::after {
  bottom: 8.2051282051vw;
  transform: rotate(-45deg);
}
@media not all and (min-width: 768px) {
  .l-header__button::before, .l-header__button::after {
    content: "";
    position: absolute;
    left: 2.0512820513vw;
    border-bottom: 0.2564102564vw solid #fff;
    width: 12.3076923077vw;
    transition-property: bottom, transform;
    transition-duration: 400ms;
  }
}
.l-header__button::before {
  bottom: 11.0256410256vw;
}
.l-header__button::after {
  bottom: 5.3846153846vw;
}
.l-header__button-rect {
  position: absolute;
  bottom: 8.2051282051vw;
  left: 2.0512820513vw;
  border-bottom: 0.2564102564vw solid #fff;
  width: 12.3076923077vw;
  overflow: hidden;
  text-indent: 100%;
  transition-property: opacity;
  transition-duration: 200ms;
}

@media not all and (min-width: 768px) {
  .l-header-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 512;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
  }
}
.l-header-menu.is-open {
  pointer-events: all;
}
@media not all and (min-width: 768px) {
  .l-header-menu__container {
    width: 84.6153846154vw;
    max-height: 100dvh;
    height: 100%;
    overflow: auto;
    opacity: 0;
    padding-top: 27.1794871795vw;
    padding-right: 7.6923076923vw;
    padding-bottom: 17.9487179487vw;
    padding-left: 7.6923076923vw;
    background-color: #444;
    transform: translateX(100%);
    transition-property: opacity, transform;
    transition-duration: 400ms;
  }
}
.l-header-menu.is-open .l-header-menu__container {
  opacity: 1;
  transform: translateX(0);
}
.l-header-menu__inner {
  position: relative;
  display: flex;
}
@media not all and (min-width: 768px) {
  .l-header-menu__inner {
    flex-direction: column;
  }
}
@media all and (min-width: 768px) {
  .l-header-menu__inner {
    align-items: center;
  }
}
.l-header-menu__item {
  position: relative;
}
@media not all and (min-width: 768px) {
  .l-header-menu__item {
    margin-bottom: 9.2307692308vw;
    font-size: 4.1025641026vw;
    white-space: nowrap;
  }
}
@media all and (min-width: 768px) {
  .l-header-menu__item {
    margin-right: 2.7777777778vw;
    font-size: 0.9722222222vw;
    text-align: center;
  }
}
@media all and (min-width: 1440px) {
  .l-header-menu__item {
    margin-right: 40px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .l-header-menu__item:hover::after {
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .l-header-menu__item::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 0.4em);
    width: 0;
    pointer-events: none;
    border-bottom: 1px solid #fff;
    transition-property: width;
    transition-duration: 320ms;
  }
}
.l-header-menu__recruit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media not all and (min-width: 768px) {
  .l-header-menu__recruit {
    width: 100%;
    height: 20.5128205128vw;
    padding-left: 6.1538461538vw;
    border-radius: 1.0256410256vw;
    margin-bottom: 5.1282051282vw;
  }
}
@media all and (min-width: 768px) {
  .l-header-menu__recruit {
    justify-content: center;
    flex-wrap: wrap;
    width: 8.3333333333vw;
    height: 6.9444444444vw;
  }
}
@media all and (min-width: 1440px) {
  .l-header-menu__recruit {
    width: 120px;
    height: 100px;
  }
}
@media (hover: hover) {
  .l-header-menu__recruit {
    transition-property: opacity, height;
    transition-duration: 400ms;
  }
  .l-header-menu__recruit:hover {
    opacity: 0.8;
  }
}
.l-header-menu__recruit--entry {
  background-color: rgb(var(--color-main));
}
@media not all and (min-width: 768px) {
  .l-header-menu__recruit--entry {
    margin-top: 12.3076923077vw;
  }
}
.l-header-menu__recruit--career {
  background-color: #950000;
}
.l-header-menu__recruit-en {
  font-family: var(--font-en);
  font-size: 6.6666666667vw;
  letter-spacing: 0.02em;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .l-header-menu__recruit-en {
    margin-right: 4.1025641026vw;
  }
}
@media all and (min-width: 768px) {
  .l-header-menu__recruit-en {
    margin-top: auto;
    margin-bottom: 0.5555555556vw;
    width: 100%;
    font-size: 1.5277777778vw;
  }
}
@media all and (min-width: 1440px) {
  .l-header-menu__recruit-en {
    margin-bottom: 8px;
    font-size: 22px;
  }
}
.l-header-menu__recruit-jp {
  font-size: 3.5897435897vw;
}
@media all and (min-width: 768px) {
  .l-header-menu__recruit-jp {
    margin-bottom: auto;
    font-size: 0.8333333333vw;
    text-align: center;
  }
}
@media all and (min-width: 1440px) {
  .l-header-menu__recruit-jp {
    font-size: 12px;
  }
}
.l-header-menu__recruit-icon {
  width: 4.1025641026vw;
  height: 4.1025641026vw;
}
@media not all and (min-width: 768px) {
  .l-header-menu__recruit-icon {
    top: 2.0512820513vw;
    right: 2.0512820513vw;
    position: absolute;
  }
}
@media all and (min-width: 768px) {
  .l-header-menu__recruit-icon {
    margin-bottom: auto;
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .l-header-menu__recruit-icon {
    width: 16px;
    height: 16px;
  }
}
.l-header-menu__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 400ms;
}
.l-header-menu.is-open .l-header-menu__overlay {
  opacity: 1;
  pointer-events: all;
}

.l-footer {
  position: relative;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-position: center top;
  color: #fff;
  padding-top: 17.9487179487vw;
  padding-bottom: 20.5128205128vw;
}
@media all and (min-width: 768px) {
  .l-footer {
    padding-top: 5.5555555556vw;
    padding-bottom: 8.3333333333vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.l-footer__inner {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media not all and (min-width: 768px) {
  .l-footer__inner {
    padding-right: 7.6923076923vw;
    padding-left: 7.6923076923vw;
  }
}
@media all and (min-width: 768px) {
  .l-footer__inner {
    max-width: 77.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__inner {
    max-width: 1120px;
  }
}
.l-footer__menu {
  display: flex;
  flex-wrap: wrap;
}
@media not all and (min-width: 768px) {
  .l-footer__menu {
    order: 2;
    column-gap: 10.2564102564vw;
    row-gap: 5.1282051282vw;
    margin-bottom: 12.3076923077vw;
  }
}
@media all and (min-width: 768px) {
  .l-footer__menu {
    margin-bottom: 5.5555555556vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__menu {
    margin-bottom: 80px;
  }
}
@media all and (min-width: 768px) {
  .l-footer__menu--top {
    margin-bottom: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__menu--top {
    margin-bottom: 40px;
  }
}
.l-footer__item {
  position: relative;
  display: flex;
  align-items: center;
}
@media all and (min-width: 768px) {
  .l-footer__item:not(:last-child) {
    margin-right: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__item:not(:last-child) {
    margin-right: 40px;
  }
}
@media (hover: hover) {
  .l-footer__item:hover::after {
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .l-footer__item::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% + 0.4em);
    width: 0;
    pointer-events: none;
    border-bottom: 1px solid #fff;
    transition-property: width;
    transition-duration: 320ms;
  }
}
.l-footer__item-label {
  font-size: 3.3333333333vw;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  .l-footer__item-label {
    font-size: 0.9027777778vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__item-label {
    font-size: 13px;
  }
}
.l-footer__item-icon {
  width: 4.1025641026vw;
  height: 4.1025641026vw;
  --icon-color: #fff;
}
@media all and (min-width: 768px) {
  .l-footer__item-icon {
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__item-icon {
    width: 16px;
    height: 16px;
  }
}
.l-footer__logo {
  margin-bottom: 12.3076923077vw;
  text-align: center;
}
@media all and (min-width: 768px) {
  .l-footer__logo {
    margin-bottom: 3.3333333333vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__logo {
    margin-bottom: 48px;
  }
}
.l-footer__logo-image {
  display: block;
  width: auto;
  height: 12.8205128205vw;
  margin-bottom: 2.0512820513vw;
}
@media all and (min-width: 768px) {
  .l-footer__logo-image {
    margin-bottom: 0.5555555556vw;
    width: 14.5833333333vw;
    height: auto;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__logo-image {
    margin-bottom: 8px;
    width: 210px;
  }
}
.l-footer__logo-label {
  font-size: 3.8461538462vw;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .l-footer__logo-label {
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__logo-label {
    font-size: 14px;
  }
}
.l-footer__copyright {
  font-family: var(--font-en);
  letter-spacing: 0.06em;
}
@media not all and (min-width: 768px) {
  .l-footer__copyright {
    order: 3;
    font-size: 2.8205128205vw;
  }
}
@media all and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 0.7638888889vw;
  }
}
@media all and (min-width: 1440px) {
  .l-footer__copyright {
    font-size: 11px;
  }
}

.p-entry {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-color: #444;
}
@media not all and (min-width: 768px) {
  .p-entry {
    height: 67.6923076923vw;
  }
}
.p-entry__image {
  display: block;
  width: 100%;
  height: auto;
  transition-property: transform;
  transition-duration: 480ms;
}
@media not all and (min-width: 768px) {
  .p-entry__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media (hover: hover) {
  .p-entry:hover .p-entry__image {
    transform: scale(1.06);
  }
}
.p-entry__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media not all and (min-width: 768px) {
  .p-entry__overlay {
    padding-left: 7.6923076923vw;
    padding-right: 7.6923076923vw;
  }
}
.p-entry__overlay:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
@media (hover: hover) {
  .p-entry__overlay:hover + .p-entry__image {
    transform: scale(1.06);
  }
  .p-entry__overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(149, 0, 0, 0.72);
    transition-property: transform, opacity;
    transition-duration: 480ms;
    transform: scaleX(0);
    transform-origin: left center;
  }
}
.p-entry__inner {
  position: relative;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (min-width: 768px) {
  .p-entry__inner {
    width: 83.3333333333vw;
    padding-left: 2.7777777778vw;
    padding-right: 2.7777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .p-entry__inner {
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.p-entry__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
}
@media not all and (min-width: 768px) {
  .p-entry__link {
    position: absolute;
    right: 0;
    top: 13.8461538462vw;
    width: 23.0769230769vw;
    height: 23.0769230769vw;
  }
}
@media all and (min-width: 768px) {
  .p-entry__link {
    width: 11.1111111111vw;
    height: 11.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .p-entry__link {
    width: 160px;
    height: 160px;
  }
}
.p-entry__link-icon {
  --icon-color: rgb( var(--color-main) );
  width: 12.3076923077vw;
  height: 12.3076923077vw;
}
@media all and (min-width: 768px) {
  .p-entry__link-icon {
    width: 4.4444444444vw;
    height: 4.4444444444vw;
  }
}
@media all and (min-width: 1440px) {
  .p-entry__link-icon {
    width: 64px;
    height: 64px;
  }
}
.p-entry__title {
  display: flex;
}
@media not all and (min-width: 768px) {
  .p-entry__title {
    flex-direction: column;
    margin-bottom: 6.1538461538vw;
  }
}
@media all and (min-width: 768px) {
  .p-entry__title {
    margin-bottom: 2.2222222222vw;
    align-items: center;
  }
}
@media all and (min-width: 1440px) {
  .p-entry__title {
    margin-bottom: 32px;
  }
}
.p-entry__title-en {
  font-family: var(--font-en);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1;
}
@media not all and (min-width: 768px) {
  .p-entry__title-en {
    margin-bottom: 4.1025641026vw;
    font-size: 14.358974359vw;
  }
}
@media all and (min-width: 768px) {
  .p-entry__title-en {
    margin-right: 1.6666666667vw;
    font-size: 6.25vw;
  }
}
@media all and (min-width: 1440px) {
  .p-entry__title-en {
    margin-right: 24px;
    font-size: 90px;
  }
}
.p-entry__title-jp {
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.08em;
  font-size: 5.1282051282vw;
}
@media all and (min-width: 768px) {
  .p-entry__title-jp {
    font-size: 1.8055555556vw;
  }
}
@media all and (min-width: 1440px) {
  .p-entry__title-jp {
    font-size: 26px;
  }
}
.p-entry__title-icon {
  position: relative;
  margin-left: 2.0512820513vw;
  width: 4.1025641026vw;
  height: 4.1025641026vw;
  --icon-color: #fff;
}
@media all and (min-width: 768px) {
  .p-entry__title-icon {
    margin-left: 0.5555555556vw;
    width: 1.1111111111vw;
    height: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .p-entry__title-icon {
    margin-left: 8px;
    width: 16px;
    height: 16px;
  }
}
.p-entry__text {
  display: flex;
  font-family: var(--font-sans);
  font-weight: 300;
}
@media not all and (min-width: 768px) {
  .p-entry__text {
    font-size: 3.0769230769vw;
    line-height: 2;
  }
}
@media all and (min-width: 768px) {
  .p-entry__text {
    font-size: 0.9722222222vw;
  }
}
@media all and (min-width: 1440px) {
  .p-entry__text {
    font-size: 14px;
  }
}
.p-entry__text::before {
  content: "※";
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 512;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  height: 100dvh;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 480ms;
}
.p-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.p-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.p-modal__container {
  position: relative;
  aspect-ratio: 16/9;
  width: 82.0512820513vw;
  margin-bottom: 8.2051282051vw;
}
@media all and (min-width: 768px) {
  .p-modal__container {
    margin-bottom: 2.2222222222vw;
    width: 55.5555555556vw;
  }
}
@media all and (min-width: 1440px) {
  .p-modal__container {
    margin-bottom: 32px;
    width: 800px;
  }
}
.p-modal__embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}
.p-modal__button {
  position: absolute;
  bottom: 100%;
  right: 0;
  display: flex;
  align-items: center;
  width: fit-content;
  padding-bottom: 2.0512820513vw;
  padding-right: 1.0256410256vw;
  padding-left: 1.0256410256vw;
}
@media all and (min-width: 768px) {
  .p-modal__button {
    padding-bottom: 0.5555555556vw;
    padding-left: 0.2777777778vw;
    padding-right: 0.2777777778vw;
  }
}
@media all and (min-width: 1440px) {
  .p-modal__button {
    padding-bottom: 8px;
    padding-right: 4px;
    padding-left: 4px;
  }
}
.p-modal__button-icon {
  position: relative;
  transform: rotate(45deg);
  margin-right: 1.0256410256vw;
  width: 3.0769230769vw;
  border-bottom: 0.2564102564vw solid #fff;
}
@media all and (min-width: 768px) {
  .p-modal__button-icon {
    margin-right: 0.2777777778vw;
    width: 0.8333333333vw;
    border-bottom-width: 0.0694444444vw;
  }
}
@media all and (min-width: 1440px) {
  .p-modal__button-icon {
    margin-right: 4px;
    width: 12px;
    border-bottom-width: 1px;
  }
}
.p-modal__button-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: inherit;
  transform: rotate(90deg);
}
.p-modal__button-label {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 4.1025641026vw;
  line-height: 1;
}
@media all and (min-width: 768px) {
  .p-modal__button-label {
    font-size: 1.1111111111vw;
  }
}
@media all and (min-width: 1440px) {
  .p-modal__button-label {
    font-size: 16px;
  }
}

.c-section-title__en {
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 12.3076923077vw;
}
@media all and (min-width: 768px) {
  .c-section-title__en {
    font-size: 4.4444444444vw;
  }
}
@media all and (min-width: 1440px) {
  .c-section-title__en {
    font-size: 64px;
  }
}
.c-section-title__jp {
  line-height: 1;
  font-size: 4.6153846154vw;
}
@media all and (min-width: 768px) {
  .c-section-title__jp {
    font-size: 1.3888888889vw;
  }
}
@media all and (min-width: 1440px) {
  .c-section-title__jp {
    font-size: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
