@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

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

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/* base style
------------------------------------------ */
:root {
  --hd: 1920;
}

:root {
  --xxl: 1536;
}

:root {
  --xl: 1280;
}

:root {
  --lg: 1200;
}

:root {
  --pc: 992;
}

:root {
  --md: 600;
}

:root {
  --sm: 640;
}

:root {
  --xs: 375;
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html:focus-within {
  scroll-behavior: auto;
}

body {
  line-height: 1.8;
  font-family: "A1 Gothic R", sans-serif;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
}

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

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

video {
  display: block;
  width: 100%;
  height: auto;
  border: none;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
}

.sp {
  display: block;
}
@media (min-width: 600px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 600px) {
  .pc {
    display: block;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  opacity: 1;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  backdrop-filter: blur(4px);
}
@media (min-width: 600px) {
  .header {
    backdrop-filter: initial;
  }
}
.header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}

.header__inner {
  width: 100%;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 1.875rem;
}

.header__logo {
  display: block;
  width: 101px;
}
@media (hover: hover) and (pointer: fine) {
  .header__logo a:hover, .header__logo a:focus-visible {
    opacity: 0.5;
  }
}
.header__logo a:active {
  opacity: 0.5;
}

.header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  background: none;
  border: none;
  pointer-events: all;
  width: 18px;
  height: 14px;
}
.header__button span {
  display: block;
  width: 100%;
  height: 2px;
  background: #005a64;
}

/* menu */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  font-family: "A1 Gothic L", sans-serif;
  font-weight: 300;
  color: #fffae1;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.menu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1px;
}

.menu__closeButton {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 30px;
  height: 30px;
  background: rgba(0, 90, 100, 0.85);
  border: none;
}
.menu__closeButton span {
  display: block;
  width: 16px;
  height: 1px;
  background: #fffae1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu__closeButton span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.menu__body {
  display: grid;
  gap: 1px;
}

.menuList {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
}

.menuList__item {
  height: 30px;
  list-style-type: none;
  background: rgba(0, 90, 100, 0.9);
}
.menuList__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  height: 30px;
  padding: 0 20px;
  font-size: 0.75rem;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .menuList__item a:hover, .menuList__item a:focus-visible {
    opacity: 0.6;
  }
}
.menuList__item a:active {
  opacity: 0.6;
}
.menuList__item a span {
  font-size: 0.875rem;
}
.menuList__item .icon {
  width: 16px;
}

/* yodogawa */
.yodogawa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  background: #fff;
}
@media (min-width: 600px) {
  .yodogawa {
    padding-bottom: 5rem;
  }
}

.yodogawa__inner {
  width: calc(100% - 4.375rem);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.yodogawa__inner p {
  font-size: 1rem;
  line-height: 2.2225;
  letter-spacing: 0.01em;
}
@media (min-width: 600px) {
  .yodogawa__inner p {
    font-size: 1.125rem;
  }
}
.yodogawa__inner p + p {
  margin-top: 2.2225em;
}
.yodogawa__inner a {
  color: #ff5858;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .yodogawa__inner a:hover, .yodogawa__inner a:focus-visible {
    opacity: 0.5;
  }
}
.yodogawa__inner a:active {
  opacity: 0.5;
}

/* itemSliderArea */
.itemSliderArea {
  background: #fff;
}
.itemSliderArea .swiper-slide {
  width: 295px;
}
@media (min-width: 600px) {
  .itemSliderArea .swiper-slide {
    width: 400px;
  }
}

/* lineup */
.lineupArea {
  display: grid;
  padding: 2.8125rem 1.25rem;
  gap: 2.8125rem;
  background: #fff;
}
@media (min-width: 600px) {
  .lineupArea {
    gap: 4.375rem;
    padding: 5rem 2.5rem;
  }
}

.lineup__title {
  margin-inline: auto;
}
.lineup__title.title01 {
  max-width: 15.25rem;
}
@media (min-width: 600px) {
  .lineup__title.title01 {
    max-width: 22.75rem;
  }
}
.lineup__title.title02 {
  max-width: 9.1875rem;
}
@media (min-width: 600px) {
  .lineup__title.title02 {
    max-width: 13.75rem;
  }
}
.lineup__title.title03 {
  max-width: 9.1875rem;
}
@media (min-width: 600px) {
  .lineup__title.title03 {
    max-width: 13.75rem;
  }
}
.lineup__title.title04 {
  max-width: 15.5625rem;
}
@media (min-width: 600px) {
  .lineup__title.title04 {
    max-width: 23.3125rem;
  }
}
.lineup__title.title05 {
  max-width: 9.1875rem;
}
@media (min-width: 600px) {
  .lineup__title.title05 {
    max-width: 13.75rem;
  }
}
.lineup__title.title06 {
  max-width: 15.625rem;
}
@media (min-width: 600px) {
  .lineup__title.title06 {
    max-width: 23.375rem;
  }
}

