@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
/*====================================
======================================

　Foundation/_mixin.scss


======================================
====================================*/
/*
■メディアクエリー　ブレイクポイント
====================================*/
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanjp_s-narrow.min.css");
/*////////////////////////////////////////
//// Bass Setting ////////////////////////
////////////////////////////////////////*/
/*
reset ーーーーーーーーーー*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ul, li {
  list-style: none;
}

button, a {
  outline: none;
  text-decoration: none;
  display: block;
}

/*
common ーーーーーーーーーー*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.sp {
  display: none;
}
/*
header ーーーーーーーーーー*/
.b-header {
  width: 100%;
  position: absolute;
  z-index: 1000;
  text-align: center;
}
.b-header__logo {
  margin: 35px auto 0;
}
.b-header__drawer {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 33px;
  height: 21px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  z-index: 1000;
}
.b-header__drawer span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.b-header__drawer span:nth-of-type(1) {
  top: 0;
}
.b-header__drawer span:nth-of-type(2) {
  top: 9px;
}
.b-header__drawer span:nth-of-type(3) {
  bottom: 0;
}
.b-header__drawer.js-active span:nth-of-type(1) {
  top: -6px;
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}
.b-header__drawer.js-active span:nth-of-type(2) {
  opacity: 0;
}
.b-header__drawer.js-active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.Sidebar.p-drawerContents {
  position: fixed;
  right: -30%;
  z-index: 999;
  width: 20%;
  height: 100%;
  transition: 300ms right cubic-bezier(0.77, 0, 0.175, 1);
}
.Sidebar.p-drawerContents.js-active {
  right: 0;
}

.Sidebar {
  width: 100%;
  display: flex;
  flex-flow: column;
  height: 100vh;
}
.Sidebar__logoWrap {
  position: relative;
  width: 100%;
  background-color: #880000;
  height: 30%;
}
.Sidebar__logoWrap:before {
  content: "";
  display: block;
  padding-top: 100%; /* 高さを幅の100%に固定 */
}
.Sidebar__logoWrap::after {
  content: "";
  width: 96%;
  height: 95%;
  border: 1px solid #fff;
  position: absolute;
  top: 2%;
  left: 2%;
}
.Sidebar__logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 40%;
}
.Sidebar__menu {
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
}
.Sidebar__item {
  width: 100%;
  height: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #880000;
  transition: height 0.3s ease-out;
}
.Sidebar__item a {
  width: 100%;
  height: 100%;
}
.Sidebar__itemText {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 200px;
  height: 24px;
  font-size: 16px;
  text-align: center;
  color: white;
}
.Sidebar__itemBg {
  opacity: 0.3;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
footer 50th ーーーーーーーーーー*/
.b-footer-50th {
  width: 100%;
}
.b-footer-50th ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.b-footer-50th ul li {
  font-size: 20px;
  margin: 30px;
}
.b-footer-50th ul li a {
  font-family: "YuGothic", "游ゴシック", sans-serif;
  color: #b7b5b5;
  letter-spacing: 2px;
  transition: 0.3s;
}
.b-footer-50th ul li a:hover {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2), -1px -1px 4px rgba(0, 0, 0, 0.2), -1px 1px 4px rgba(0, 0, 0, 0.2), 1px -1px 4px rgba(0, 0, 0, 0.2);
}

