@charset "UTF-8";

body {
    font-family: sans-serif;
}

/* *{ 
    outline: 2px red solid;
}*/
/** {
    padding: 0;
    margin: 0;
    }*/
/*header*/
html {
    scroll-behavior: smooth;
}

#sincyaku {
    color: #f8ff2b;
}

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

header {
    background-color: #000;
    height: 4rem;
    align-items: center;
    z-index: 8;
    position: fixed;
    width: 100%;
}

.gnav {
    line-height: 4rem;
}

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

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

.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終了*/

p {
    font-family: 'Noto Sans JP', sans-serif;
    /* padding: 0 2rem; */
}

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

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

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

.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-size: 2.2rem;
    margin: 0.3rem auto;
    white-space: nowrap;
    -webkit-text-stroke: 1px #000;
}

/*左右のバナー終了*/
/*全体の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: 16px;
}

/*index.html*/
.girl {
    width: 500px;
    height: 500px;
    z-index: 8;
    position: absolute;
    left: 0;
    top: 30px;
    /* 上から画像を表示するアニメーション */
    animation-name: girlAnime;
    animation-duration: 1.0s;
    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: 10px;
    bottom: 10px;
    /*テキストの形状*/
    color: #000;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    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: 0;
    left: 0;
    /*線の形状*/
    width: 2px;
    height: 150px;
    background: #000;
}

.RECREATION {
    font-size: 10rem;
    margin-top: 0;
    width: 100%;
    text-align: right;
    z-index: 7;
    position: relative;
}

.RECREATION {
    margin: 0 auto 40px;
    text-align: center;
}

.date {
    text-align: right;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 20rem;
    z-index: 7;
}

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

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

}

/*幅は適当*/
.index-nav ul {
    width: 41rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-image: url(../image/backgroundimage.png);
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-size: cover;
}

.index-nav ul li {
    width: 15rem;
    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:nth-of-type(8) {
    order: 8;
}

.index-nav ul li a {
    display: block;
    text-align: center;
    width: 15rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    background-color: #fff;
    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: #000;
    background-color: #f8ff2b;
    text-decoration: none;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    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: #95ff75;
    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: #000;
    background-color: #f8ff2b;
    text-decoration: none;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 1rem 0;
    z-index: 7;
}

/*プログラム日程部分のcss*/
.daytime {
    text-align: right;
    z-index: 8;
}

.day {
    font-size: 35px;
    font-weight: 600;
    margin: 10px 0;
}

/*開始・終了を縦書きに設定*/
.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 {
    z-index: 7;
    font-size: 10rem;
    text-align: right;
    width: unset;
}

/*index.html終了*/
/*map.html*/
.map {
    display: flex;
    justify-content: space-between;
}

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

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

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

.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;
}

/* 
#box-a {
  width: 100%;
  height: 100vh;
  color: #fff;
  font-size: 3rem;
}
#box-b {
  width: 100%;
  height: 100vh;
  color: #fff;
  font-size: 3rem;
} */
/*↓↓↓↓↓↓↓↓ボタンのスタイル*/
.arrow-btn {
    position: fixed;
    /*ボタンの位置をウィンドウに対して固定で表示*/
    right: 5vw;
    bottom: 5vw;
    width: 5rem;
    height: 5rem;
    background-image: url(../image/arrow-down.svg);
    /*初期状態では下向きの矢印を背景画像で表示*/
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 12;
}

/*↓↓↓↓↓↓↓↓ボタンのにマウスが乗ったらコントラストを強くして色を変えている*/
.arrow-btn:hover {
    filter: contrast(200);
}

/*↓↓↓↓↓↓↓↓スクロール量が500を超えたら上向の矢印に画像を切り替えるためのclass名 500を超えたらこのクラス名が付いてスタイルが適応される*/
.arrow-btn-up {
    background-image: url(../image/arrow-up.svg);
}

/*map.html終了*/
/*program.html*/
/*ホバー時のcss*/
.program {
    display: flex;
    flex-wrap: wrap;
}

