@charset "UTF-8";

body {
  font-family: sans-serif;
}

/**{
    outline: 2px red solid;
}*/
/** {
    padding: 0;
    margin: 0;
    }*/

/*loading設定*/


#sincyaku2 {
  display: block;
  text-align: center;
  width: 15rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  background-color: yellow;
  text-decoration: none;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 1rem 0;
  z-index: 7;
}

#sincyaku2:hover {
  display: block;
  text-align: center;
  width: 15rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 1rem 0;
  z-index: 7;
}

.han {
  display: none;
}

/*header*/
header {
  right: 0;
  background-color: #000;
  padding-left: px;
  height: 4rem;
  align-items: center;
  z-index: 8;
}

#mobile {
  display: none;
}

.gnav {
  line-height: 4rem;
}

.gnav ul {
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
}

.gnav li {
  color: #fff;
  list-style: none;
  white-space: nowrap;
}

.gnav a {
  padding: 0 1rem;
  text-decoration: none;
  color: #fff;
}

.gnav a:hover {
  padding: 0 1rem;
  text-decoration: none;
  color: #95ff75;
}

/*header終了*/
/*body*/
body {
  margin: 0;
}

/*body終了*/
/* 親要素を横並びに配置（タイトル・コンテンツ・#hal） */
.warp {
  display: flex;
  justify-content: space-between;
}

/* 親要素を横並びに配置（タイトル・コンテンツ・#hal）終了 */
/*h1*/
h1 {
  font-size: 6rem;
  /* width: 8rem; */
  margin: auto 0;
}

/*h1終了*/
/*index以外のh1に対するcss*/
/*左右のバナー*/
.title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  width: 8rem;
  padding-top: 2rem;
  /* height: 100vh;
  color: #000;
  /* position: absolute;
    right: 0; */
  background-image: url(../image/backgroundimage.png);
  background-size: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  z-index: 7;
}

.title h1 {
  padding-top: 2rem;
}

.hal {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 24px;
  font-weight: 600;
  /* height: 100vh; */
  color: #000;
  background-color: #fff;
  z-index: 8;
  display: flex;
  padding: 1rem;
  border-right: 1px solid #000;
}

.hal p {
  margin: 1rem auto;
}

.hal-nagoya {
  font-family: 'Cabin Sketch', cursive;
  font-size: 1rem;
  margin: 0.3rem auto;
  white-space: nowrap;
}

/*左右のバナー終了*/
/*全体のsectionに対するcss*/
section {
  background-color: #000;
  color: #fff;
  /*border-radius:左上 右上 右下 左下;*/
  border-radius: 30px 0px 30px 30px;
}

.section-p {
  margin: 0 auto;
  padding: 0.3rem 1rem;
  border-top: 2px solid #fff;
}

.section-p a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

section h2 {
  font-size: 20px;
  text-align: center;
  border-bottom: 2px solid #fff;
  margin: 0 auto;
  margin-top: 0.3rem;
}

section p {
  font-size: 14px;
}

/*index.html*/
.girl {
  width: 100%;
  z-index: 21;
  position: absolute;
  left: -18rem;


  /* 上から画像を表示するアニメーション */
  animation-name: girlAnime;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes girlAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から画像を表示するアニメーション終了 */
/*=== 9-1-2 丸が動いてスクロールを促す ====*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  top: 50%;
  left: 70%;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: -90px;
  bottom: -50px;
  /*テキストの形状*/
  color: #000;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-family: 'Noto Sans', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Roboto', sans-serif;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -103px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 145px;
  }

  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: -50px;
  left: -100px;
  /*線の形状*/
  width: 4px;
  height: 300px;
  background: #000;
}

.main-visual {
  width: 100%;
  height: 100vh;
}

h1#obi {
  font-size: 25px;
  writing-mode: vertical-rl;
  height: 100vh;
  border-right: solid #000 3px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

.RECREATION {
  font-size: 16vw;
  width: auto;

  z-index: 7;
  position: relative;
  top: -4rem;
  font-family: 'Noto Sans', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Roboto', sans-serif;

  padding-top: 0px;
  margin-right: 20PX;
  margin-left: 70px;

  text-align: center;

}

.top {
  padding-top: 20rem;

}

.date {
  text-align: right;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 60px;
  padding-bottom: 50px;
  right: 2rem;
  z-index: 7;
  position: relative;
  font-family: 'Noto Sans', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Roboto', sans-serif;
}



