@charset "UTF-8";

/* ----------------------------------------共通スタイル-------------------------------------------------- */
:root {
    --slcolor: #d37c1c;
    --lcolor: #687842; 
    --mcolor: #475674;
}
html{
	scroll-behavior: smooth;
}
main{
    color: #333;
}
header{
    height: 60px;
    width: 100%;
    background: #333;
}
.tx-center{
    text-align: center;
}
a{
    text-decoration: none;
    cursor: pointer;
}
.m-plus-1p-thin {
    font-family: "M PLUS 1p", serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .m-plus-1p-light {
    font-family: "M PLUS 1p", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .m-plus-1p-regular {
    font-family: "M PLUS 1p", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .m-plus-1p-medium {
    font-family: "M PLUS 1p", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .m-plus-1p-bold {
    font-family: "M PLUS 1p", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .m-plus-1p-extrabold {
    font-family: "M PLUS 1p", serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .m-plus-1p-black {
    font-family: "M PLUS 1p", serif;
    font-weight: 900;
    font-style: normal;
  }
  
h2{
    font-size: 2.5em;
    display: inline-block;
    position: relative;
    margin-bottom: 2em;
}
h2::before{
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #333;
}
h3{
    font-size: 2em;
}
@media screen and (max-width:992px) {
    h2{
        font-size: 2em;
    }
    h3{
        font-size: 1.6em;
    }
}

/* TOPに戻るボタン */
#page-top {
    position: fixed;
    right: 10px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #737373;
    padding: 0 0 0 35px;
    border-top: solid 1px;
    z-index: 500;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

/* 看板 */
.main-cover img{
    width: 100%;
    height: auto;
}
.pc-cover{
    display: block;
}
.sp-cover{
    display: none;
}
/* 看板スマホ表示 */
@media screen and (max-width:992px) {
    .sp-cover {
        display: block;
    }
    .pc-cover{
        display: none;
    }
}

.slider {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
  }
  
  .slider img {
    width: 100%;
    object-fit: cover;
  }

/* フッター */
footer{
    width: 100%;
    height: 150px;
    background: #333;
    padding: 20px;
    position: relative;
}
.footer-icon{
    position: absolute;
    bottom: 25%;
    right: 0;
    text-align: center;
    left: 0;
}

.footer-icon a:hover , .sns-item a:hover{
    opacity: .7;
    transition: .5s;
}

/* ヘッダー */
.header-icon img{
    width: 160px;
    height: auto;
    padding: .5em 0 .5em 1em;
}
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: #333;
    opacity: .9;
    transition: right 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
}
.menu.open {
    right: 0;
}
.hamburger {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 20;
} 
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
} 
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
} 
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 80px;
    font-size: 1.2em;
}
.menu li {
    padding: 20px 0;
}
.menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding-bottom: 3px;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
}
.menu li a:hover{
    background-position: bottom left;
    background-size: 100% 1px;
}
.sns-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 50px auto 0;
}
.sns-item{
    border: 1px solid #fff;
    padding: .5em;
    border-radius: 100%;
}
.sns-item img{
    width: 25px;
    height: auto;
}

/* 画像ホバー時拡大 */
.scale-img{
    overflow: hidden;
}
.scale-img img{
    width: 100%;
    height: auto;
    transition: .5s;
}
.scale-img img:hover{
    scale: 1.1;
}

/* ----------------------------------------TOPページスタイル-------------------------------------------------- */

/* ローディング */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1.5s 2.5s forwards;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  .loading__logo {
    opacity: 0;
    animation: logo_fade 2s 0.5s forwards;
    width: 220px;
    height: auto;
  }
  
  @keyframes logo_fade {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    60% {
      opacity: 1;
      transform: translateY(0);
    }
  
    100% {
      opacity: 0;
    }
  }

.slideIn{
	opacity: 0;
	transform: translateY(150px);
	transition: 0.8s;
}

/* コンセプト */

.zen-antique-regular {
    font-family: "Zen Antique", serif;
    font-weight: 400;
    font-style: normal;
}