.program-box {
    border: 1px solid #000;
    border-radius: 0%;
    width: 33.33%;
    min-height: 400px;
    overflow: hidden;
    background-color: #fff;
    color: #000;
    position: relative;
    /* 相対位置指定 */
}

.program-name {
    text-align: right;
    padding: 2rem 0;
}

.program-name p {
    padding-right: 1rem;
    font-size: 20px;
    font-weight: 600;
}

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

.program-box h3 {
    position: relative;
    padding: 0.5rem 10rem 0.5rem 0.5rem;
    border-bottom: 2px solid #000;
    font-size: 2rem;
    font-weight: normal;
}

.program-box h3::after {
    content: "";
    display: block;
    position: absolute;
    right: 10px;
    bottom: -10px;
    width: 80px;
    height: 60px;
    background-image: url("../image/cat-icon2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

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

.start-time {
    font-size: 46px;
    font-weight: 600;
    font-family: unset;
}

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

.program-img {
    width: 100%;
    vertical-align: middle;
    z-index: 9;
    border-bottom: 2px solid #fff;
}

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

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

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

.ground-direction {
    font-size: 2rem;
    font-weight: 500;
    padding: 1rem 0;
}

.explanation {
    margin: 0;
}

.program-btn {
    background-color: #000;
    width: 100%;
    min-height: 8rem;
    color: #fff;
    font-size: 2rem;
    border-radius: 0;
    bottom: 0;
    border: 1px solid #fff;
    margin-bottom: 0;
    margin-top: 2rem;
}

.program-btn:hover {
    background-color: #636363;
    width: 100%;
    min-height: 8rem;
    color: #fff;
    font-size: 2rem;
    border-radius: 0;
    bottom: 0;
    margin-bottom: 0;
    margin-top: 2rem;
}

/* ポップアップモーダルcss */
.popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: 0.64s ease-in-out;
}

.popup h2 {
    display: block;
    text-align: center;
    font-size: 26px;
    border-bottom: 2px solid #000;
    /* padding-top: 55%; */
}

.popup-inner {
    position: relative;
    bottom: -100vw;
    right: -100vh;
    display: flex;
    align-items: center;
    max-width: 800px;
    max-height: 600px;
    width: 60%;
    height: 80%;
    background-color: #fff;
    transform: rotate(32deg);
    transition: 0.64s ease-in-out;
    /* margin-top: 12rem; */
}

.popup:target {
    visibility: visible;
    opacity: 1;
}

.popup:target .popup-inner {
    bottom: 0;
    right: 0;
    transform: rotate(0);
}

.popup__close {
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 3rem;
    font-size: 2.7rem;
    font-weight: 300;
    border-radius: 50%;
    background-color: #434343;
    z-index: 4;
    color: #fff;
    line-height: 3rem;
    cursor: pointer;
    text-decoration: none;

}

.popup__close a {
    text-align: center;
    padding: 0 auto;
}

.popup-explanation {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    color: #000;
}

.maruninn-img {
    display: flex;
    width: 50%;
}

.explanation p {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
}

.explanation h2 {
    margin: 2rem auto;
    font-size: 2.2rem;
}

.explanation h3 {
    margin: 2rem auto;
    font-size: 2.0rem;
    font-weight: 600;
}

/* ポップアップモーダルcss終了 */

/*program.html終了*/
/*coution.html*/
.coution-body {
    background-image: url(../image/backgroundimage.png);
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-size: cover;
}

.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: 0;
    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;
}

/*coution.html終了*/
/* best-photo.index */
.photo-main {
    width: 100%;
}

.photo-box {
    display: flex;

}

.photo-info {
    align-items: center;
    flex-grow: 1;
    border-left: 1px solid #000;
    padding: 0 2rem;
}

.photo-info h2 {

    font-size: 24px;
    text-align: center;
    border-bottom: 2px solid #000;
}

.photo-info p {
    padding-top: 3rem;
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
}

.photo-title {
    font-size: 6rem;
    width: 100%;
    border: 1px solid #000;
    background-image: url(../image/backgroundimage.png);
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-size: cover;
}

.photo-section {
    text-align: center;
    flex-grow: 1;
    padding-top: 3rem;
    padding: 0 2rem;
}