.lineup {
  text-align: center;
  line-height: 1.6666666667;
}
.lineup ul {
  margin-top: 2.1875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(6vw, 20px) min(6vw, 68px);
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .lineup ul {
    gap: min(6vw, 68px) min(6vw, 68px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.5rem;
  }
}
.lineup a {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .lineup a:hover, .lineup a:focus-visible {
    opacity: 0.5;
  }
}
.lineup a:active {
  opacity: 0.5;
}
.lineup .thumb {
  margin-bottom: 0.75rem;
}
.lineup dl {
  color: #000;
}
.lineup dt {
  font-size: 0.9375rem;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .lineup dt {
    font-size: 0.9375rem;
  }
}
.lineup dt span {
  display: inline-block;
}
.lineup dt small {
  font-size: 0.8125rem;
}
@media (min-width: 600px) {
  .lineup .nowrap {
    white-space: nowrap;
  }
}
.lineup dd {
  font-weight: 300;
  font-family: "A1 Gothic L", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .lineup dd small {
    font-size: 0.75rem;
  }
}
.lineup .more-text {
  line-height: 1.5;
  font-size: 0.75rem;
}
.lineup .soon {
  display: block;
  pointer-events: none;
}
.lineup .soon .more-text {
  display: none;
}
.lineup figcaption {
  margin-top: 0.5625rem;
  font-size: 0.875rem;
}
@media (min-width: 600px) {
  .lineup figcaption {
    font-size: 0.9375rem;
    margin-top: 0.9375rem;
  }
}

.lineup__title {
  display: grid;
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
}
@media (min-width: 600px) {
  .lineup__title {
    font-size: 1.125rem;
    line-height: 1.65;
  }
}
.lineup__title .price {
  font-size: 0.875rem;
  font-family: "A1 Gothic L";
}
@media (min-width: 600px) {
  .lineup__title .price {
    font-size: 0.9375rem;
  }
}

/* movie area */
.movieArea {
  padding: 2.5rem 0;
  background: #fff;
}
@media (min-width: 600px) {
  .movieArea {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.movieArea__inner {
  display: grid;
  gap: 2.5rem;
  max-width: 510px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .movieArea__inner {
    gap: 4.375rem;
  }
}

.movie__title {
  display: grid;
  place-content: center;
  font-family: "A1 Gothic B", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.65;
}
@media (min-width: 600px) {
  .movie__title {
    font-size: 1.5rem;
  }
}

.movieItems {
  display: grid;
  gap: 1.875rem;
  margin-top: 1.25rem;
}
@media (min-width: 600px) {
  .movieItems {
    gap: 2.5rem;
    margin-top: 1.875rem;
  }
}

.movieItem__label {
  margin-bottom: 0.9375rem;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (min-width: 600px) {
  .movieItem__label {
    font-size: 1rem;
  }
}

.video-item {
  width: 100%;
  height: auto;
  aspect-ratio: 1080/1920;
  cursor: pointer;
}
.video-item .vjs-big-play-button {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* message  */
.message {
  margin-block: 1.875rem;
  padding-block: 2.5rem;
  background: #fff;
}
@media (min-width: 600px) {
  .message {
    margin-block: 3.125rem;
    padding-block: 5rem;
  }
}

.message__inner {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 4.375rem);
  margin-inline: auto;
}

.message__title {
  font-family: "A1 Gothic B", sans-serif;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 600px) {
  .message__title {
    font-size: 1.5rem;
  }
}
.message__title:not(:first-child) {
  margin-top: 1.875rem;
}
@media (min-width: 600px) {
  .message__title:not(:first-child) {
    margin-top: 4.375rem;
  }
}
.message__title .small {
  font-size: 0.9375rem;
}

.message__title--small {
  line-height: 1.1;
}
@media (min-width: 600px) {
  .message__title--small {
    font-size: 1.25rem;
  }
}
.message__title--small .huge-space {
  line-height: 2;
}

.message__text {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 600px) {
  .message__text {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}

/* onsale */
.onSale {
  padding-top: 2.5rem;
  background: #fff;
}
@media (min-width: 600px) {
  .onSale {
    padding-top: 3.125rem;
  }
}

.onSale__title {
  width: 14.125rem;
  max-width: 100%;
  margin-inline: auto;
}
@media (min-width: 600px) {
  .onSale__title {
    width: 15.9375rem;
  }
}

/* pageFoot */
.pageFoot section {
  margin-bottom: 30px;
  background: #fff;
}
@media (min-width: 600px) {
  .pageFoot section {
    margin-bottom: 50px;
  }
}

.nav {
  margin-top: 1.875rem;
  padding: 20px 0;
  font-weight: 300;
  font-family: "A1 Gothic L", sans-serif;
}
@media (min-width: 600px) {
  .nav {
    margin-top: 50px;
    padding: 16px;
  }
}
.nav ul {
  width: calc(100% - 80px);
  margin-right: auto;
  margin-left: auto;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav .hide {
  pointer-events: none;
  opacity: 0;
}
.nav .soon {
  pointer-events: none;
  opacity: 0.3;
}
.nav a {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .nav a:hover, .nav a:focus-visible {
    opacity: 0.5;
  }
}
.nav a:active {
  opacity: 0.5;
}

.info {
  margin-top: 1.875rem;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 600px) {
  .info {
    margin-top: 3.125rem;
  }
}

.info__container {
  width: 100%;
  max-width: 43.75rem;
}
@media (min-width: 600px) {
  .info__container {
    max-width: 25.75rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .info__container a:hover, .info__container a:focus-visible {
    opacity: 0.5;
  }
}
.info__container a:active {
  opacity: 0.5;
}

.insta {
  padding-right: initial;
  padding-left: initial;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 600px) {
  .insta {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.insta a {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 50%;
  max-width: 190px;
}
@media (hover: hover) and (pointer: fine) {
  .insta a:hover, .insta a:focus-visible {
    opacity: 0.5;
  }
}
.insta a:active {
  opacity: 0.5;
}

.staff {
  font-weight: 300;
  font-family: "A1 Gothic L", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.075em;
  padding-top: 30px;
  padding-bottom: 25px;
}
@media (min-width: 600px) {
  .staff {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.staff img {
  height: 1em;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .staff img {
    margin-bottom: 40px;
  }
}
.staff dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.staff dt {
  text-align: right;
}

.footer {
  background-color: #fff;
  padding: min(8vw, 40px);
}
@media (min-width: 600px) {
  .footer {
    margin-top: 9.375rem;
    padding-top: 50px;
    padding-bottom: 40px;
  }
}
.footer section {
  padding: 0;
  margin-bottom: 30px;
}

.footer_share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 600px) {
  .footer_share ul {
    gap: 30px;
  }
}
.footer_share img {
  width: 30px;
}
@media (min-width: 600px) {
  .footer_share img {
    width: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer_share a:hover, .footer_share a:focus-visible {
    opacity: 0.5;
  }
}
.footer_share a:active {
  opacity: 0.5;
}

.footer_hobo {
  font-weight: 300;
  font-family: "A1 Gothic L", sans-serif;
  font-size: 0.625rem;
  text-align: center;
}
@media (min-width: 600px) {
  .footer_hobo {
    font-size: 0.8125rem;
  }
}
.footer_hobo ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  gap: 1.25rem;
  max-width: 32em;
  margin-right: auto;
  margin-left: auto;
}
.footer_hobo a {
  border: 1px solid #005a64;
  color: #005a64;
  border-radius: 100vmax;
  letter-spacing: 0.05em;
  padding: 0.3125rem 0;
  text-decoration: none;
  width: 100%;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .footer_hobo a:hover, .footer_hobo a:focus-visible {
    opacity: 0.5;
  }
}
.footer_hobo a:active {
  opacity: 0.5;
}

.footer_store {
  font-size: 0.625rem;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (min-width: 600px) {
  .footer_store {
    font-size: 0.75rem;
  }
}
.footer_store ul {
  list-style: none;
}
@media (min-width: 992px) {
  .footer_store ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 992px) {
  .footer_store li:not(:last-child)::after {
    content: "／";
    margin-right: 0.3125rem;
  }
}
.footer_store a {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer_store a:hover, .footer_store a:focus-visible {
    opacity: 0.5;
  }
}
.footer_store a:active {
  opacity: 0.5;
}

.copyright {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 26%;
  max-width: 90px;
}/*# sourceMappingURL=common.css.map */