div#backimage {
  background-image: url(../image/backgroundimage.png);
  background-size: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;

  display: flex;
  flex-wrap: wrap;
  position: relative;

  margin-top: 0;

  z-index: 1;
}

.index header {
  background-color: transparent;
  z-index: 7;
  width: 80%;
}

.index-nav nav {
  display: flex;
  z-index: 7;
  margin: 6rem 0 0 4rem;

}

/*幅は適当*/
.index-nav ul {
  width: 41rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* background-image: url(../image/backgroundimage.png);*/
}

.index-nav ul li {
  width: 15rem;
  height: 10vh;
  list-style: none;
  margin: 1.6rem 2rem;
}

/*orderプロパティで並び順を制御*/
.index-nav ul li:nth-of-type(1) {
  order: 1;
}

.index-nav ul li:nth-of-type(2) {
  order: 2;
}

.index-nav ul li:nth-of-type(3) {
  order: 3;
}

.index-nav ul li:nth-of-type(4) {
  order: 5;
}

.index-nav ul li:nth-of-type(5) {
  order: 7;
}

.index-nav ul li:nth-of-type(6) {
  order: 4;
}

.index-nav ul li:nth-of-type(7) {
  order: 6;
}


.index-nav ul li a {
  display: block;
  text-align: center;
  width: 15rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  background-color: #b5fe9ff0;
  text-decoration: none;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 1rem 0;
  z-index: 7;
}

.index-nav ul li a:hover {
  display: block;
  text-align: center;
  width: 15rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #000000;
  text-decoration: none;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  padding: 1rem 0;
  z-index: 7;
}



#attendance-menu {
  display: block;
  text-align: center;
  width: 15rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  background-color: #b5fe9ff0;
  text-decoration: none;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 1rem 0;
  z-index: 7;
}

#attendance-menu:hover {
  display: block;
  text-align: center;
  width: 15rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #000000;
  text-decoration: none;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  padding: 1rem 0;
  z-index: 7;
}


/*プログラム日程部分のcss*/
.daytime {
  text-align: right;
  z-index: 6;
  width: 20%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
}

.day {
  font-size: 30px;
  font-weight: 600;
  margin: 30vh 14px;
}

.daytext {

  margin-top: -12rem;
  margin-right: 15px;
}

/*開始・終了を縦書きに設定*/
.text {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.time {
  font-size: 30px;
  font-weight: 600;
  margin: 10px 0;
}

.allow {
  font-size: 60px;
  margin: 5px auto;
}

.time-p {
  display: flex;
  justify-content: right;
}

/*プログラム日程部分のcss終了*/
.menu {
  font-family: 'Noto Sans', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Roboto', sans-serif;
  z-index: 7;
  font-size: 12rem;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
}

/*index.html終了*/
/*map.html*/
/*.map {
  display: flex;
  padding-top: 5rem;
}

.map h2 {
  border: none;
  margin: 1rem auto;
}

.map p {
  font-size: 20px;
}

.ground-map {
  width: 50%;
  margin: auto 0 auto 30px;
}

.google-map {
  margin: 2rem auto;
}

.information {
  background-color: transparent;
  color: #000;
}

.information a {
  color: #000;
}

.information h2 {
  z-index: -2;
  color: #9a989896;
  font-size: 2.4rem;
  text-align: left;
  font-weight: 900;
  position: relative;
  top: 40px
}

.address {
  border-bottom: 1px solid #000;
}

.info-text {
  z-index: 6;
  padding-left: 2rem;
  font-size: 20px;
}
*/
/*map.html終了*/
/*program.html*/
/*ホバー時のcss*/
.program {
  display: flex;
  flex-wrap: wrap;
}

.program-box {
  border: 1px solid #000;
  border-radius: 0%;

  min-height: 400px;
  overflow: hidden;
  background-color: #6b3f3f;
  color: #000;
  position: relative;
  margin-left: 50px;
  /* 相対位置指定 */
}

.program-name {
  text-align: right;
}

.program-name p {
  padding-right: 1rem;
}

.program-name h2 {
  font-size: 1.5rem;
  margin-right: 1rem;
  text-align: right;
}

.program-number {
  border-bottom: 2px solid #000;
  padding-left: 1rem;
  word-break: break-all;
}

.start-time {
  font-size: 20px;
  font-weight: 600;
}

.explanation {
  margin-right: 1rem;
  text-align: right;
}

.program-img {
  width: 100%;
  vertical-align: middle;
  z-index: 9;
}

.program-coution {
  border: 1px solid #000;
  text-align: center;
  padding: 2rem;
}

.program-coution h2 {
  margin: 0.3rem auto;
}

.program-coution p {
  margin: 2px auto;
}

/*program.html終了*/
/*coution.html*/
.coution-body {
  background-image: url(../image/backgroundimage.png);
}

.title-set {
  display: flex;
  flex-direction: column;
  /* justify-content: left; */
}

.title-box {
  display: flex;
  flex-direction: row;
}

.attention-box {
  display: flex;
  justify-content: right;
}

.attention {
  font-size: 3rem;
  font-weight: 600;
  margin: 0;
}

.coution {
  font-size: 8rem;
  color: #000;
  margin-left: 50px;
  width: auto;
  z-index: 7;
}

.coution-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.coution-box {
  background-color: #000;
  color: #fff;
  /*border-radius:左上 右上 右下 左下;*/
  border-radius: 30px 0 30px 30px;
  width: 34%;
  min-height: 230px;
  margin: 2rem 2rem;
  z-index: 1;
}

.coution-box h2 {
  margin: 18px 0 18px 0;
  border: none;
}

.terasupo-box {
  display: flex;
  width: calc(34% + 2rem);
}

/* 重なる部分（テラスポHP）のcss */
.terasupo1 {
  width: calc(100% - 2rem);
}

.terasupo2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2rem;
  border: 1px solid #000;
  color: #000;
  -ms-writing-mode: tb-rl;
  border-radius: 0 0 30px 0;
  writing-mode: vertical-rl;
  font-weight: 600;
}

.terasupo2 a {
  position: relative;
  display: block;
  width: 100%;
  padding: 1rem 0.25rem 0 0;
  text-decoration: none;
  background-color: #fff;
  color: #000;
  border-radius: 0 0 30px 0;
}

.terasupo2 a:hover {
  background-color: yellow;
}

.terasupo2 img {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* .link{
    justify-content: right;
} */
/*coution.html終了*/
/* best-photo.index */
.photo-box {
  display: flex;
}

.photo-info {
  width: 100%;
}

/* best-photo.index 終了*/
/*attendanceplayer.html*/
#attendance-title {
  background: transparent;
}

#attendance-title h1 {
  font-size: 3rem;
}

.attendance-body {
  background-image: url(../image/backgroundimage.png);
}

.attendance-player {
  display: flex;
}

.section-box2 {
  background-color: #000;
  color: #fff;
  border-radius: 30px 0px 30px 30px;
  margin: 2rem 2rem;
  text-align: center;
  min-width: 20rem;
  min-height: 5rem;
}

.section-box2 p {
  margin-top: 10px;
}

/*attendanceplayer.html終了*/
/*aboutrecreation.html*/
.about {
  margin-top: 3rem;
}

.about p {
  font-size: 20px;
}

.about h2 {
  font-size: 30px;
  margin: 1rem;
}

#about {
  font-size: 3.6rem;
}

/*aboutrecreation.html終了*/
/*footer*/
footer {
  position: relative;
  z-index: 9;
  padding: 3rem 0;
  background-color: #000;
  text-align: center;
  color: #fff;
}

.top-link {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}

.top-link a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
}

.top-mark {
  height: 3rem;
  width: auto;
  display: inline-block;
  margin-left: 1rem;
}

/*footer終了*/

@media (max-width: 768px) {
  .index-nav {
    display: flex;
  }

}

@media (max-width: 599px) {

  .main-visual {
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
  }


  .girl {
    min-width: 270%;
    margin-left: -3rem;
    bottom: -1rem;
    /*
    position: absolute;
    z-index: 21;
    left: -15rem;
    bottom: -30px;*/
    /* 上から画像を表示するアニメーション */
    animation-name: girlAnime2;
    animation-duration: 3.2s;
    animation-fill-mode: forwards;
    opacity: 0;

    position: absolute;
    top: 30vh;
    left: -50vw;
  }

  @keyframes girlAnime2 {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  h1#obi {
    top: 0;
    left: 0;
    height: 100vh;
    position: fixed;
    z-index: 20;
  }

  .top {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 15%;
    right: 0;
    height: 85%;

  }

  .RECREATION {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    /* height: 100%; */
    /* margin-top: -10.2rem;
    margin-left: 12vh;
    margin-bottom: 50px; */
    font-size: 100px;
    position: initial;
    text-align: unset;

    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    line-height: 1;
  }

  .date {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    position: initial;
    /*
    position: relative left 50px;
    padding-left: 67vw;*/
    padding-top: 0;
    top: 30px;
    font-size: 30px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  .scrolldown2 {
    display: none;
  }

  .daytime {
    display: none;
  }


  .index-nav ul {
    display: block;
  }

  div.index-nav {
    height: 100vh;
  }

  p.day {
    display: none;
  }


  .menu {
    display: none;
  }

  div#backimage {
    background-image: url(../image/back2.png);
    height: 100vh;
    background-size: 100%;
    display: none;
  }

  .index-nav nav {
    margin: 4rem 5rem 0 4rem;
  }

  .index-nav ul li {
    margin: 0 1rem 1.6rem 1rem;
  }

  .index-nav ul li a {
    font-size: 17px;
    padding: 0.8rem;
    width: 10rem;
  }

  #attendance-menu {
    font-size: 17px;
    padding: 0.8rem;
    width: 10rem;
  }

  .top-link a {
    display: none;
  }

  footer {
    display: none;
    z-index: 30;
  }

  /* ドロワメニュー */
  #nav-toggle {
    position: absolute;
    top: 25px;
    right: 25px;
    height: 32px;
    cursor: pointer;

    padding: 12px 10px 11px 10px;

    /* 全体の背景部分 */
    border-radius: 5px;
  }

  #nav-toggle>div {
    position: relative;
    width: 36px;
  }

  #nav-toggle span {
    width: 150%;
    height: 3px;
    left: 0;
    display: block;
    background: #333;
    /* ドロワの三本線の色 */
    position: absolute;
    -webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
    transition: top .5s ease, -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out, top .5s ease;
    transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    top: 0;
  }

  #nav-toggle span:nth-child(2) {
    top: 14px;
  }

  #nav-toggle span:nth-child(3) {
    top: 28px;
  }

  #nav-toggle:hover span:nth-child(1) {
    top: 4px;
  }

  #nav-toggle:hover span:nth-child(3) {
    top: 23px;
  }

  .open #nav-toggle span {
    background: #fff;
    /* タップした後のドロワのバッテン線の色 */
  }

  .open #nav-toggle span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* z-index */
  #nav-toggle {
    z-index: 1000;
  }

  #container {
    z-index: 900;
  }

  #drawer-nav {
    background: #000;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: -webkit-box;
    display: flex;
    visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 24px;
    opacity: 0;
    -webkit-transition: opacity .6s ease, visibility .6s ease;
    transition: opacity .6s ease, visibility .6s ease;
  }

  .sincyaku {
    color: yellow;
  }

  .sincyaku:hover {
    color: rgb(156, 156, 0);
  }

  #drawer-nav ul {
    padding-left: 0;
  }

  #drawer-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0;
    -webkit-transition: color .6s ease;
    transition: color .6s ease;
  }

  #drawer-nav a:hover {
    color: #666;
  }

  #drawer-nav ul {
    list-style: none;
  }

  #drawer-nav ul li {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: opacity .2s ease, -webkit-transform .6s ease;
    transition: opacity .2s ease, -webkit-transform .6s ease;
    transition: transform .6s ease, opacity .2s ease;
    transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
  }

  #drawer-nav ul li:nth-child(2) {
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
  }

  #drawer-nav ul li:nth-child(3) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
  }

  #drawer-nav ul li:nth-child(4) {
    -webkit-transition-delay: .45s;
    transition-delay: .45s;
  }

  #drawer-nav ul li:nth-child(5) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
  }

  #drawer-nav ul li:nth-child(6) {
    -webkit-transition-delay: .75s;
    transition-delay: .75s;
  }

  #drawer-nav ul li:nth-child(7) {
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
  }

  /* open */
  .open {
    overflow: hidden;
  }

  .open #drawer-nav {
    visibility: visible;
    opacity: 1;
  }

  .open #drawer-nav li {

    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
    transition: opacity .9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity .9s ease;
    transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
  }

  .han {
    display: block;
  }

  #mobile {
    display: none;
    top: 0;
    left: 0;
    width: 75%;
    padding-left: 70px;
    padding-top: 30px;
  }



}