@charset "utf-8";

@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/*
	font-family:"FontAwesome";
	font-family:"Font Awesome 5 Free";
*/

/*========================================
 Base／固定
========================================*/
body {font-family:'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;}

/*===== FontSize 早見表(必要なもののみ残す) 　※ 16pxは1remで記載 ※ =====*/
html {
    --12px:calc(12 / 16 * 1rem);
    --13px:calc(13 / 16 * 1rem);
    --14px:calc(14 / 16 * 1rem);
    --15px:calc(15 / 16 * 1rem);
    --18px:calc(18 / 16 * 1rem);
    --20px:calc(20 / 16 * 1rem);
    --24px:calc(24 / 16 * 1rem);
    --26px:calc(26 / 16 * 1rem);
    --30px:calc(30 / 16 * 1rem);
    --36px:calc(36 / 16 * 1rem);
    --40px:calc(40 / 16 * 1rem);
}

/* topへ戻る */
footer #totop{
    width:40px;
    height:40px;
    padding:0;
    text-indent:-9999px;
    background-color:#2c42a8;
    border-radius:100%;
    position:fixed;
    bottom:10px;
    right:20px;
    z-index:800;
    display:none;
    cursor:pointer;
}
footer #totop a {display:block;}
footer #totop::after{
    content:"\f106";
    font-family:"FontAwesome";
    font-size:40px;
    line-height:35px;
    text-indent:0;
    text-align:center;
    color:#fff;
    display:block;
    position:absolute;
    top:0;
    left:0;
    right:0;
}


