@charset "UTF-8";
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*ローディング*/
/*
.loading {
	width: 100%;
	height: 100%;
	z-index: 9999999;
	background-color: #f3f1ef;
	position: fixed;
	top: 0;
	left: 0;

	.loading-img {
		width: 25%;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}
*/
/*トップへ移動*/
/*
.pagetop {
	display: block;
	opacity: .9;
	width: 80px;
	position: fixed;
	z-index: 9999;
	right: 3%;
	bottom: 3%;
	img {
		width: 100%;
	}
	@media screen and (min-width:768px){
		width: 100px;
	}
}
*/
:root {
  /*css変数*/
  --max_width: 100%;
  --main_width: 94%;
  --font-color-black: #000000;
  --margin02: auto auto 2% auto;
  --margin03: auto auto 3% auto;
  --margin04: auto auto 4% auto;
  --margin05: auto auto 5% auto;
  --font-size-small: 3.2vw;
  --font-size01: 3.3vw;
  --font-size02: 3.7vw; /*文*/
  --font-list: 4.3vw;
  --font-list-small: 3.7vw;
  --font-list-day: 6.6vw;
}

/*--SPのみ----------*/
@media screen and (max-width: 767.9px) {
  html, body {
    font-size: var(--font-size-small);
  }
}
/*--PCのみ----------*/
@media screen and (min-width: 768px) {
  :root {
    /*css変数*/
    --max_width: min(100%,1000px);
    --main_width: min(94%,1000px);
    --margin02: auto auto 20px auto;
    --margin03: auto auto 30px auto;
    --margin04: auto auto 40px auto;
    --margin05: auto auto 50px auto;
    --font-size-small: 12px;
    --font-size01: 14px;
    --font-size02: 28px; /*文*/
    --font-list: 30px;
    --font-list-small: 20px;
    --font-list-day: 50px;
  }
  html, body {
    font-size: min(var(--font-size-small), 30px);
    /*min-width: 1000px;*/
    min-height: 550px;
  }
}
/*--common----------*/
html, body {
  width: 100%;
  margin: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #000;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}
a:hover {
  filter: brightness(1.3);
}

.wrapper {
  position: relative;
  background-image: url("../img/bg01.jpg");
  background-size: cover;
  background-position: top, center;
  background-repeat: repeat-y;
}
@media screen and (max-width: 767.9px) {
  .wrapper {
    background-image: url("../img/bg01_sp.jpg");
  }
}

.main {
  width: var(--max_width);
  margin: auto;
  padding: 45px 0 0 0;
  background-color: rgba(0, 0, 0, 0.75);
}
@media screen and (max-width: 767.9px) {
  .main {
    width: 80%;
    padding: 5% 0 0 0;
  }
}

.mgn00 {
  width: var(--main_width);
  margin: auto;
}

.mgn00_01 {
  margin: auto;
}

.mgn01 {
  width: var(--main_width);
  margin: var(--margin03);
}

.mgn01_01 {
  margin: var(--margin03);
}

.mgn02 {
  width: var(--main_width);
  margin: var(--margin04);
}

.mgn02_01 {
  margin: var(--margin04);
}

.mgn03 {
  width: var(--main_width);
  margin: var(--margin05);
}

.mgn03_01 {
  margin: var(--margin05);
}

.pdg01 {
  padding: 3% 0 5% 0;
}
@media screen and (min-width: 768px) {
  .pdg01 {
    padding: 30px 0 50px 0;
  }
}

h1 {
  width: var(--max_width);
  margin: auto;
}

@media screen and (min-width: 768px) {
  h2 {
    width: 540px;
    margin: auto;
  }
}

.p01 {
  font-size: var(--font-size02);
  font-weight: 700;
  text-align: center;
}

.flex01 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.top_btn {
  width: 88%;
  margin: auto;
  padding-bottom: 5%;
}
.top_btn a {
  display: block;
  margin: auto 0 auto auto;
  width: 80px;
}
@media screen and (min-width: 768px) {
  .top_btn {
    width: min(100%, 900px);
    padding-bottom: 50px;
  }
  .top_btn a {
    width: 150px;
  }
}

/*--end-common----------*/
.list00 {
  width: var(--main_width);
  margin: 1% auto 3% auto;
  color: #fff;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .list00 {
    width: min(100%, 900px);
    margin: auto auto 20px auto;
  }
}
.list00 tr {
  width: 100%;
}
.list00 tr td {
  padding: 0.5%;
  font-size: var(--font-list);
  border: 1px solid #fff;
  text-align: center;
}
.list00 tr td .dai {
  font-size: var(--font-list-day);
}
.list00 tr td .mini {
  font-size: var(--font-list-small);
}
.list00 tr .day {
  width: 29%;
}
.list00 tr .pref {
  width: 19%;
}
.list00 tr .name {
  width: 49%;
}
@media screen and (max-width: 767.9px) {
  .list00 tr td {
    padding: 1%;
  }
  .list00 tr .day {
    width: 59%;
  }
  .list00 tr .pref {
    width: 39%;
  }
  .list00 tr .name {
    width: auto;
  }
}

/*
small{
	display: block;
	font-size: 2.6vw;
	text-align: center;
	@media screen and (min-width:768px){
		text-align: right;
		font-size: var(--font-size-small);
	}
}
*/
/*--footer--*/
footer.outer {
  width: 100%;
  position: relative;
  padding: 3% 0;
  background-color: #000;
}
footer.outer div.inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
footer.outer div.inner div.contents {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
footer.outer div.inner div.contents ul.links {
  width: 100%;
  display: flex;
  list-style: none;
  padding: 0;
  margin-bottom: min(3rem, 3vw);
}
footer.outer div.inner div.contents ul.links li {
  font-size: var(--font-size01);
}
footer.outer div.inner div.contents ul.links li a {
  color: #FFF;
  text-decoration: none;
}
footer.outer div.inner div.contents ul.links li a:hover {
  text-decoration: underline;
}
footer.outer div.inner div.contents ul.links li + li {
  margin: 0 0 0 min(2rem, 2vw);
}
footer.outer div.inner div.contents ul.links {
  margin-bottom: min(0.5rem, 0.5vw);
}
footer.outer div.inner div.contents p.copyright {
  color: #FFF;
  text-align: center;
  font-size: var(--font-size-small);
}

@media screen and (max-width: 767.9px) {
  footer.outer div.inner div.contents {
    width: 90%;
  }
  footer.outer div.inner div.contents ul.links {
    flex-direction: column;
  }
  footer.outer div.inner div.contents ul.links li + li {
    margin: 2vw 0 0 0;
  }
  footer.outer div.inner div.contents ul.links {
    margin-bottom: 4vw;
  }
  footer.outer div.inner div.contents li a {
    font-size: var(--font-size01);
  }
  footer.outer div.inner div.contents p.copyright {
    font-size: var(--font-size-small);
  }
}
/*--SPのみ----------*/
@media screen and (max-width: 767.9px) {
  .sp_display {
    display: block;
  }
  .pc_display {
    display: none;
  }
}
/*--PCのみ----------*/
@media screen and (min-width: 768px) {
  .pc_display {
    display: block;
  }
  .sp_display {
    display: none;
  }
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
    * Don't show links that are fragment identifiers,
    * or use the `javascript:` pseudo protocol
    */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
    * Printing Tables:
    * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
    */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

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