@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  font-size: 1em;
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  position: relative;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  color: #fff;
  background: #000;
  line-break: strict;
}
body * {
  box-sizing: border-box;
}
body img {
  max-width: 100%;
  height: auto;
}
body ul, body ol {
  list-style: none;
}
body a:link, body a:visited, body a:active {
  color: #c00;
}
body a:hover {
  color: #f00;
}

.contents {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  margin: auto;
}
@media (max-width: 600px) {
  .contents {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
}

header {
  background: #000;
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}

header .btn-home {
  max-width: 60px;
  width: 14%;
  padding: 5px;
  margin-left: 5px;
}

header .btn-sns {
  margin-left: auto;
  margin-right: 70px;
  display: flex;
  justify-content: flex-end;
}
header .btn-sns > a {
  display: block;
  width: 10%;
  margin: 5px;
}

header .btn-menu {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  min-height: 50px;
  height: 100%;
  padding: 10px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .btn-menu svg {
  width: 40px;
}
header .btn-menu line {
  stroke: #000;
  stroke-width: 3;
  transition: 0.4s;
}
header .btn-menu.--show line:nth-child(1) {
  transform: translate(-3.33px, 10px) rotate(45deg);
  transform-origin: center;
}
header .btn-menu.--show line:nth-child(2) {
  opacity: 0;
}
header .btn-menu.--show line:nth-child(3) {
  transform: translate(-3.33px, -10px) rotate(-45deg);
  transform-origin: center;
}

main {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 1rem 0;
}

.global-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: -99;
  height: 0;
  padding-top: 80px;
  transition: 0.4s;
  opacity: 0;
}
.global-nav.--show {
  z-index: 9;
  height: 100%;
  overflow-y: scroll;
  opacity: 1;
}
.global-nav ul {
  width: 600px;
  margin: auto;
}
@media (max-width: 600px) {
  .global-nav ul {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
}
.global-nav ul > li {
  border-bottom: solid 1px #888;
}
.global-nav ul > li a {
  display: block;
  padding: 1rem;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}
.global-nav ul > li a span {
  font-size: 0.9375rem;
  font-family: "Lato", "Noto Sans JP", sans-serif;
}

.page-bg3 {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 600px;
  margin: auto;
}
@media (max-width: 600px) {
  .page-bg3 {
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
}
.page-bg3 img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: initial;
  object-fit: cover;
}

.and-page-heading {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1rem;
}
.and-page-heading span {
  display: block;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
}

.u-mg0 {
  margin: 0px !important;
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pd0 {
  padding: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-mg10 {
  margin: 10px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pd10 {
  padding: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mg20 {
  margin: 20px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pd20 {
  padding: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mg30 {
  margin: 30px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pd30 {
  padding: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mg40 {
  margin: 40px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pd40 {
  padding: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mg50 {
  margin: 50px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pd50 {
  padding: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.contents {
  color: #333;
}

.and-page-heading {
  margin-top: 3rem;
}

.and-cast-list {
  display: flex;
  flex-wrap: wrap;
}
.and-cast-list > li {
  width: calc(50% - 6px);
  margin: 3px;
}
.and-cast-list > li a {
  display: block;
  position: relative;
}

.and-cast-list-img {
  position: relative;
}
.and-cast-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.and-cast-list-name {
  position: absolute;
  width: 80%;
  background: rgba(255, 255, 255, 0.7);
  bottom: 20px;
  left: 0;
}
.and-cast-list-name .and-cast-list-num,
.and-cast-list-name .and-cast-list-en,
.and-cast-list-name .and-cast-list-ja {
  color: #333;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
}
.and-cast-list-name .and-cast-list-num,
.and-cast-list-name .and-cast-list-en {
  font-size: 0.875rem;
}
.and-cast-list-name .and-cast-list-ja {
  font-size: 1.5rem;
}

table.and-system {
  margin: 1rem;
  border-collapse: collapse;
  width: calc(100% - 2rem);
  margin: 1rem 1rem 0;
}
table.and-system tr {
  border-bottom: solid 1px #000;
  background: transparent;
}
table.and-system th, table.and-system td {
  font-size: 1.125rem;
  font-weight: normal;
  padding: 1rem 3px 3px;
  border: none;
  background: transparent;
}
table.and-system th {
  text-align: left;
}
table.and-system td {
  text-align: right;
}

.and-system-note {
  margin: 1rem;
}
.and-system-note p {
  padding-left: 1em;
  font-size: 0.875rem;
}
.and-system-note p::first-letter {
  margin-left: -1em;
}

.and-system-detail {
  background: rgba(0, 0, 0, 0.75);
  padding: 1em;
  color: #fff;
  font-size: 0.9375rem;
  margin: 8px 3px;
}

body.flow .contents,
body.flow main {
  display: block;
}

.and-flow {
  padding: 1rem;
  color: #fff;
}
.and-flow > div {
  background: rgba(0, 0, 0, 0.75);
  padding: 2rem 1rem 1rem;
  width: 100%;
  position: relative;
}
.and-flow > div h3, .and-flow > div .and-flow-img, .and-flow > div p {
  max-width: 444px;
  width: 100%;
  margin: auto;
}
.and-flow > div p {
  padding-inline: 1em;
  font-size: 0.9375rem;
}
.and-flow > div p + p {
  margin-top: 1em;
}
.and-flow > div a {
  color: #fff;
}
.and-flow > div h3 {
  font-size: 1.25rem;
  font-weight: normal;
  text-align: center;
}
.and-flow > div .and-flow-num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0 0 5px #000);
  padding-inline: 0;
}
.and-flow > div .and-flow-img {
  margin: 10px auto;
}
.and-flow > div + div {
  margin-top: 3rem;
}

.and-crown {
  background: rgba(0, 0, 0, 0.75);
  padding: 1rem;
  color: #fff;
}
.and-crown h3 {
  font-size: 1.125rem;
  font-weight: normal;
}
.and-crown ul li {
  display: inline-block;
  margin: 3px;
	vertical-align: bottom;	/* 各<li>の下端を揃える */
	line-height: 1;			/* 画像下の余白対策。必要に応じて */
	font-size: 16px;		/* 親でfont-size:0した場合は復元 */
}


.and-crown .and-crown-img img {
  display: block;
  margin: auto;
}
.and-crown .and-crown-txt {
  margin: 1rem 0;
  border: solid 1px #fff;
  padding: 1rem;
}

.page-main {
  width: 100%;
  padding: 10px;
}

.page-editable {
  min-height: 70dvh;
  width: 100%;
  padding: 1rem;
  margin: 2rem 0 1rem;
  background: rgba(255, 255, 255, 0.8);
}
.page-editable p + p, .page-editable p + h2, .page-editable p + h3, .page-editable p + h4, .page-editable p + h5, .page-editable p + h6, .page-editable p + ul, .page-editable p + ol, .page-editable ul + p, .page-editable ul + h2, .page-editable ul + h3, .page-editable ul + h4, .page-editable ul + h5, .page-editable ul + h6, .page-editable ul + ul, .page-editable ul + ol, .page-editable ol + p, .page-editable ol + h2, .page-editable ol + h3, .page-editable ol + h4, .page-editable ol + h5, .page-editable ol + h6, .page-editable ol + ul, .page-editable ol + ol {
  margin-top: 1em;
}
.page-editable p {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
}
.page-editable h2 {
  font-size: 1.5rem;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  margin-bottom: 0.5rem;
  border-bottom: solid 1px #000;
}
.page-editable h2:before {
  content: "□";
}
.page-editable h3 {
  font-size: 1.25rem;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  margin-bottom: 0.5rem;
  text-decoration: underline;
}
.page-editable h3:before {
  content: "○";
  font-size: 75%;
}
.page-editable h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.page-editable ul, .page-editable ol {
  padding-left: 1.5em;
}
.page-editable ul li + li, .page-editable ol li + li {
  margin-top: 0.5em;
}
.page-editable ul li {
  list-style: disc;
}
.page-editable ol li {
  list-style: decimal;
}

#toc {
  margin-bottom: 3rem;
}

body.contact .hidden-fields-container {
  opacity: 0;
}
body.contact input[type=text],
body.contact input[type=email],
body.contact input[type=tel],
body.contact textarea {
  width: 100%;
}
body.contact input[type=submit] {
  width: 100%;
  border-radius: 0;
  background: #333;
  color: #fff;
  padding: 0.5em;
}

.wp-block-cocoon-blocks-faq {
  margin-top: 2rem;
}
.wp-block-cocoon-blocks-faq .faq-question,
.wp-block-cocoon-blocks-faq .faq-answer {
  display: flex;
}
.wp-block-cocoon-blocks-faq .faq-question {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.wp-block-cocoon-blocks-faq .faq-item-label {
  font-size: 1rem;
}
.wp-block-cocoon-blocks-faq.blank-box {
  padding: 0;
}

footer {
  min-height: 2rem;
  width: 100%;
  background: #000;
}

/*# sourceMappingURL=and-page.css.map */