/*
footer ーーーーーーーーーー*/
.b-footer {
  padding: 35px 0 30px;
  background: #313131;
  text-align: center;
}
.b-footer__btn a {
  width: 320px;
  margin: 0 auto 35px;
  padding: 10px 10px 8px;
  color: #313131;
  background: #777;
  font-size: 20px;
  font-weight: 500;
  border-radius: 30px;
  display: block;
  box-sizing: border-box;
}
.b-footer__btn a:hover {
  background: #fff;
  transition-duration: 0.3s;
}
.b-footer__sns {
  margin: 50px 0;
}
.b-footer__sns li {
  margin: 0 26px;
  vertical-align: top;
  display: inline-block;
}
.b-footer__sns i {
  color: #777;
}
.b-footer__sns i:hover {
  color: #fff;
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.b-footer__copyright {
  color: #777;
  font-size: 18px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "メイリオ", Meiryo, serif;
}

/*fadeup*/
.f-fadeup {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 1.5s cubic-bezier(0.165, 0.8, 0.45, 1) 0s;
}

.f-fadeup.active {
  opacity: 1;
  filter: alpha(opacity=100);
}

:not(.accordion_box).f-fadeup {
  transform: translateY(40px);
}

:not(.accordion_box).f-fadeup.active {
  transform: translateY(0);
}

.f-fadeup.active .f-fadeinin {
  opacity: 1;
  filter: alpha(opacity=1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.accordion_box.f-fadeup {
  margin-top: 40px !important;
}

.accordion_box.f-fadeup.active {
  margin-top: 0 !important;
}
/*
モーダルコンテンツの設定ーーーーーーーーーー*/
.m-modal {
  width: 100%;
  height: 100vh;
  display: none;
}
.m-modal__bg {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: -10;
}
.m-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.m-modal__content--YouTube {
  position: relative;
  width: 80%;
  padding-top: 44.25%;
}
.m-modal__content--YouTube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.m-modal__content--txt {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 20px;
  background-color: #fff;
}
.m-modal__content--txt .year {
  font-size: 23px;
  color: #b91708;
  font-family: YakuHanJPs_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
  text-shadow: 1px 1px 2px #e4bfbf;
}
.m-modal__content--txt .title {
  color: #b91708;
  font-size: 25px;
  font-weight: bold;
  border-bottom: 2px solid #b91708;
  padding: 0 0 5px;
  margin: 0 0 15px;
  text-shadow: 1px 1px 2px #e4bfbf;
  position: relative;
  z-index: 0;
  font-family: YakuHanJPs_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}
.m-modal__content--txt .title::before, .m-modal__content--txt .title::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b91708;
  position: absolute;
  bottom: -4px;
  z-index: 10;
}
.m-modal__content--txt .title::before {
  left: -3px;
}
.m-modal__content--txt .title::after {
  right: -3px;
}
.m-modal__content--txt .txt {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  font-family: YakuHanJPs_Narrow, "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}
.m-modal__content--txt .m-modal__close {
  width: 40px;
  top: 16px;
  right: 30px;
}
.m-modal__content--txt .m-modal__close img {
  width: 100%;
  max-width: initial;
}
.m-modal__close {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 0;
}
.m-modal__on {
  display: block;
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  animation: modal ease-in 0.2s forwards;
}

@keyframes modal {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.Js-Open {
  cursor: pointer;
}

body.js-modal-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

@media screen and (max-width: 768px){
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .b-header__logo {
    margin: 20px 0;
  }
  .Sidebar.p-drawerContents {
    width: 100%;
    right: -100%;
    height: 100vh;
  }
  .Sidebar__logoWrap {
    outline: none;
    height: 20vh;
  }
  .Sidebar__logoWrap::after {
    display: none;
  }
  .Sidebar__logo {
    width: 30%;
  }
  .Sidebar__menu {
    height: 100%;
  }
  .b-footer-50th ul {
    margin-bottom: 50px;
  }
  .b-footer-50th ul li {
    margin: 10px;
    width: 100%;
    font-size: 1.3rem;
    text-align: center;
  }
  .b-footer {
    padding: 15px 0;
  }
  .b-footer__contents {
    padding: 0;
  }
  .b-footer__btn a {
    width: 90%;
    margin: 0 auto;
    font-size: 17px;
  }
  .b-footer__sns {
    margin: 30px 0 30px;
  }
  .b-footer__sns img {
    width: 22px;
  }
  .b-footer__sns li {
    margin: 0 15px;
  }
  .b-footer__copyright {
    font-size: 10px;
  }
  .m-modal__content {
    top: 47%;
  }
  .m-modal__content--txt {
    width: 95%;
  }
}

@media screen and (min-width: 769px){
  .Sidebar__item {
    height: 20vh;
  }
  .Sidebar__item:hover {
    cursor: pointer;
    height: 50%;
  }
  .Sidebar__item:hover .Sidebar__itemBg {
    opacity: 1;
  }
}

@media screen and (min-width: 767px){
  .delay05 {
    transition-delay: 0.5s !important;
  }
  .delay10 {
    transition-delay: 1s !important;
  }
  .delay15 {
    transition-delay: 1.5s !important;
  }
  .delay20 {
    transition-delay: 2s;
  }
  .delay25 {
    transition-delay: 2.5s;
  }
  .delay30 {
    transition-delay: 3s;
  }
  .delay35 {
    transition-delay: 3.5s;
  }
  .delay40 {
    transition-delay: 4s;
  }
  .delay45 {
    transition-delay: 4.5s;
  }
  .delay50 {
    transition-delay: 5s;
  }
}

@media screen and (max-width: 950px){
  .m-modal__content--txt .title {
    font-size: 18px;
  }
  .m-modal__content--txt .txt {
    font-size: 14px;
    overflow-y: scroll;
    max-height: 60vh;
  }
}