.ebony{
    font-family: "ebony", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.message-ttl{
    font-size: 2em;
    color: #fff;
    margin: 0 auto 1.25em;
}
.message-section{
    padding: 4em 1em 3em;
    background: linear-gradient(rgb(66 66 66), rgb(118 118 118));
    color: #ffffffbf;
    text-align: center;
}
.message-tx{
    font-size: 1.1em;
}
.scroll {
    display: inline-block;
    padding-top: 70px;
    position: relative;
    margin-top: 2em;
  }
  .scroll::before {
    animation: scroll 3.5s infinite;
    border: solid #ffffff;
    border-width: 0 0 1px 1px;
    content: "";
    display: inline-block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transform: rotate(-45deg);
    width: 20px;
    height: 20px;
  }
  @keyframes scroll {
    0% {
      transform: rotate(-45deg) translate(0, 0);
    }
    80% {
      transform: rotate(-45deg) translate(-30px, 30px);
    }
    0%, 80%, 100% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
  }

  @media screen and (max-width:992px) {
    .message-tx{
        font-size: 1em;
    }
    .message-ttl{
        font-size: 1.5em;
    }
}
/* ラインナップ */

.lineup-section{
    background: #e7e7e7;
    padding: 5em 0;
}
.lineup-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
}
.lineup-item{
    max-width: 350px;
    height: 660px;
    padding: 1.5em;
    border-radius: .5em;
    position: relative;
}
.lineup-item img{
    display: block;
    margin: 0 auto .5em;
}
.lineup-item p{
    color: #fff;
    line-height: 1.7;
    font-size: 13px;
}
.lineup-item .rod-btn{
    position: absolute;
    bottom: 3%;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #fff;
    width: 200px;
    padding: 1em 0;
    color: #ffffff;
    font-weight: bold;
    transition: .5s;
}
.lineup-item .rod-btn:hover{
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
}
.sl-game{
    background: var(--slcolor);
}
.l-game{
    background: var(--lcolor);
}
.m-game{
    background: var(--mcolor);
}
/* ラインナップスマホ表示 */
@media screen and (max-width:992px) {
    .lineup-container {
        display: block;
    }
    .lineup-item{
        margin: 0 auto 2em;
    }
}

/* コンテンツ */
.contents-section{
    background: #fff;
    padding: 5em 0;
}
.contents-container{
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 1em;
}
.contents-container .contents-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.contents-container .contents-box .contents-box{
    width: 45%;
}
.contents-container .heading{
    font-size: 1.3em;
    font-weight: bold;
    color: #525252;
    margin-top: 1.5em;
}
.contents-container .sub-tx1{
    color: #525252;
    margin-bottom: 1em;
    font-weight: 500;
}
.contents-container .sub-tx2{
    color: #525252;
    margin-top: 1em;
    font-weight: bold;
    font-size: 1.2em;
}
.contents-container .sub-tx2 span{
    background: linear-gradient(transparent 70%, #ffc4c4 70%);
}
.support-tx{
    display: flex;
    align-items: center;
    grid-gap: 0 .7em;
    margin: 0 auto;
    padding: .7em;
    border-radius: 5px;
    background-color: #f3f3f3;
    border: 1px solid #c7c7c7;
    color: #3c3c3c;
    max-width: 500px;
    margin-bottom: 1em;
    font-size: 14px;
}
.support-tx::before{
    width: 16px;
    height: 8px;
    border-bottom: 2px solid #6d6d6d;
    border-left: 2px solid #6d6d6d;
    transform: rotate(-45deg) translate(2.5px, -2.5px);
    content: '';
}
.support-tx p{
    margin: 0;
    padding: 0 0 0 .7em;
    border-left: 1px solid #525252;
}
.contents-btn{
    width: 200px;
    padding: 1em;
    display: block;
    margin: 2em auto 1em;
    text-align: center;
    background: #4d4d4d;
    color: #fff;
    transition: .5s;
}
.contents-btn:hover{
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
}
/* SNS */
.sns-section{
    background: #e7e7e7;
    padding: 5em 1em 7em;
}
.sns-container{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.sns-icon{
    width: 200px;
    height: auto;
}
.sns-icon img{
    width: 70px;
    height: auto;
    margin: 0 auto;
    display: block;
}
.sns-icon img:hover{
    transform: translateY(-5px);
}
.sns-icon div{
    margin-top: 1em;
    font-size: .8em;
}
@media screen and (max-width:992px) {
    .contents-container .contents-box {
        display: block;
    }
    .contents-item{
        margin: 1em auto;
    }
}
/* ----------------------------------------子ページスタイル-------------------------------------------------- */

/* ----------------------------------------アカウントページ-------------------------------------------------- */

/* 特典 */
.benefit-section{
    margin-bottom: 100px;
}
.benefit-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
    margin: 2em auto 0;
}
.benefit-item{
    background: #f5f7f8;
    padding: 1em;
    border-radius: 1em;
    width: 250px;
    height: 330px;
    position: relative;
}
.benefit-item img{
    width: 100px;
    height: auto;
    position: absolute;
    bottom: 7%;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.tokuten{
    font-size: 1.5em;
    margin-bottom: .4em;
}
.tokuten span{
    padding: .2em .3em;
    border-radius: 100%;
    margin-left: .3em;
    font-size: 18px;
    background: #333;
    color: #fff;
}
.benefit-item p span{
    background: linear-gradient(transparent 70%, #87ace3 70%);
    font-weight: bold;
    font-size: 1.15em;
}
.benefit-item p span a{
    color: #333;
}
.tokuten-tx{
    font-size: 13px;
}

/* 特典スマホ表示 */
@media screen and (max-width:992px) {
    .benefit-box {
        display: block;
    }
    .benefit-item{
        margin: 1.5em auto;
    }
}

/* 会員登録 */
#kizon , #shinki{
    padding-top: 5em;
}
.member-section{
    background: #f5f7f8;
    padding: 60px 0 100px;
}
.member-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin: 2em auto 0;
}
.member-type p{
    display: inline-block;
    border-bottom: 1px solid #333;
    padding-bottom: .2em;
    font-size: 1.25em;
}
.member-item a{
    background: #333;
    color: #fff !important;
    padding: .3em 2em;
    border-radius: .3em;
    border: solid 2px rgba(0, 0, 0, 0);
    transition: .3s;
}
.member-item a:hover{
    background: #f5f7f8;
    border: 2px solid #333;
    color: #333 !important;
}
.step-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}
.step-item{
    border: 1px solid #dedede;
    background: #fff;
    border-radius: .5em;
    width: 250px;
    height: 460px;
    padding: 1em;
    position: relative;
}
.step-item p{
    font-size: 14px;
    margin: 1em 0 1.5em;
}
.step-item .step-level{
    padding: .2em 1.5em;
    border-radius: 5em;
    background: #87ace3;
    max-width: 100px;
    margin: 0 auto;
}
.step-item:first-child::before , .step-item:nth-child(2)::before{
    background-color: #87ace3;
    clip-path: polygon(100% 50%, 0 100%, 0 0);
    content: "";
    height: 20px;
    left: 105%;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 12px;
}
.step-link{
    margin-top: 3em;
}
.step-link a{
    padding: .5em 2em;
    background: #ff8b00;
    color: #fff;
    font-size: 1.25em;
    border-radius: .2em;
    border: solid 2px rgba(0, 0, 0, 0);
    transition: .5s;
}
.step-link a:hover{
    background: #f5f7f8;
    color: #ff8b00;
    border: 2px solid #ff8b00;
}