/*========================================
 カスタム用 ／PC&SP
========================================*/
body {
    background: linear-gradient(to right, #3ae1fe, #ffff85, #ff9593);
    color: #4e576b;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.6;
}
body:after {
    content: "";
    display: block;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    z-index: -5;
    background: url(../images/bg.jpg) center / cover no-repeat;
}

/*共通*/
img {
    width: 100%;
    height: auto;
}
.imgWrap {
    margin: 0 auto 2rem;
    width: min(100%, 1000px);
}
.center {
    text-align: center;
}
.point {
    color: tomato;
}

/*hamburger*/
.header {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}
.hamburger {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #2c42a8;
    z-index: 110;
}
.hamburgerLine {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #eee; 
    position: absolute;
    left: 18px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburgerLine:nth-child(1) { top: 20px; }
.hamburgerLine:nth-child(2) { top: 29px; }
.hamburgerLine:nth-child(3) { top: 38px; }

.hamburger.active .hamburgerLine:nth-child(1) { top: 29px; transform: rotate(45deg); }
.hamburger.active .hamburgerLine:nth-child(2) { opacity: 0; }
.hamburger.active .hamburgerLine:nth-child(3) { top: 29px; transform: rotate(-45deg); }

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    color: #eee;
    font-size: var(--20px);
    font-weight: bold;
    background: linear-gradient(to bottom, #6f9fe5, #8bfdf0);
    backdrop-filter: blur(5px);
    z-index: 105;
    transition: right 0.5s;
    padding-top: 150px;
}
.nav.active {
    right: 0; 
}
.navList {
    padding-left: 0;
    list-style: none;
}
.navItem {
    text-align: center;
    margin-bottom: 30px;
}
.navLink {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.navLink:hover {
    color: #2c42a8;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 104;
}
.overlay.active {
    display: block;
}

/*スクロール連動 フェードイン*/
.scrollIn {
    opacity: 0;
    transition: all 1.5s;
}
.fadeIn {
    opacity: 1;
    animation: fadein .5s cubic-bezier(0.42,0,0.58,1) forwards;
}
@keyframes fadein { 
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% { 
      opacity: 1;
      transform: translateY(0);
  }
}

/*modal*/
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.5s, visibility 0.5s; 
}
.modal-content {
    display: block;
    height: 100%;
    width: auto;
}
#close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/*top*/
#top {
    margin-inline: auto;
    margin-top: 2rem;
    max-width: 1000px;
    width: 90%;
}
.topImg {
    opacity: 0;
    animation: fade .8s ease forwards;
}
@keyframes fade {
  from {
    opacity: 0; /* 開始時の不透明度 */
  }
  to {
    opacity: 1; /* 終了時の不透明度 */
  }
}
.headerKv {
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/*lead*/
.lead {
    padding: 2rem 2rem 0;
    text-align: center;
}
.leadTitle {
    padding-bottom: 10px;
    font-size: var(--36px);
    line-height: 1.4;
    font-weight: bold;
}
.leadText {
    font-size: var(--20px);
}
.txtPoint {
    background: linear-gradient(transparent 70%, #fff600 70%);
}

/*container*/
section {
    padding-top: 80px;
    margin-bottom: 40px;
}
.container {
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.container2 {
    max-width: 1000px;
    width: 90%;
    margin-inline: auto;
    padding: 40px;
}

/*inner*/
.inner {
    margin-bottom: 60px;
}
.inner:last-child {
    margin-bottom:0;
}
.innerTitle {
    margin-bottom: 2rem;
    padding-bottom: .4em;
    font-size: var(--20px);
    font-weight: bold;
    border-bottom: 2px dotted #2c42a8;
}


/*見出し*/
.heading {
    margin-bottom: 60px;
    text-align: center;
    font-size: 70px;
    font-weight: 900;
    letter-spacing: 2px;
}
.heading span {
    display: block;
    padding-top: .4em;
    font-size: var(--20px);
    font-weight: bold;
}
.headingSub {
    margin-bottom: 40px;
    padding: .4em;
    font-size: var(--24px);
    font-weight: bold;
    text-align: center;
    color: #2c42a8;
    background: #eee;
}
.aboutTitle {
    display: inline-block;
    position: relative;
    padding: 0 1.4em;
    margin-bottom: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.aboutTitle::before,
.aboutTitle::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background-color: #4e576b;
}
.aboutTitle::before {
    left: 0;
}
.aboutTitle::after {
    right: 0;
}

/*btn*/
.btnWrap {
    margin-top: 20px
}
.button {
    margin-inline: auto;
    position:relative;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 14px 26px 14px 16px;
    width: min(100%, 500px);
    color: #fff;
    background-color: #2c42a8;
    border: 2px solid #2c42a8;
    border-radius: 9999px;
    line-height: 1.4;
    font-weight:bold;
    transition: all 0.3s;
    
}
.button:hover {
	color: #2c42a8;
    background-color: #fff;
}
.button:before {
	position: absolute;
	content: "\f105";
	font-family: "FontAwesome";
	font-weight: 900;
	font-size: 16px;
	top: 50%;
	right: 12px;
	transform: translatey(-50%);
}

.btnInvert {
    padding: 14px 26px 14px 16px;
    color: #2c42a8;
    background-color: #ffffff;
    border: 1px solid #2c42a8;
}
.btnInvert:hover {
    color: #fff;
    background-color: #2c42a8;
}

/*list*/
.data {
    margin: 2rem auto;
}
.dataList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: space-around;
}
.dataCap {
    position: relative;
    margin: 0 0 16px;
    padding: 4px 6px;
    color: #2c42a8;
    background: #fff;
    border: 1px solid #2c42a8;
    letter-spacing: 3px;
    font-size: var(--15px);
    width: 8em;
    text-align: center;
}
.dataText {
    margin: 0 0 14px;
    padding: 4px 10px;
    width: calc(100% - 10em);
}

/*注意分*/
.note {
    padding-left: 0;
    list-style: none;
    font-size: var(--14px);
}

/*linkbnr*/
.linkBnr {
    margin-inline: auto;
    width: min(90%, 900px);
    transition: all 0.3s;
}
.linkBnr:hover {
	opacity: .7;
}


/*grid 商品一覧*/
.grid {
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.gridItem {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 10px;
    width: 100%;
    padding-bottom: 20px;
}
.gridTitle {
    margin: 0;
    font-size: 1rem;
}


/*item 2カラム*/
.item {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.item .button {
    margin-right:0;
    width:min(100%, 200px);
}
.itemImg, .itemInfo {
    width: 100%;
}

/*動画*/
.movieWrap {
    margin-top: 20px;
    text-align: center;
}
.movie {
    max-width: 800px;
    width: 95%;
    height:auto;
    aspect-ratio:16/9;
}

/*vote*/
.voteTitle {
    padding: 5px;
    text-align:center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(to right, #1cbdcb, #96f1be);
    line-height: 1.6;
    border-radius: 5px;
}
.colorList .voteTitle {
    background: linear-gradient(to right, #f8a9a9, #fe8cdf);
}
.voteList {
    display: flex;
    padding: 0;
    margin:2rem auto;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.voteItem {
    width: calc((95% - 2rem) / 2);
    margin-bottom: 5%;
    text-align: center;
    font-size: var(--18px);
}
.voteItem img {
    cursor: pointer;
}
.Name {
    padding-top: 1em;
    font-weight: bold;
}
.Name a {
    color: #4e576b;
}
input#submit {
    padding: .5rem 1rem;
    width: 100%;
    background-color: #5ad8c5;
    color: #fff;
    font-weight: bold;
    border:none;
    border-radius: 999px;
    transition: all .3s;
}
input#submit:hover {
    opacity: 0.7;
}
.colorList input#submit {
    background-color: #fb9ac5;
}

/*schedule*/
#schedule {
    text-align: center;
}
.scheduleList {
    margin:1rem auto;
    width: 70%;
}
.scheduleList dt {
    margin-bottom:.8rem;
    background:#2c42a8;
    color:#fff;
    line-height:2;
    font-weight: normal;
    border-radius: 4px;
}
.scheduleList .now {
    background: #fff;
    border: 1px solid #2c42a8;
    color: #2c42a8;
    font-weight: bold;
}
.scheduleList .old {
    background:#eee;
    color:#262626;
}
.scheduleList dd {
    margin-bottom: 2rem;
}

#copy {
    padding: 0;
    margin-bottom: 0;
}

/*footer*/
#footerSection {
    padding-top: 4rem;
    text-align: center;
}
.copyright {
    font-size: var(--14px);
}
.footerLink {
    width: 100%;
    height: 50px;
    background: #fff;
}
.logoLink {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.logoLink img {
    max-width: 100px;
}


/* PC */
@media screen and (min-width: 768px) {

    .sp {display: none;}
    
}

/* スマホ */
@media screen and (max-width: 767px) {
    body:after {
        background: url(../images/bg_sp.jpg) center / cover no-repeat;
    }
    /*top*/
    #top {
        margin-top: 20px;
    }
    .lead {
        margin: 0 auto;
        padding: 20px 0;
    }
    .leadTitle {
        font-size: var(--20px);
        padding-bottom:10px;
    }
    .leadText {
        font-size: 1rem;
    }
    
    /*hamburger*/
    .header {
        top: 10px;
        right: 10px;
    }
    
    /*modal*/
    .modal-content {
        width: 80%;
        height: auto;
    }
    
    /*container*/
    section {
        padding: 20px 0;
    }
    section:last-child {
        padding-bottom: 0;
    }
    .container {
        padding: 30px 20px 40px;
    }
    .container2 {
        padding: 0;
    }
    .inner {
        margin-bottom: 40px;
    }
    .imgWrap:last-child, .item:last-child {
        margin-bottom: 0;
    }
    
    /*見出し*/
    .heading {
        margin-bottom: 40px;
        font-size: 36px;
        letter-spacing: 1px;
    }
    .heading span {
        font-size: 1rem;
    }
    .headingSub {
        font-size: var(--18px);
    }
    .innerTitle {
        font-size: var(--18px);
    }
    .aboutTitle {
        margin-bottom: 20px;
        padding: 0 34px;
        font-size: 18px;
    }
    
    /*list*/
    .dataCap {
        width: 100%;
        margin-bottom: 10px;
        font-size: var(--14px);
    }
    .dataText {
        width: 100%;
        padding: 0;
    }
    
    /*btn*/
    .button {
        padding: 12px 20px 12px 12px;
        font-size: var(--14px);
    }
    .button:before {
        font-size: var(--12px);
        right: 8px;
    }
    .grid .button {
        padding: 10px 20px 10px 12px;
    }
    .lead .button {
        width: min(100%, 300px);        
    }
    
    /*grid*/
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /*item*/
    .item {
        grid-template-columns: 1fr;
    }
    .item .button {
        margin: auto;
        width:min(100%, 600px);
    }
/*    .itemImg {
        margin-inline: auto;
        width: min(100%, 200px);
    }*/
    
    /*vote*/
    .voteTitle {
        font-size: var(--18px);
        padding: 5px 0;
    }
    .voteList {
        margin: 1rem auto 0;
        gap: 20px;
    }
    .voteItem {
        width: calc((100% - 20px) / 2);
        font-size: 1rem;
    }
    .Name {
        padding: 10px 0 0;
    }
    
    /*schedule*/
    .scheduleList {
        width: 90%;
        font-size: var(--15px);
    }
    .scheduleList dd {
        margin-bottom: 20px;
    }
    /* topへ戻る */
    footer #totop{
        right: 10px;
    }
    
}