.photo-section h2 {
    border-bottom: 2px solid #000;
}


/* .photo-title h1{
  width: 100%;
  flex-grow: 1;
} */

.photo-content {
    display: flex;
    margin: 10% 5%;

}


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

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

.attendance-body {
    background-image: url(../image/backgroundimage.png);
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    background-size: cover;
}

.attendance-player {
    display: flex;

}

.section-box2 {
    background-color: #000;
    color: #fff;
    border-radius: 30px 0px 30px 30px;
    margin: 3rem auto;
    font-size: 1.3rem;
    text-align: left;
    padding: 1rem 0 0 1rem;
    min-width: 500px;
    min-height: 5rem;
}

.attendance-main {
    margin: 0 auto;
    padding: 2rem 0 2rem 6rem;
}

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



/* プルダウンメニューcss */

.accordion-004 {
    max-width: 500px;
    margin-bottom: 7px;
    /* border: 2px solid #ffffff; */
    border-radius: 25px;
    background-color: #000;
    text-align: left;
    padding-left: 2rem;
}

.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.accordion-004 summary::-webkit-details-marker {
    display: none;
}

.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffffb3;
    border-right: 3px solid #ffffffb3;
    content: '';
    transition: transform .3s;
}

.accordion-004[open] summary::after {
    transform: rotate(225deg);
}

.accordion-004 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #ffffff;
    transition: transform .5s, opacity .5s;
}

.accordion-004[open] p {
    transform: none;
    opacity: 1;
}

.accordion-004 a {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin: 1rem 0 2rem 0;

}

.accordion-004 br {
    display: block;
    content: "";
    margin: 20px 0;
}

.accordion-004 a:hover {
    color: yellow;
    font-size: 25px;
    font-weight: 600;
    margin: 1rem 0 2rem 0;

}

/* プルダウンメニューcss終了 */
/*attendanceplayer.html終了*/
/*aboutrecreation.html*/
.about {
    margin-top: 3rem;
    padding-left: 3rem;

}

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

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

#about {
    font-size: 3.6rem;
}


/*aboutrecreation.html終了*/
/* cosplay.html */
.cosplay {
    display: flex;
}

.cosplay-title {
    width: 100%;

    background-image: url(../image/background-yoko\ \(1\).png);
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
    background-size: cover;

}

.cosplay h1 {
    width: 100%;
}


.cosplay-main {
    width: 100%;
    margin-top: 50px;
}

.cosplay-section {
    margin-top: 5rem;
    margin-bottom: 2rem;
    padding-left: 5rem;
    text-align: center;

}

.cosplay-section h2 {
    text-align: center;
}

h4 {
    padding-left: 0px;
}

.centense {
    display: block;
    margin: 2rem 0;
    font-size: 20px;
    text-align: left;
}

.red-font {
    color: red;
}

.cosplay-section h2 {
    display: inline-block;
    width: 42%;
    height: 5rem;
    border-bottom: 2px solid #000;
    font-size: 3rem;

}

.cosplay-section img {
    width: 90%;
    margin: 2rem auto;
}

button {
    background-color: #000;
    border-radius: 20px 0px 20px 20px;
    padding: 2rem 1rem;
    border: none;
    margin-bottom: 3rem;
    color: #fff;
}

button a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 50px;
}

button:hover {
    background-color: #95ff75;
    border: none;
}

button a:hover {
    color: #000;
}

