/* 全てのページ */
@font-face {
    font-family: "木漏れ日ゴシックP";
    src: url("../font/komorebi-gothic-P.ttf");
}
@font-face {
    font-family: "マカポップ";
    src: url("../font/851MkPOP_101.ttf");
}

html{
    font-size: 16px;
    font-family: '木漏れ日ゴシックP';
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body{
    margin: 0 0 0 0;
}

p, li, td{
    line-height: 1.7;
}

a:link{
    color:#d0576b;
    text-decoration: none;
}
a:visited{
    color:#d0576b;
    text-decoration: none;
}
a:hover{
    color:#d0576b;
    text-decoration: underline;
}
a:active{
    color:#d0576b;
    text-decoration: underline;
}

img {
    max-width: 100%;
}
  
/* 全てのページ ヘッダー */
header .title{
    font-family: 'マカポップ';
    font-size: 5rem;
    color: #2b2b2b;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: aliceblue;

    background-color: #00a3af;
}
header .title p{
    margin: 0 50px;
}
/* ヘッダー ナビ */
.nav {
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}
.lists {
    padding: 0;
    display: flex;
    list-style: none;
}
.list {
    width: 20%;
    height: 60px;
    background-color: #2b2b2b;
    position: relative;
    transition: all .3s;
}
.list:hover {
    background-color: #7d7d7d;
}
.list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.list:hover::before {
    background-color: aliceblue;
}
.list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: aliceblue;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.list:hover a {
    color: aliceblue;
}

/* 全てのページ メイン */
main{
    margin: 100px auto;
    max-width: 1000px;
}

main .title{
    font-family: 'マカポップ';
    text-align: center;
}

main .under{
    background: linear-gradient(transparent 70%, #eebbcb 70%);
  }
main .line{
    border-bottom: 2px dotted #00a3af;
  }

/* 全てのページ フッター */
footer{
    text-align: center;
    padding: 25px 0 50px;
    background-color: #00a3af;
}

/* トップへ戻るボタン */
.topup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
  }
  .topup a {
    background: #00a3af;
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 28px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
  }
  .topup a:hover {
    text-decoration: none;
    opacity: .5;
  }

/* 個別のスタイル */
/* index.html */
main .welcome{
    text-align: center;
}

main #news{
    text-align: center;
    position: relative;
    background: #fffff2;/*見出しの色*/
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
}
main #news::before,
main #news::after {
  position: absolute;
  content: '';
  width: 0;
  height: 60px;/*ラインの長さ*/
  border-left: 1px solid #e60012;/*ラインの太さ・形状・色*/
  transform: rotate(-45deg);/*ラインの傾き*/
}
main #news::before {/*左のライン位置*/
  bottom: -20px;
  left: 10px;
}
main #news::after {/*右のライン位置*/
  top: -20px;
  right: 10px;
}

/* rules.html */
.rulesTitle {
    position: relative;
    color:#d0576b;
    text-align: center;
    padding: 0 auto;/*文字数が増えた時に線に被らないように線幅以上のサイズで設定*/
}
.rulesTitle:before,
.rulesTitle:after {
    position: absolute;
    content: '';
    top: 50%;
    width: 250px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d0576b 10%, #d0576b 30%, transparent);/*グラデーションを設定*/
}
.rulesTitle:before {
    left:0;
    transform: rotate(180deg);/*ラインを反転*/
}
.rulesTitle:after {
    right: 0;
}
.read{
    text-align: center;
}

.rule {
    position: relative;
    border: 1px solid #7d7d7d;
    border-radius: 5px;
    box-shadow: 2px 2px 0 0 #7d7d7d;
    padding: 5px 20px;
  }
  .rule::before,
  .rule::after,
  .rule span::before,
  .rule span::after {
    position: absolute;
    content: '';
    width: 10px;
    border-top: 1px solid #7d7d7d;
    transform: rotate(-45deg);
  }
  .rule span::before,
  .rule span::after {
    transform: rotate(45deg);
  }
  .rule::before {
    top: 10px;
    left: 5px;
  }
  .rule::after {
    bottom: 10px;
    right: 5px;
  }
  .rule span::before {
    top: 10px;
    right: 5px;
  }
  .rule span::after {
    bottom: 10px;
    left: 5px;
  }
  
/* lounge.html */
.charaLists {
    display: flex;
    list-style: none;
}
.charaList {
    width: 100%;
    height: 40px;
    text-align: center;
    position: relative;
    font-size: 1.2rem;
}

.chara{
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    padding: 100px 0;
}

.img {
    margin: auto;
    display: block;
}

.icon{
    max-width: 75%;
    margin: auto;
    display: block;
    clip-path: circle(50%);
}

.setting{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.memo {
    position: relative;
    margin: 3em 0 1em 0;
    background: #fffff2;
    box-shadow: 0 2px 3px rgba(0,0,0,.22);
    padding: 22px 8px;
    background-color: #fffff2;
  }
  .memo:after {
    position: absolute;
    content: "";
    top: 25px;
    width: 30%;
    height: 35px;
    opacity: 0.3;
    margin: -35px auto 10px 35%;
    background: #db7093;
    transform: rotate(-2deg);
    left: 10px;
    right: 10px;
  }
  .memo p {
    margin: 0 20px;
    padding: 0;
  }

.name{
    font-family: 'マカポップ';
    font-size: 2em;
}

.button{
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    max-width: 220px;
    padding: 10px 25px;
    color: #2b2b2b;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    box-shadow: 5px 5px 0 #2b2b2b;
    border-radius: 50px;
}
.button:hover {
  background-color: #7d7d7d;
  box-shadow: 0 0 0;
  transform: translate(5px, 5px);
}
.button:after {
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}

.chara .memo .audio{
    display: block;
    grid-column: span 2;
}

/* lounge.html それぞれのカラーコード */
.kirino{
    color: #c4a3bf;
}

.kayuki{
    color: #e95464;
}

.yuzuki{
    color: #f8e58c;
}

.inSecret a{
    font-size: 2rem;
    color: #00a3af;
}

/* exhibition.html */

.movie{
text-align: center;
}

/* secret.php */
.secret{
    font-size: 2rem;
    border: #ffb6c1 solid 1px; 
    border-left: #ffb6c1 solid 10px; 
    padding: 20px; 
    background: #fff; 
    font-size: 100%;
}

@media(max-width: 767px){
    
}