/* 会員登録スマホ表示 */
@media screen and (max-width:992px) {
    .member-box{
        display: block;
    }
    .member-item{
        text-align: center;
        margin: 2em auto 0;
    }
    .step-box {
        display: block;
    }
    .step-item{
        margin: 1.5em auto;
    }
    .step-item:first-child::before , .step-item:nth-child(2)::before{
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        height: 12px;
        top: 103%;
        right: 0;
        left: 0;
        width: 15px;
        margin: 0 auto;
    }
}

/* ----------------------------------------よくある質問-------------------------------------------------- */

.accordion-container{
    margin: 0 1em 5em;
}
.accordion-box {
    max-width: 900px;
    margin: 1.25em auto;
    border: 2px solid #333;
    border-radius: 5px;
}

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

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

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

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

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

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

/* ----------------------------------------サポートページ-------------------------------------------------- */
.support-cover{
    display: block;
    margin: 3em auto 4em;
    max-width: 1100px;
    padding: 0 1em;
    height: auto;
}
.support-cover img{
    width: 100%;
    height: auto;
    box-shadow: 3px 3px 10px #e6e6e6;
}
.support-section h2{
    margin-bottom: 1em;
}
.support-section .thanks-tx{
    margin-bottom: 3em;
    padding: 0 1em;
}
.support-container{
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 5em 1em 7em;
    background: #f5f7f8;
}
.support-box .support-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5em;
    gap: 10px;
}
.support-ttl img{
    width: 35px;
    height: auto;
}
.support-box h3{
    font-weight: bold;
    margin: 0;
}
.support-box p{
    font-size: 14px;
}
.support-box a{
    max-width: 300px;
    padding: 1em;
    display: block;
    margin: 2em auto 1em;
    text-align: center;
    background: #4d4d4d;
    color: #fff;
    transition: .5s;
    font-size: 1.1em;
}
.support-box a:hover{
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
}
.support-box .sub-tx{
    font-size: .8em;
    color: #ff0000;
}
/* サポートスマホ表示 */
@media screen and (max-width:992px) {
    .support-container{
        display: block;
        padding: 4em 1em;
    }
    .support-box{
        margin-bottom: 4em;
    }
}