@charset "UTF-8";
/*参考サイト： レスポンシブ対応 - https://web-roku.com/css-rem   https://www.solluna.blog/web/htmlcss/hamburger-menu/ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP");
@font-face {
  font-family: Shippori Mincho B1;
  src: url(../../Shippori_Mincho_B1/ShipporiMinchoB1-Regular.ttf) format(truetype);
  font-weight: 400;
}
@font-face {
  font-family: Shippori Mincho B1;
  src: url(../../Shippori_Mincho_B1/ShipporiMinchoB1-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Shippori Mincho B1;
  src: url(../../Shippori_Mincho_B1/ShipporiMinchoB1-SemiBold.ttf) format(truetype);
  font-weight: 600;
}
@font-face {
  font-family: Shippori Mincho B1;
  src: url(../../Shippori_Mincho_B1/ShipporiMinchoB1-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: Shippori Mincho B1;
  src: url(../../Shippori_Mincho_B1/ShipporiMinchoB1-ExtraBold.ttf);
  src: url(800);
}
@font-face {
  font-family: Shippori Mincho B1;
  src: url(../../Shippori_Mincho_B1/ShipporiMinchoB1);
  font-weight: 900;
}
/*(フォントサイズ)*/
.LetterSize1 {
  font-size: 1rem;
}

.LetterSize2 {
  font-size: 2rem;
}

.LetterSize3 {
  font-size: 3rem;
}

.LetterSize4 {
  font-size: 4rem;
}

.LetterSize5 {
  font-size: 5rem;
}

.LetterSize6 {
  font-size: 6rem;
}

.LetterSize7 {
  font-size: 7rem;
}

.LetterSize8 {
  font-size: 8rem;
}

.LetterSize9 {
  font-size: 9rem;
}

.LetterSize10 {
  font-size: 10rem;
}

.fontsize1 {
  font-size: 1.3rem;
}

.smallerleter {
  font-size: 1.1rem;
}

/*初期設定ー余白等を消去*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code,
form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  background-color: #eaeaea;
  margin: 0;
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*文章前装飾*/
.tateline::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 2px;
  height: 1.1rem;
  background-color: white;
  top: 4px;
  margin-right: 5px;
}

.nakatenn::before {
  content: "・";
}

.underline {
  text-decoration: underline;
}

.BigFirstLetter::first-letter {
  font-size: larger;
}

/*コピー禁止*/
.no-copy {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

/*ヘッダー*/
.btn-gNav {
  display: none; /*←ハンバーガーメニュー*/
}

header {
  /*ヘッダー*/
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  width: 100%;
  transition: background-color 0.5s 0s ease;
  /*ハンバーガーメニュー*/
  /*ヘッダー大きさ変化*/
}
header .logo {
  height: 10vh;
  min-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  transition: height 0.5s 0s ease, min-height 0.5s 0s ease;
}
header > a:first-child {
  display: flex;
  margin: 0 auto 0 7vw;
}
header nav {
  padding: 0 5vw;
}
header nav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
header nav ul li {
  display: inline-block;
}
header nav ul li a {
  padding: 0 2vw;
  color: white;
  position: relative;
  transition: color 0.5s 0s ease;
  /*ホバーアニメーション*/
}
header nav ul li a::after {
  position: absolute;
  bottom: -3px;
  left: 2vw;
  content: "";
  border-radius: 1px;
  width: calc(100% - 4vw);
  height: 1%;
  background: #fafafa;
  opacity: 0.9;
  transform: scale(0, 0.5);
  transform-origin: center top;
  transition: transform 0.3s;
}
header nav ul li a:hover::after {
  transform: scale(1, 1);
}
header .btn-gNav {
  position: fixed;
  top: auto;
  right: calc(7vw - 30px);
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
}
header .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 5px;
  transition: all 400ms;
}
header .btn-gNav span:nth-child(2) {
  top: 10px;
}
header .btn-gNav span:nth-child(3) {
  top: 20px;
}
header .HeightMin .logo {
  display: none;
}
header .HeightMin > nav {
  background-color: rgba(89, 111, 133, 0.8);
}

/*クラブの名前*/
.clubname {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

main > div[class^=m-]:not(.m-firstimage, .m-basedata) {
  margin: 40vh 7vw 0;
}

/*フッターここから*/
footer {
  position: relative;
  display: flex;
  margin-top: 40vh;
}
footer a:hover {
  color: gainsboro;
}
footer a, footer p {
  color: white;
  font-size: 1.4rem;
}

.f-IMG {
  width: 100%;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}

.f-clubname {
  display: flex;
}

/*フッターポジション*/
.f-Content {
  position: absolute;
  top: 50%;
  left: 7vw;
  transform: translateY(-50%);
  display: flex;
}
.f-Content > ul {
  display: flex;
}

.f-pages {
  display: flex;
  margin-left: 10vw;
  margin-top: 3vh;
}
.f-pages > ul:nth-of-type(2) {
  margin-left: 10vw;
}
.f-pages > ul > li {
  margin-top: 5vh;
}
.f-pages > ul > li > ul > li {
  margin-top: 2vh;
}
.f-pages i {
  margin-right: 4px;
}

/*フッター下*/
.f-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: 7vw;
  text-align: right;
}

.f-copyright {
  font-size: 0.8rem;
}

/*レスポンシブ対応-ベース*/
@media screen and (max-width: 550px) {
  html {
    font-size: 12px;
  }
  header .logo {
    min-height: 0;
  }
  /*ハンバーガーメニュー*/
  .btn-gNav {
    display: block;
  }
  .btn-gNav.open span:nth-child(1) {
    transform: rotate(-45deg);
    transform-origin: right top;
  }
  .btn-gNav.open span:nth-child(2) {
    opacity: 0;
  }
  .btn-gNav.open span:nth-child(3) {
    transform: rotate(45deg);
    transform-origin: right bottom;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 50px;
    transition: 0.3s;
  }
  .nav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
  }
  .nav-menu li {
    width: 86%;
    padding: 15px;
    border-bottom: #252525 1px solid;
  }
  .nav.open {
    right: 0;
  }
  /*フッター*/
  .f-IMG {
    height: 100vh;
  }
  .f-pages {
    display: inline-block;
  }
  .f-pages ul:first-child li:first-child {
    margin-top: 0;
  }
  .f-pages ul:nth-child(2) {
    margin-left: 0;
  }
  .f-bottom {
    margin-right: 0;
  }
}
@media screen and (min-width: 550px) {
  header.change-color, .header-other {
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 1vh 3px lightgray;
  }
  header.change-color a, .header-other a {
    color: black;
  }
  header.change-color a::after, .header-other a::after {
    background: rgba(0, 0, 0, 0.9);
  }
  .change-color .logo {
    height: 8vh;
    min-height: 60px;
  }
}
.header-background {
  width: 100%;
  height: 10vh;
  min-height: 100px;
  transition: opacity 0.5s 0s ease;
}

.clear {
  opacity: 0;
}/*# sourceMappingURL=incommon.css.map */