:root {
  --color-main: #007c7d;
  --color-bg: #f1faf7;
  --color-text: #111;
  --color-darkblue: #001f2e;
  --color-emerald: #42829d;
  --color-orange: #ed9f4f;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Shippori Mincho", serif;
  --font-en: "Outfit", sans-serif;
  /*

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

  .shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }


  .outfit-<uniquifier> {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

  */
  --transition-duration: 800ms;
  --base: 400;
  --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;
  }
}

:where(:focus-visible, :target) {
  scroll-margin-block: 0;
}

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);
  background-color: var(--color-bg);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-serif);
  font-weight: 400;
  transition: background-color var(--duration-transition);
}
body.menu-open {
  overflow: clip;
}
body.bg-unit-intro {
  background-color: var(--color-darkblue);
}
@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-emerald);
  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 li {
  text-align: center;
  font-weight: 400;
  font-size: calc(18 / var(--base) * 100vw);
}
.header .list-menu li:not(:last-of-type) {
  margin-bottom: calc(12 / var(--base) * 100vw);
}
.header .list-menu a,
.header .list-menu button {
  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: #fff;
  background-color: transparent;
  transition: color var(--duration-transition);
  border-style: none;
  cursor: pointer;
}
.header .list-menu a:hover,
.header .list-menu button:hover {
  color: var(--color-main);
}
.header .list-menu a.preparing,
.header .list-menu button.preparing {
  color: #eee;
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
.header .list-menu a.preparing:hover,
.header .list-menu button.preparing:hover {
  color: #999;
}
.header .list-sns {
  display: flex;
  gap: calc(20 / var(--base) * 100vw);
  justify-content: center;
  margin-top: calc(40 / var(--base) * 100vw);
}
.header .list-sns li {
  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 li.x {
  background-color: #000;
}
.header .list-sns li.x a {
  background-color: #fff;
  -webkit-mask-image: url("../images/icon_x.svg");
          mask-image: url("../images/icon_x.svg");
}
.header .list-sns li.instagram a {
  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 a {
  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;
  text-indent: -1000px;
  white-space: nowrap;
}
@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: center;
    height: min(80px, 80 / 1440 * 100vw);
    width: 100%;
    gap: min(32px, 32 / 1240 * 100vw);
  }
  .header .list-menu li {
    margin: 0;
    position: relative;
    font-size: min(16px, 16 / 1240 * 100vw);
  }
  .header .list-menu li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .header .list-menu button,
  .header .list-menu a {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: var(--color-main);
  }
  .header .list-menu button:hover,
  .header .list-menu a:hover {
    color: var(--color-orange);
  }
  .header .list-sns {
    display: flex;
    gap: min(24px, calc(24 / var(--base) * 100vw));
    align-items: center;
    margin-top: 0;
  }
  .header .list-sns li {
    margin: 0;
    background-color: transparent;
    transition: background-color var(--duration-transition);
  }
  .header .list-sns li.x:hover {
    background-color: #fff;
  }
  .header .list-sns li.x:hover a {
    background-color: var(--color-emerald);
  }
  .header .list-sns a {
    transition: background-color var(--duration-transition);
  }
  .header.open {
    background-color: var(--color-bg);
  }
}

.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-emerald);
  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 button {
  background-color: #fff;
}
.menu-sw.open span::before {
  transform: translate(0, 0) rotate(45deg);
  background-color: var(--color-emerald);
}
.menu-sw.open span i {
  transform: rotate(-45deg);
  background-color: var(--color-emerald);
}
.menu-sw.open span::after {
  transform: translate(0, 0) rotate(45deg);
  background-color: var(--color-emerald);
}
@media screen and (min-width: 1024px) {
  .menu-sw {
    display: none;
  }
}

.main {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .main {
    padding-top: min(80px, 80 / 1440 * 100vw);
  }
}

.footer {
  padding: min(40px, calc(40 / var(--base) * 100vw)) 0;
  background-color: var(--color-main);
}
.footer .date {
  margin: 0 calc(24 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .footer .date {
    margin: 0 auto;
    width: min(496px, calc(496 / 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 */
/* ----------------- 
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 0 10px 0;
  overflow-x: scroll;
}
.table-schedule .content {
  display: table;
  padding: 0 calc(24 / var(--base) * 100vw) 0 calc(24 / var(--base) * 100vw);
}
.table-schedule .content::after {
  content: "";
  display: block;
  width: calc(24 / var(--base) * 100vw);
}
.table-schedule table {
  margin: 0;
  width: 100%;
  position: relative;
  border-collapse: collapse;
  color: var(--color-text);
  border: 1px solid var(--color-main);
}
.table-schedule th {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: calc(12 / var(--base) * 100vw);
  color: var(--color-text);
  vertical-align: middle;
  background-color: #fff;
}
.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;
  background-color: #fff;
}
.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: none;
}
.table-schedule a:hover {
  text-decoration: underline;
}
.table-schedule thead th {
  padding: 10px 20px 10px 20px;
  text-align: left;
  background-color: var(--color-main);
  color: #fff;
}
.table-schedule tbody th {
  text-align: left;
  font-weight: 400;
  border-top: 1px solid var(--color-main);
}
.table-schedule tbody td {
  text-align: left;
  border-top: 1px solid var(--color-main);
}
@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(32px, calc(32 / var(--base) * 100vw)) auto 0 auto;
    padding: 0;
    width: min(816px, 816 / 1240 * 100vw);
  }
  .table-schedule .content {
    display: block;
    width: 100%;
    padding: 0;
  }
  .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 tbody th {
    width: 10%;
  }
  .table-schedule tbody td:nth-of-type(1) {
    width: 20%;
  }
  .table-schedule tbody td:nth-of-type(2) {
    width: 20%;
  }
  .table-schedule tbody td:nth-of-type(3) {
    white-space: wrap;
  }
  .table-schedule p {
    font-size: min(14px, calc(14 / var(--base) * 100vw));
  }
}

.fx-opacity {
  opacity: 0;
  transition: opacity calc(var(--duration-transition) / 2);
}
.fx-opacity.on {
  opacity: 1;
}

.fx-b2t {
  opacity: 0;
  translate: 0 2em;
  transition: opacity var(--duration-transition), translate var(--duration-transition);
}
.fx-b2t.on {
  opacity: 1;
  translate: none;
}

.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 .title {
  font-size: calc(44 / var(--base) * 100vw);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: center;
}
.t .url {
  margin-top: calc(13 / var(--base) * 100vw);
  font-size: calc(10 / var(--base) * 100vw);
  font-family: sans-serif;
}
.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));
    align-items: start;
    justify-items: center;
    width: min(1106px, calc(1106 / var(--base) * 100vw));
    gap: min(40px, calc(40 / var(--base) * 100vw));
  }
  .t .title {
    margin-bottom: min(16px, calc(16 / var(--base) * 100vw));
    font-size: min(72px, calc(72 / var(--base) * 100vw));
    line-height: 1.2;
    text-align: center;
  }
  .t .url {
    margin-top: min(0px, calc(0 / var(--base) * 100vw));
    margin-bottom: min(16px, calc(16 / var(--base) * 100vw));
    font-size: min(16px, calc(16 / var(--base) * 100vw));
  }
  .t p {
    text-align: center;
  }
  .t .youtube {
    display: block;
    grid-row: 2;
    grid-column: 1/3;
    width: 100%;
  }
  .t .youtube .inner {
    width: 100%;
    margin: calc(24 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  }
}/*# sourceMappingURL=style.css.map */