/* cosplay.html終了 */
/*footer*/
footer {
    position: relative;
    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終了*/
/* スマホ用レスポンシブcss */
@media only screen and (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }

    header {
        background-color: #000;
        height: 4rem;
        align-items: center;
        z-index: 8;
    }

    .gnav {
        line-height: 4rem;
    }

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

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

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

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

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

    /*body終了*/

    p {
        font-family: 'Noto Sans JP', sans-serif;
    }

    /* 親要素を横並びに配置（タイトル・コンテンツ・#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; */
        /* height: 100vh; */
        color: #000;
        /* position: absolute;
      right: 0; */
        background-image: url(../image/backgroundimage.png);
        background-color: rgba(255, 255, 255, 0.5);
        background-blend-mode: lighten;
        background-size: cover;
        z-index: 7;
        /* margin: 0 0 0 auto; */
    }

    .hal {
        display: none;
        /* -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; */

    }

    /*左右のバナー終了*/
    /*全体の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: 16px;
    }

    /*index.html*/
    .girl {
        width: 90%;
        /* height: 60%; */
        z-index: 8;
        position: absolute;
        left: 0;
        animation-name: girlAnime;
        animation-duration: 1.0s;
        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: 10px;
        bottom: 10px;
        /*テキストの形状*/
        color: #000;
        font-size: 1.3rem;
        letter-spacing: 0.05em;
        /*縦書き設定*/
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    /* 丸の描写 */
    .scrolldown2:before {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: -4px;
        /*丸の形状*/
        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: 0;
        left: 0;
        /*線の形状*/
        width: 2px;
        height: 150px;
        background: #000;
    }

    .RECREATION {
        font-size: 5rem;
        margin-top: 0;
        width: 100%;
        text-align: right;
        z-index: 7;
        position: relative;
    }

    .RECREATION {
        margin: 0 auto 40px;
        text-align: center;
    }

    .date {
        text-align: right;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 0;
        padding-top: 20rem;
        z-index: 7;
    }



    /*プログラム日程部分のcss*/
    .daytime {
        text-align: right;
        z-index: 8;
    }

    .day {
        font-size: 35px;
        font-weight: 600;
        margin: 10px 0;
    }

    /*開始・終了を縦書きに設定*/
    .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 {
        z-index: 7;
        font-size: 10rem;
        text-align: right;
        width: unset;
    }

    /*index.html終了*/
    /*map.html*/
    /* .map {
        display: flex;
         justify-content: space-between;
    }  */

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

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

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

    .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;
    }

    /* 
  #box-a {
    width: 100%;
    height: 100vh;
    color: #fff;
    font-size: 3rem;
  }
  #box-b {
    width: 100%;
    height: 100vh;
    color: #fff;
    font-size: 3rem;
  } */
    /*↓↓↓↓↓↓↓↓ボタンのスタイル*/
    .arrow-btn {
        position: fixed;
        /*ボタンの位置をウィンドウに対して固定で表示*/
        right: 5vw;
        bottom: 5vw;
        width: 5rem;
        height: 5rem;
        background-image: url(../image/arrow-down.svg);
        /*初期状態では下向きの矢印を背景画像で表示*/
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 12;
    }

    /*↓↓↓↓↓↓↓↓ボタンのにマウスが乗ったらコントラストを強くして色を変えている*/
    .arrow-btn:hover {
        filter: contrast(200);
    }

    /*↓↓↓↓↓↓↓↓スクロール量が500を超えたら上向の矢印に画像を切り替えるためのclass名 500を超えたらこのクラス名が付いてスタイルが適応される*/
    .arrow-btn-up {
        background-image: url(../image/arrow-up.svg);
    }

    /*map.html終了*/
    /*program.html*/
    /*ホバー時のcss*/
    .program {
        display: flex;
        flex-wrap: wrap;
    }

    .program-box {
        border: 1px solid #000;
        border-radius: 0%;
        width: 33.33%;
        min-height: 400px;
        overflow: hidden;
        background-color: #fff;
        color: #000;
        position: relative;
        /* 相対位置指定 */
    }

    .program-name {
        text-align: right;
        padding: 2rem 0;
    }

    .program-name p {
        padding-right: 1rem;
        font-size: 20px;
        font-weight: 600;
    }

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

    .program-box h3 {
        position: relative;
        padding: 0.5rem 10rem 0.5rem 0.5rem;
        border-bottom: 2px solid #000;
        font-size: 2rem;
        font-weight: normal;
    }

    .program-box h3::after {
        content: "";
        display: block;
        position: absolute;
        right: 10px;
        bottom: -10px;
        width: 80px;
        height: 60px;
        background-image: url("../image/cat-icon2.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
    }

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

    .start-time {
        font-size: 46px;
        font-weight: 600;
        font-family: unset;
    }

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

    .program-img {
        width: 100%;
        vertical-align: middle;
        z-index: 9;
        border-bottom: 2px solid #fff;
    }

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

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

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

    .ground-direction {
        font-size: 2rem;
        font-weight: 500;
        padding: 1rem 0;
    }

    .explanation {
        margin: 0;
    }

    .program-btn {
        background-color: #000;
        width: 100%;
        min-height: 8rem;
        color: #fff;
        font-size: 2rem;
        border-radius: 0;
        bottom: 0;
        border: 1px solid #fff;
        margin-bottom: 0;
        margin-top: 2rem;
    }

    .program-btn:hover {
        background-color: #636363;
        width: 100%;
        min-height: 8rem;
        color: #fff;
        font-size: 2rem;
        border-radius: 0;
        bottom: 0;
        margin-bottom: 0;
        margin-top: 2rem;
    }

    /* ポップアップモーダルcss */
    .popup {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 10;
        visibility: hidden;
        opacity: 0;
        transition: 0.64s ease-in-out;
    }

    .popup h2 {
        display: block;
        text-align: center;
        font-size: 26px;
        border-bottom: 2px solid #000;
        /* padding-top: 55%; */
    }

    .popup-inner {
        position: relative;
        bottom: -100vw;
        right: -100vh;
        display: flex;
        align-items: center;
        max-width: 800px;
        max-height: 600px;
        width: 60%;
        height: 80%;
        background-color: #fff;
        transform: rotate(32deg);
        transition: 0.64s ease-in-out;
        /* margin-top: 12rem; */
    }

    .popup:target {
        visibility: visible;
        opacity: 1;
    }

    .popup:target .popup-inner {
        bottom: 0;
        right: 0;
        transform: rotate(0);
    }

    .popup__close {
        position: absolute;
        right: -1rem;
        top: -1rem;
        width: 3rem;
        font-size: 2.7rem;
        font-weight: 300;
        border-radius: 50%;
        background-color: #434343;
        z-index: 4;
        color: #fff;
        line-height: 3rem;
        cursor: pointer;
        text-decoration: none;

    }

    .popup__close a {
        text-align: center;
        padding: 0 auto;
    }

    .popup-explanation {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        color: #000;
    }

    .maruninn-img {
        display: flex;
        width: 50%;
    }

    .explanation p {
        font-size: 20px;
        font-weight: 600;
        text-align: left;
        padding: 1rem 2rem;
        margin-bottom: 1.5rem;
    }

    .explanation h2 {
        margin: 2rem auto;
        font-size: 2.2rem;
    }

    .explanation h3 {
        margin: 2rem auto;
        font-size: 2.0rem;
        font-weight: 600;
    }

    /* ポップアップモーダルcss終了 */

    /*program.html終了*/
    /*coution.html*/
    .coution-body {
        background-image: url(../image/backgroundimage.png);
        background-color: rgba(255, 255, 255, 0.5);
        background-blend-mode: lighten;
        background-size: cover;
    }

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



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

    .coution {
        font-size: 8rem;
        color: #000;
        margin: 0;
        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: rgb(0, 255, 51);
    }

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

    /*coution.html終了*/
    /* best-photo.index */
    .photo-main {
        width: 100%;
    }

    .photo-box {
        display: flex;

    }

    .photo-info {
        align-items: center;
        flex-grow: 1;
        border-left: 1px solid #000;
        padding: 0 2rem;
    }

    .photo-info h2 {

        font-size: 24px;
        text-align: center;
        border-bottom: 2px solid #000;
    }

    .photo-info p {
        padding-top: 3rem;
        font-size: 3rem;
        text-align: center;
        font-weight: 600;
    }

    .photo-title {
        font-size: 6rem;
        width: 100%;
        border: 1px solid #000;
        background-image: url(../image/backgroundimage.png);
        background-color: rgba(255, 255, 255, 0.5);
        background-blend-mode: lighten;
        background-size: cover;
    }

    .photo-section {
        text-align: center;
        flex-grow: 1;
        padding-top: 3rem;
        padding: 0 2rem;
    }

    .photo-section h2 {
        border-bottom: 2px solid #000;
    }


    /* .photo-title h1{
    width: 100%;
    flex-grow: 1;
  } */

    .photo-content {
        /* display: flex; */
        margin: 10% 5%;

    }


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

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

    .attendance-body {
        background-image: url(../image/backgroundimage.png);
        background-color: rgba(255, 255, 255, 0.5);
        background-blend-mode: lighten;
        background-size: cover;
    }

    .attendance-player {
        display: flex;

    }

    .section-box2 {
        background-color: #000;
        color: #fff;
        border-radius: 30px 0px 30px 30px;
        margin: 3rem auto;
        font-size: 1.3rem;
        text-align: left;
        padding: 1rem 0 0 1rem;
        min-width: 500px;
        min-height: 5rem;
    }

    .attendance-main {
        margin: 0 auto;
        padding: 2rem 0 2rem 6rem;
    }

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



    /* プルダウンメニューcss */

    .accordion-004 {
        max-width: 500px;
        margin-bottom: 7px;
        /* border: 2px solid #ffffff; */
        border-radius: 25px;
        background-color: #000;
        text-align: left;
        padding-left: 2rem;
    }

    .accordion-004 summary {
        display: flex;
        /* justify-content: space-between; */
        align-items: center;
        position: relative;
        padding: 1em 2em;
        color: #ffffff;
        font-weight: 600;
        cursor: pointer;
    }

    .accordion-004 summary::-webkit-details-marker {
        display: none;
    }

    .accordion-004 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 12px;
        height: 12px;
        margin-left: 10px;
        border-bottom: 3px solid #ffffffb3;
        border-right: 3px solid #ffffffb3;
        content: '';
        transition: transform .3s;
    }

    .accordion-004[open] summary::after {
        transform: rotate(225deg);
    }

    .accordion-004 p {
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: .3em 2em 1.5em;
        color: #ffffff;
        transition: transform .5s, opacity .5s;
    }

    .accordion-004[open] p {
        transform: none;
        opacity: 1;
    }

    .accordion-004 a {
        color: #fff;
        font-size: 25px;
        font-weight: 600;
        margin: 1rem 0 2rem 0;

    }

    .accordion-004 br {
        display: block;
        content: "";
        margin: 20px 0;
    }

    .accordion-004 a:hover {
        color: rgb(9, 255, 0);
        font-size: 25px;
        font-weight: 600;
        margin: 1rem 0 2rem 0;

    }

    /* プルダウンメニューcss終了 */
    /*attendanceplayer.html終了*/
    /*aboutrecreation.html*/
    .about {
        margin-top: 3rem;
        padding-left: 3rem;

    }

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

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

    #about {
        font-size: 3.6rem;
    }


    /*aboutrecreation.html終了*/
    /* cosplay.html */
    .cosplay {
        display: flex;
    }

    .cosplay-title {
        width: 100%;
        border: 1px solid #000;
        background-image: url(../image/backgroundimage.png);
        background-color: rgba(255, 255, 255, 0.5);
        background-blend-mode: lighten;
        background-size: cover;

    }

    .cosplay h1 {
        width: 100%;
    }


    .cosplay-main {
        width: 100%;
    }

    .cosplay-section {
        margin-top: 3rem;
        text-align: left;

    }

    .centense {
        margin: 2rem 0;
        font-size: 20px;
    }

    .cosplay-section h2 {
        display: inline-block;
        width: 50%;
        height: 3.8rem;
        border-bottom: 2px solid #000;

    }

    button {
        background-color: #000;
        border-radius: 10px 0px 10px 10px;
        padding: 0.7rem 2.2rem;
        border: none;
        margin-bottom: 3rem;
    }

    button a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        /* padding: 10px 30px; */
    }

    button:hover {
        background-color: rgb(58, 255, 81);
        border: none;
    }

    button a:hover {
        color: #000;
    }

    /* cosplay.html終了 */
    /*footer*/
    footer {
        position: relative;
        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終了*/
}

