@charset "UTF-8";
/*! Shitaji.CSS v5.0.0 CC0-1.0 by Qrac */
*,
::before,
::after {
  margin: 0;
  background-repeat: no-repeat;
  box-sizing: border-box;
  font-size: 1em;
  font-family: inherit;
  font-weight: inherit;
}

::before,
::after {
  vertical-align: inherit;
  text-decoration: inherit;
}

html {
  font-family: sans-serif;
  /* word-break: break-word; */
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth; /* スムーズスクロール */
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header,
footer,
main,
section,
article,
aside,
nav,
details,
menu,
figure,
figcaption {
  display: block;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

canvas,
audio,
video {
  display: inline-block;
}

img,
svg,
iframe,
canvas,
audio,
video {
  vertical-align: middle;
}

img {
  border-style: none;
}

svg:not([fill]) {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

input {
  border-radius: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

address {
  font-style: normal;
}

textarea {
  overflow: auto;
  resize: vertical;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
}

hr {
  height: 0;
  overflow: visible;
}

template {
  display: none;
}

a,
area,
button,
input,
label,
select,
textarea,
[tabindex] {
  touch-action: manipulation;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

[hidden] {
  display: none;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*==============================
common
===============================*/
body {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "YakuHanJPs", Roboto, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Arial, sans-serif;
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 0px;
  }
}
.inner {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 20px;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/*==============================
js用フェードイン
===============================*/
.is-fadeIn {
  opacity: 0 !important;
  transform: translate(0, 50px) !important;
  transition-duration: 0.3s !important;
  transition-property: opacity, transform !important;
}
.is-fadeIn.is-scrollIn {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/*==============================
header
===============================*/
.header {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: #7d0000;
  padding: 20px 0px;
}
.header .inner{
  max-width: 1000px;
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.header_grid {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header_logo img {
    width: 60px;
  }
}
.header_title {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header_title {
    font-size: 18px;
  }
}
.header_link {
  color: #FFFFFF;
  font-size: 14px;
}
.header_link a {
  text-decoration: underline;
}

/*==============================
.secDesc
===============================*/
.secDesc {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .secDesc {
    font-size: 16px;
  }
}
.secDesc_txt {
  padding: 30px 0;
  font-size: 18px;
  text-align: center;
  line-height: 2;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .secDesc_txt {
    font-size: 16px;
  }
}

/*==============================
.secArchive
===============================*/
.secArchive {
  background-color: #f2f2f2;
  padding: 60px 20px;
}
.secArchive .inner {
  padding: 60px 40px;
  border: 1px solid #231815;
  background-color: #ffffff;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .secArchive .inner {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 767px) {
  .secArchive_group {
    flex-wrap: wrap;
    padding-bottom: 60px;
    border-bottom: 1px solid #231815;
  }
}
@media screen and (max-width: 767px) {
  .secArchive_group:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.secArchive_group + .secArchive_group {
  margin-top: 60px;
}
.secArchive_grid {
  display: flex;
  justify-content: left;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .secArchive_grid {
    flex-wrap: wrap;
  }
}
.secArchive_grid:before {
  position: absolute;
  display: inline-block;
  padding: 3px 20px;
  border-radius: 3px;
  top: 0px;
  left: 0px;
  font-weight: bold;
  border: 1px solid #231815;
  z-index: 4;
  transition: top 0.3s, left 0.3s;
}
.secArchive_grid.is-open:before {
  content: "開催中";
  background-color: #7d0000;
  color: #FFF;
}
.secArchive_grid.is-plans:before {
  content: "予定";
  background-color: #fff69f;
  color: #231815;
}
.secArchive_img {
  width: 250px;
  min-width: 250px;
  height: 208.5px;
  border: 1px solid #231815;
  border-radius: 3px;
  padding: 1px;
  position: relative;
  z-index: 3;
  left: 0;
  margin-top: 30px;
  top: 0;
  transition: top 0.3s, left 0.3s;
}
@media screen and (max-width: 767px) {
  .secArchive_img {
    width: 100%;
    height: auto;
    aspect-ratio: 500/417;
  }
}
.secArchive_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secArchive_box {
  filter: drop-shadow(7px 7px #231815);
  margin-top: 0px;
  margin-left: -10px;
  position: relative;
  z-index: 2;
  transition: filter 0.3s;
}
@media screen and (max-width: 767px) {
  .secArchive_box {
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 10px;
  }
}
.secArchive_ttl {
  color: #7d0000;
  font-size: 18px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border: #231815 1px solid;
  background-color: #ffffff;
  padding: 20px 20px 10px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom: none;
  position: relative;
  top: 2px;
  left: 0;
  z-index: 1;
  transition: top 0.3s, left 0.3s;
  line-height: 2;
  max-width: calc(100% - 5px);
}
@media screen and (max-width: 767px) {
  .secArchive_ttl {
    font-size: 15px;
    padding: 10px 10px 5px;
  }
}
.secArchive_txt {
  font-size: 14px;
  font-weight: bold;
  max-width: 100%;
  border: #231815 1px solid;
  background-color: #ffffff;
  padding: 10px 20px 80px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  top: 0;
  left: 0;
  transition: top 0.3s, left 0.3s;
  line-height: 2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .secArchive_txt {
    font-size: 13px;
    padding: 5px 10px 30px;
    width: 100%;
  }
}
.secArchive_txt:after {
  content: "詳しくはこちら→";
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 12px;
  color: #7d0000;
  transition: right 0.3s;
}
@media screen and (max-width: 767px) {
  .secArchive_txt:after {
    font-size: 11px;
    bottom: 5px;
    right: 10px;
  }
}

/*============マウスオーバー時=========*/
.secArchive_grid:hover {
  opacity: 0.8;
}
.secArchive_grid:hover:before {
  top: 10px;
  left: 10px;
}
.secArchive_grid:hover .secArchive_box {
  filter: drop-shadow(0px 0px #231815);
}
.secArchive_grid:hover .secArchive_img {
  top: 10px;
  left: 10px;
}
.secArchive_grid:hover .secArchive_ttl {
  left: 10px;
  top: 10px;
}
.secArchive_grid:hover .secArchive_txt {
  top: 8px;
  left: 10px;
}
.secArchive_grid:hover .secArchive_txt:after {
  right: 10px;
}

/*==============================
footer
===============================*/
.footer {
  background: #333;
  font-size: 14px;
}

.footer .inner {
  padding: 10px;
  max-width: 980px;
}

.footer-service {
  display: flex;
}

.footer-box {
  display: flex;
  justify-content: space-between;
}

.footer-service > li {
  padding: 0 10px;
  color: #ffffff;
}

.copyright {
  margin-top: 10px;
  text-align: right;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 15px 0;
    font-size: 12px;
  }
  .footer-service {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-service > li a {
    display: block;
  }
  .copyright {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */