:root {
  --color-main: #9d445f;
  --color-bg: #111;
  --color-text: #111;
  --color-lightgray: #e6e6e6;
  --color-gray: #c3c3c3;
  --color-yellow: #f0f0ca;
  --color-cream: #fdf9bf;
  --color-emerald: #038991;
  --color-lightgreen: #dae1e1;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-shippori: "Shippori Antique", sans-serif;
  /*
    .shippori-antique-regular {
    font-family: "Shippori Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }
  .noto-serif-jp-<uniquifier> {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }


  */
  --transition-duration: 800ms;
  --base: 375;
  --radius: 10px;
  --duration-transition: 800ms;
}
@media screen and (min-width: 768px) {
  :root {
    --base: 768;
    --radius: 16px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --base: 1240;
  }
}

html {
  scroll-behavior: smooth;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-serif);
  font-weight: 400;
}
body.menu-open {
  overflow: clip;
}
@media screen and (min-width: 1024px) {
  body.menu-open {
    overflow-x: visible;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}
.header .content {
  z-index: 10;
  background-color: var(--color-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 800ms, opacity 300ms, visibility 300ms;
  transition-timing-function: cubic-bezier(0.65, 0.06, 0.36, 0.95);
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.9);
  opacity: 0;
  box-sizing: border-box;
  height: 100vh;
}
.header .content.open {
  visibility: visible;
  pointer-events: all;
  transform: none;
  opacity: 1;
}
.header .menu {
  padding: calc(24 / var(--base) * 100vw);
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: calc(16 / var(--base) * 100vw);
  overflow-y: auto;
}
.header .list-menu {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.header .list-menu .item {
  text-align: center;
  font-weight: 400;
}
.header .list-menu .item:not(:last-of-type) {
  margin-bottom: calc(12 / var(--base) * 100vw);
}
.header .list-menu a,
.header .list-menu .trailer {
  display: inline-block;
  padding: calc(4 / var(--base) * 100vw);
  text-decoration: none;
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-size: inherit;
  font-weight: 400;
  color: var(--color-yellow);
  background-color: transparent;
  transition: color var(--duration-transition);
  border-style: none;
  cursor: pointer;
}
.header .list-menu a:hover,
.header .list-menu .trailer:hover {
  color: var(--color-main);
}
.header .list-menu a.preparing,
.header .list-menu .trailer.preparing {
  color: #eee;
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
.header .list-menu a.preparing:hover,
.header .list-menu .trailer.preparing:hover {
  color: #999;
}
.header .list-sns {
  display: flex;
  gap: calc(20 / var(--base) * 100vw);
  justify-content: start;
  margin-top: calc(40 / var(--base) * 100vw);
}
.header .list-sns .sns-item {
  margin: 0;
  background-color: #fff;
  border-radius: 300px;
  overflow: hidden;
  width: min(32px, calc(32 / var(--base) * 100vw));
  height: min(32px, calc(32 / var(--base) * 100vw));
}
.header .list-sns .sns-item-link {
  display: block;
  width: min(32px, calc(32 / var(--base) * 100vw));
  height: min(32px, calc(32 / var(--base) * 100vw));
  -webkit-mask-size: cover;
          mask-size: cover;
}
.header .list-sns .sns-item-link.instagram {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  -webkit-mask-image: url("../images/icon_instagram.svg");
          mask-image: url("../images/icon_instagram.svg");
}
.header .list-sns .sns-item-link.x {
  background-color: #000;
  -webkit-mask-image: url("../images/icon_x.svg");
          mask-image: url("../images/icon_x.svg");
}
@media screen and (min-width: 768px) {
  .header .menu {
    padding: calc(24 / var(--base) * 100vw);
    font-size: calc(20 / var(--base) * 100vw);
  }
  .header .list-menu .item:not(:last-of-type) {
    margin-bottom: calc(20 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .header {
    margin: 0 auto;
    padding: 0;
    transition: background-color 300ms;
    background-color: transparent;
    inset: 0 0 auto 0;
  }
  .header .content {
    display: block;
    margin: 0 auto;
    padding: 0 0;
    height: auto;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
  }
  .header .menu {
    margin: 0 calc(100 / 1440 * 100vw);
    padding: 0;
    overflow: visible;
  }
  .header .list-menu {
    display: flex;
    align-items: center;
    justify-content: start;
    height: min(56px, 56 / 1440 * 100vw);
    width: 100%;
  }
  .header .list-menu .item {
    margin: 0 min(24px, calc(24 / var(--base) * 100vw)) 0 0;
    position: relative;
    font-size: min(18px, 18 / 1440 * 100vw);
  }
  .header .list-menu .item:not(:last-of-type) {
    margin-bottom: 0;
  }
  .header .list-menu .item.sns {
    margin-left: auto;
    margin-right: 0;
  }
  .header .list-menu .trailer,
  .header .list-menu a {
    padding: 0;
    color: var(--color-main);
  }
  .header .list-menu .trailer:hover,
  .header .list-menu a:hover {
    color: var(--color-main);
  }
  .header .list-sns {
    display: flex;
    gap: min(20px, calc(20 / var(--base) * 100vw));
    align-items: center;
    margin-top: 0;
  }
  .header .list-sns .sns-item {
    margin: 0;
    background-color: transparent;
    transition: background-color var(--duration-transition);
  }
  .header .list-sns .sns-item-link {
    transition: background var(--duration-transition);
  }
  .header .list-sns .sns-item-link.instagram {
    background: var(--color-yellow);
  }
  .header .list-sns .sns-item-link.x {
    background: var(--color-yellow);
  }
  .header.open {
    background-color: var(--color-main);
  }
  .header.open .list-menu a,
  .header.open .list-menu .trailer {
    color: var(--color-yellow);
  }
  .header.open .list-menu a:hover,
  .header.open .list-menu .trailer:hover {
    color: #fff;
  }
  .header.open .list-sns .sns-item {
    background-color: #fff;
  }
  .header.open .list-sns .sns-item-link.instagram {
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  }
  .header.open .list-sns .sns-item-link.x {
    background-color: #000;
  }
  .header.open .list-sns .sns-item-link:hover .svg.x {
    fill: #000;
  }
  .header.open .list-sns .sns-item-link:hover .svg.instagram {
    fill: #0866ff;
  }
}

.menu-sw {
  margin: 0;
  position: absolute;
  top: calc(10 / var(--base) * 100vw);
  right: calc(10 / var(--base) * 100vw);
  width: calc(40 / var(--base) * 100vw);
  height: calc(40 / var(--base) * 100vw);
  z-index: 20;
  overflow: hidden;
}
.menu-sw button {
  padding: 0;
  display: block;
  border-style: none;
  border-radius: 0;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--color-main);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: background-color 500ms;
  overflow: hidden;
  cursor: pointer;
}
.menu-sw span {
  position: absolute;
  width: calc(20 / var(--base) * 100vw);
  height: calc(20 / var(--base) * 100vw);
  top: calc(10 / var(--base) * 100vw);
  left: calc(10 / var(--base) * 100vw);
}
.menu-sw span::before, .menu-sw span::after,
.menu-sw span i {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: calc(2 / var(--base) * 100vw);
  background-color: #fff;
  margin: calc(-1 / var(--base) * 100vw) 0 0 0;
  transition: background-color 500ms, transform 500ms;
}
.menu-sw span::before {
  transform: translate(0, calc(-7 / var(--base) * 100vw));
  transition: transform 500ms;
}
.menu-sw span::after {
  transform: translate(0, calc(7 / var(--base) * 100vw));
  transition: transform 500ms;
}
.menu-sw.open span::before {
  transform: translate(0, 0) rotate(45deg);
}
.menu-sw.open span i {
  transform: rotate(-45deg);
}
.menu-sw.open span::after {
  transform: translate(0, 0) rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .menu-sw {
    display: none;
  }
}

.main {
  overflow: hidden;
}
.footer {
  padding: calc(48 / var(--base) * 100vw) 0;
  background-color: var(--color-text);
}
.footer .title {
  margin: 0 auto calc(24 / var(--base) * 100vw) auto;
  width: calc(240 / var(--base) * 100vw);
}
.footer .date {
  margin: 0 auto calc(16 / var(--base) * 100vw) auto;
  width: calc(320 / var(--base) * 100vw);
}
.footer .billing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 calc(24 / var(--base) * 100vw);
  line-height: 2;
}
.footer .billing .item {
  margin: 0 calc(4 / var(--base) * 100vw);
  font-size: calc(10 / var(--base) * 100vw);
  text-align: center;
}
.footer .billing .item.long {
  width: 100%;
}
.footer .billing .item b {
  margin-right: calc(4 / var(--base) * 100vw);
  font-size: calc(8 / var(--base) * 100vw);
  font-family: var(--font-sans);
}
@media screen and (min-width: 768px) {
  .footer .title {
    margin: 0 auto calc(8 / var(--base) * 100vw) auto;
    width: calc(410 / var(--base) * 100vw);
  }
  .footer .date {
    margin: 0 auto calc(24 / var(--base) * 100vw) auto;
    width: calc(580 / var(--base) * 100vw);
  }
  .footer .billing {
    margin: 0 auto;
    width: min(480px, calc(480 / var(--base) * 100vw));
  }
  .footer .billing .item {
    margin: 0 min(4px, calc(4 / var(--base) * 100vw));
    font-size: min(12px, calc(12 / var(--base) * 100vw));
  }
  .footer .billing .item b {
    margin-right: min(4px, calc(4 / var(--base) * 100vw));
    font-size: min(10px, calc(10 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: min(64px, calc(64 / var(--base) * 100vw)) 0;
  }
  .footer .title {
    margin: 0 auto min(16px, calc(16 / var(--base) * 100vw)) auto;
    width: min(400px, calc(400 / var(--base) * 100vw));
  }
  .footer .date {
    margin: 0 auto min(32px, calc(32 / var(--base) * 100vw)) auto;
    width: min(620px, calc(620 / var(--base) * 100vw));
  }
}

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

.sm_only {
  display: none;
}
@media screen and (min-width: 640px) {
  .sm_only {
    display: inline;
  }
}

.md_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .md_only {
    display: inline;
  }
}

.ts_only {
  display: block;
}
@media screen and (min-width: 1024px) {
  .ts_only {
    display: none;
  }
}

.lg_only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg_only {
    display: inline;
  }
}

.b2t {
  transition: translate var(--duration-transition), opacity var(--duration-transition);
  translate: 0 20px;
  opacity: 0;
}
.b2t.open {
  translate: 0 0;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .b2t {
    translate: 0 40px;
  }
}

p {
  margin-bottom: 1em;
  font-size: calc(14 / var(--base) * 100vw);
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
}
p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  p {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}

figure {
  margin: 0;
  padding: 0;
}

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

/* section */
.unit {
  padding: calc(64 / var(--base) * 100vw) 0;
}
@media screen and (min-width: 1024px) {
  .unit {
    padding: calc(80 / var(--base) * 100vw) 0;
  }
}

/* youtube */
#overlay {
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  min-height: 700px;
  overflow: hidden;
}

.youtube_wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 51;
}
.youtube_wrapper .youtube_stage {
  width: 100%;
  padding: 50px 10px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.youtube_wrapper .youtube_inner {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  background: #000;
}
.youtube_wrapper .youtube_close {
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -30px;
  right: 0;
  white-space: nowrap;
}
.youtube_wrapper .youtube_close span {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
}
.youtube_wrapper .youtube_close span::before, .youtube_wrapper .youtube_close span::after {
  content: "";
  width: 80%;
  height: 1px;
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
.youtube_wrapper .youtube_close span::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.youtube_wrapper .youtube_close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.youtube_wrapper .youtube_player {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 640px) {
  .youtube_wrapper .youtube_close {
    width: 50px;
    height: 50px;
    top: -60px;
  }
}
@media screen and (min-width: 768px) {
  .youtube_wrapper .youtube_stage {
    max-width: 130vh;
    width: 100%;
  }
  .youtube_wrapper .youtube_close {
    width: 60px;
    height: 60px;
    top: -70px;
  }
}

/* ----------------- 
titletitle
----------------- */
/* ----------------- 
linklink
----------------- */
a {
  text-decoration: underline;
  color: var(--color-text);
}

button {
  cursor: pointer;
}

dl,
dt,
dd,
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* for inline */
.table-schedule {
  margin: calc(29 / var(--base) * 100vw) 0 0 0;
  padding: 0 calc(16 / var(--base) * 100vw) 20px calc(16 / var(--base) * 100vw);
  overflow-x: scroll;
}
.table-schedule .content {
  display: table;
  padding: calc(6 / var(--base) * 100vw) calc(16 / var(--base) * 100vw);
  border: calc(1 / var(--base) * 100vw) solid #fff;
}
.table-schedule .content::after {
  content: "";
  display: block;
  width: calc(32 / var(--base) * 100vw);
}
.table-schedule table {
  margin: 0 calc(30 / var(--base) * 100vw) 0 0;
  width: 100%;
  position: relative;
  border-collapse: collapse;
  color: var(--color-text);
}
.table-schedule th {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: calc(12 / var(--base) * 100vw);
  color: var(--color-text);
  vertical-align: middle;
}
.table-schedule td {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: calc(12 / var(--base) * 100vw);
  text-align: center;
  color: var(--color-text);
  vertical-align: middle;
}
.table-schedule td:nth-of-type(3) {
  text-align: left;
}
.table-schedule p {
  line-height: 1.6;
  font-size: calc(12 / var(--base) * 100vw);
  font-family: var(--font-sans);
  font-weight: 400;
}
.table-schedule p:not(:last-of-type) {
  margin-bottom: 1em;
}
.table-schedule a {
  color: var(--color-main);
  text-decoration: underline;
}
.table-schedule thead th {
  padding: 10px 20px 10px 20px;
  text-align: left;
  font-family: var(--font-sans);
  color: var(--color-main);
}
.table-schedule tbody tr:first-of-type th,
.table-schedule tbody tr:first-of-type td {
  border-top-width: 2px;
}
.table-schedule tbody th {
  text-align: left;
  font-weight: 400;
  border-top: 1px solid var(--color-gray);
}
.table-schedule tbody td {
  text-align: left;
  border-top: 1px solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .table-schedule {
    margin: calc(29 / var(--base) * 100vw) 0 0 0;
    padding: 0 calc(40 / var(--base) * 100vw) 20px calc(40 / var(--base) * 100vw);
    overflow-x: hidden;
  }
  .table-schedule .content {
    width: 100%;
    box-sizing: border-box;
  }
  .table-schedule .content::after {
    display: none;
  }
  .table-schedule table {
    width: 100%;
  }
  .table-schedule th,
  .table-schedule td {
    font-size: calc(14 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .table-schedule {
    margin: min(29px, calc(29 / var(--base) * 100vw)) auto 0 auto;
    padding: 0;
    width: min(1026px, calc(1026 / var(--base) * 100vw));
  }
  .table-schedule .content {
    width: 100%;
    box-sizing: border-box;
    padding: min(14px, calc(14 / var(--base) * 100vw)) min(24px, calc(24 / var(--base) * 100vw));
  }
  .table-schedule .content::after {
    display: none;
  }
  .table-schedule table {
    width: 100%;
  }
  .table-schedule th,
  .table-schedule td {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .table-schedule td:nth-of-type(3) {
    white-space: wrap;
  }
  .table-schedule p {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
}

.t {
  display: grid;
  padding: calc(16 / var(--base) * 100vw);
  align-items: start;
  justify-content: center;
  font-family: var(--font-shippori);
  font-weight: 400;
  letter-spacing: 0;
}
.t .main {
  margin-bottom: calc(20 / var(--base) * 100vw);
  overflow: visible;
}
.t .lead {
  margin-bottom: calc(7 / var(--base) * 100vw);
  line-height: 1.5;
  font-size: calc(14 / var(--base) * 100vw);
}
.t .copy {
  margin-top: calc(19 / var(--base) * 100vw);
  margin-bottom: 0;
  line-height: 1.3;
  font-size: calc(22 / var(--base) * 100vw);
}
.t .title {
  font-size: calc(44 / var(--base) * 100vw);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
.t .billing {
  margin-top: calc(13 / var(--base) * 100vw);
  font-size: calc(10 / var(--base) * 100vw);
}
.t .date {
  margin-bottom: calc(18 / var(--base) * 100vw);
  line-height: 1.5;
  font-size: calc(16 / var(--base) * 100vw);
}
.t .date .day {
  font-size: calc(10 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .t {
    --base: 375;
  }
}
@media screen and (min-width: 1024px) {
  .t {
    --base: 1240;
    margin: 0 auto;
    padding: min(40px, calc(40 / var(--base) * 100vw));
    grid-template-columns: min(600px, calc(600 / var(--base) * 100vw)) 1fr;
    align-items: center;
    justify-items: center;
    width: min(1106px, calc(1106 / var(--base) * 100vw));
    gap: min(40px, calc(40 / var(--base) * 100vw));
    height: min(872px, 100vh);
  }
  .t .main {
    margin-bottom: 0;
    align-self: start;
    overflow: hidden;
  }
  .t .lead {
    margin-bottom: min(7px, calc(7 / var(--base) * 100vw));
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .t .copy {
    margin-top: min(28px, calc(28 / var(--base) * 100vw));
    font-size: min(20px, calc(20 / var(--base) * 100vw));
  }
  .t .title {
    font-size: min(48px, calc(48 / var(--base) * 100vw));
  }
  .t .billing {
    margin-top: min(16px, calc(16 / var(--base) * 100vw));
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
  .t .date {
    margin-top: min(31px, calc(31 / var(--base) * 100vw));
    font-size: min(18px, calc(18 / var(--base) * 100vw));
  }
  .t .date .day {
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
}/*# sourceMappingURL=style.css.map */