/* タブレット用css */
@media only screen and (max-width: 768px) {

    /*
==================
ハンバーガーメニュー
==================
*/



    .star {
        display: none;
    }

    .nav {
        position: fixed;
        right: -320px;
        /* 右から出てくる */
        top: 0;
        width: 320px;
        /* スマホに収まるサイズ */
        height: 100vh;
        padding-top: 60px;
        background-color: #000000;
        transition: all .6s;
        z-index: 200;
        overflow-y: auto;
        /* メニューが多くなったらスクロールできるように */
    }

    .hamburger {
        position: absolute;
        right: 15px;
        top: 8px;
        width: 40px;
        /* クリックしやすい幅 */
        height: 40px;
        /* クリックしやすい高さ */
        cursor: pointer;
        z-index: 300;
    }

    .nav-list {
        margin: 0;
        padding: 0;
        list-style: none;
        flex-direction: column;
    }

    .nav_item {
        text-align: center;
        padding: 0 14px;
    }

    .nav_item a {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: #ffffff;
    }

    .nav_item a:hover {
        background-color: #000000;
        padding: 8px 0;
    }

    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #ffffff;
        transition: all .6s;
    }

    .hamburger_border_top {
        top: 14px;
    }

    .hamburger_border_center {
        top: 20px;
    }

    .hamburger_border_bottom {
        top: 26px;
    }

    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: #333;
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }

    /* 表示された時用のCSS */
    .nav-open .nav {
        right: 0;
    }

    .nav-open .black_bg {
        opacity: .8;
        visibility: visible;
    }

    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
    }

    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
    }

    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
    }

    h1#obi {
        height: 100%;
        font-size: 0.8rem;
    }

    .cosplay-title {
        background-image: none;
        border: none;
    }

    .cosplay {
        display: block;
        width: 100%;
        padding-top: 1rem;
        padding-right: 20px;
        background-image: url(../image/backgroundimage.png);
        background-color: rgba(255, 255, 255, 0.5);
        background-blend-mode: lighten;
        background-size: cover;
        font-size: 5rem;
        text-align: center;
    }

    .cosplay-section {
        margin-left: 50px;
        padding: 0 1rem;
        text-align: center;
    }

    .centence {
        text-align: left;
    }

    .cosplay-section h2 {
        width: 100%;
        font-size: 26px;
        height: auto;
    }

    .cosplay-section p {
        font-size: 17px;
    }

    button a {
        padding: 0;
    }

    footer {
        display: block;
        position: relative;

        padding: 3rem auto;
        background-color: #000;
        text-align: center;
        color: #fff;
        width: 100%;

    }
}


/* スマホ用css */
@media only screen and (max-width: 599px) {
    h1#obi {
        height: 100%;
        font-size: 0.8rem;
    }

    .cosplay-title {
        background-image: none;
        border: none;
    }

    .cosplay {
        display: block;
        width: 100%;
        padding-top: 1rem;
        padding-right: 20px;
        background-image: url(../image/backgroundimage.png);
        background-color: rgba(255, 255, 255, 0.7);
        background-blend-mode: lighten;
        background-size: cover;
        font-size: 3rem;
        text-align: center;
    }

    .cosplay-section {
        margin-left: 30px;
        padding: 0 1rem;
    }

    .cosplay-section h2 {
        text-align: center;
    }

    .centense {
        display: block;
        margin: 2rem 0;

        font-size: 20px;
        text-align: left;
    }

    .cosplay-section h2 {
        display: inline-block;
        width: 90%;
        height: 2.7rem;
        border-bottom: 2px solid #000;
        font-size: 1.3rem;

    }

    .cosplay-section p {
        font-size: 13px;
        padding-bottom: 10px;
    }

    .cosplay-section img {
        width: 98%;
        margin: 2rem auto;
    }


    button a {
        padding: 0;
    }

    footer {
        display: block;
        position: relative;
        padding: 3rem auto;
        background-color: #000;
        text-align: center;
        color: #fff;
        width: 100%;

    }

    p {
        padding-left: 20px;
    }

    h4 {

        padding: 0.6rem 0;
        font-size: 15px;
    }


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

    .top-link {
        padding-left: 0;
    }

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

    .top-link p {
        padding: 0;
    }

    .top-mark {
        height: 2rem;
        width: auto;
        margin-left: 1rem;
    }
}