@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
    display: block;
    transition: all 300ms ease-in-out;
}
a.opacity:hover {
    opacity: .6;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
img {
    width: 100%;
    height: 100%;
}
.w_30 {
    width: 30%;
    height: 100%;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
    .sp {
        display: none !important;
    }
    .pc {
        display: block;
    }
    .home {
        position: fixed;
        top: 28px;
        left: 3%;
        width: 20%;
        max-width: 120px;
        z-index: 1000;
    }
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
main {
    position: relative;
    z-index: 0;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    background-color: #151515;
    padding-bottom: 20px;
    /*background: url("../images/bg_all.webp") no-repeat top center/100% auto #151515;
	background-attachment: fixed;*/
    padding-bottom: 160px;
}
.gradation {
    background: linear-gradient(90deg, rgba(255, 195, 54, 1) 0%, rgba(255, 13, 134, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.copy {
    font-size: 12px;
}
small {
    font-size: 75%;
}
.big {
    font-size: 125%;
}
.bold {
    font-weight: bold;
}
.tac {
    text-align: center;
}
.en_font {
    font-family: "Libre Bodoni", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.jp_font {
    font-family: "fot-chiaro-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -3px;
}
.line_gold {
    /*background-color: #bc9500;*/
    text-decoration: underline;
    text-decoration-color: #bc9500;
    text-decoration-thickness: 3px;
}
.line_red {
    /*background-color: #d70a30;*/
    text-decoration: underline;
    text-decoration-color: #d70a30;
    text-decoration-thickness: 3px;
}
.lemino_c {
    background: linear-gradient(90deg, rgba(255, 164, 66, 1) 0%, rgba(255, 36, 135, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mt0 {
    margin-top: 0 !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.pt0 {
    padding-top: 0 !important;
}
.pb0 {
    padding-bottom: 0 !important;
}
.pink_tx {
    color: #fa1d7f;
}
.pb1em {
    padding-bottom: 1em;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.5s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}
.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}
.start {
    display: none;
}
/* ------------------------------------------------------------
BTN
--------------------------------------------------------------*/
.btn a {
    background-color: #cc1d3a;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    color: #fff;
    min-height: 60px;
    align-content: center;
    position: relative;
    font-size: 1.2em;
    font-weight: 500;
    border: 3px solid #cc1d3a;
    letter-spacing: 4px;
}
.btn {
    position: relative;
}
span.arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: url("../images/arrow_btn.webp") no-repeat center/100%;
    display: inline-block;
    width: 20px;
    height: 20px;
}
.btn a:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #cc1d3a;
}
.btn .coming {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(21, 21, 21, 0.7);
    width: 70%;
    height: 100%;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 100px;
    text-align: center;
    padding: 10px 0;
    z-index: 3;
}
.flex_box {
    display: flex;
    justify-content: space-between;
    margin: 30px auto 10px;
}
.flex_box .btn {
    width: 48%;
}
.flex_box .btn a {
    width: 100%;
}
#special .btn.blue a {
    margin: 0 auto 30px;
}
.contents_wrap .green a {
    background-color: #1bbeb1;
    border: 3px solid #1bbeb1;
    border-radius: 100px;
}
.contents_wrap .green a:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
}
.btn.yet a {
    background-color: #666;
    pointer-events: none;
    letter-spacing: 0;
    border: none;
}
.btn.yet a span.arrow {
    display: none;
    opacity: 0;
}
/* -------------------------------------------------------------------
header
---------------------------------------------------------------------*/
header {
    background-color: #000;
    /*	min-height: 80px;*/
    z-index: 99;
    background: #252525;
    justify-content: space-between;
    align-items: center;
    display: flex;
    position: sticky;
    top: 0;
}
.header_title {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    pointer-events: none; /* メニュークリック邪魔しない */
}
.menu.pc {
    background-color: #fff;
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: flex-end;
    color: #000;
    text-align: center;
    font-size: 1.1em;
    position: sticky;
    top: 0;
    left: 50%;
    z-index: 999;
    align-items: center;
    line-height: 1;
    font-weight: 800;
}
.menu.pc li {
    margin-right: 20px;
}
.menu_name.jp {
    font-size: 0.85em;
    line-height: 1.2;
    transform: translateY(-2px);
}
.menu.pc li.img {
    margin-right: 15px;
}
.menu.pc li a {
    display: block;
    font-family: "urw-din", sans-serif;
}
.menu.pc li a span {
    font-size: 0.7em;
    font-weight: 400;
    letter-spacing: 0;
}
.menu.pc li.img a img {
    height: 25px;
}
.menu.pc li a:hover {
    color: #ff5096;
    transition: 0.3s all ease-in-out;
}
.head_menu {
    margin-top: 30px;
}
.menu_btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.menu_btn li a {
    display: block;
    text-align: center;
    font-size: 14px;
    margin: 0 30px 0 0;
    background-color: #e84c89;
    color: #fff;
    font-weight: 700;
    width: 200px;
    border: 2px solid #e84c89;
    height: 50px;
    align-content: center;
    position: relative;
}
.menu_btn li a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 12px;
    height: 10px;
    background-color: #fff;
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 999;
}
.menu_btn li a:hover {
    border: 2px solid #e84c89;
    color: #e84c89;
    background-color: #000;
    transition: 0.5s all ease-in-out;
}
/* -------------------------------------------------------------------
TOP
---------------------------------------------------------------------*/
h1 {
    position: relative;
    z-index: 9999;
    text-align: center;
}
.top_logo {
    background-color: #fff;
    height: 80px;
    display: flex;
}
.top_logo img {
    max-width: 500px;
    height: auto;
    margin: auto;
    top: 10px;
}
.lead_tx {
    text-align: center;
    max-width: 1000px;
    margin: auto;
    width: 90%;
    padding: 50px 0;
    line-height: 1.5;
    font-size: 16px;
}
.lead_tx span {
    font-weight: 700;
    font-size: 1.5em;
    letter-spacing: 3px;
}
.attention_box {
    /*background: url("../images/dot_black.webp") repeat top left / 10px #efefef;*/
    padding: 15px;
    color: #fff;
    max-width: 1000px;
    width: 90%;
    margin: auto;
    font-size: 14px;
    background-color: rgba(150, 150, 150, 0.1);
}
.attention_box li {
    padding: 3px 0;
    line-height: 1.4;
    text-indent: -1em;
    margin-left: 1em;
}
.attention_box.y_scroll {
    overflow-y: scroll;
}
.y_scroll {
    overflow: hidden;
}
.y_scroll .attention_box {
    height: 200px;
    overflow-y: scroll;
    padding: 1.5em;
}
.flex_box.max_wrap {
    padding-top: 0;
}
.max_box {
    background-color: #fff;
    padding: 25px;
    max-width: 1500px;
    width: 49%;
    text-align: center;
    align-content: center;
    color: #151515;
    border-radius: 15px;
    border: 4px solid #ff5096;
    box-shadow: 1px 1px 12px rgba(130, 98, 66, 0.2);
    position: relative;
}
.max_tx {
    font-weight: 400;
    line-height: 1.6;
    font-size: 0.9em;
}
.max_logo {
    width: 95%;
    margin: 0 auto;
    padding: 1em;
}
.max_logo.l_premium {
    margin-bottom: 20px;
}
.label {
    color: #fff;
    z-index: 2;
    padding: 5px 7px;
    font-size: 0.8em;
    line-height: 1;
    position: absolute;
    top: 5px;
    right: -8px;
    background-color: #cc1d3a;
}
.label:after {
    content: "";
    z-index: 1;
    border-top: 3px solid #888;
    border-bottom: 3px solid rgba(0, 0, 0, 0);
    border-left: 4px solid #888;
    border-right: 4px solid rgba(0, 0, 0, 0);
    width: 0;
    height: 0;
    position: absolute;
    bottom: -5px;
    right: -0px;
}
.flex_box .max_box .btn {
    width: 90%;
    margin: auto;
}
.notice {
    font-size: 0.8em;
    font-weight: 300;
    padding-left: 1em;
    text-align: left;
    z-index: 2;
    position: relative;
}
/* -------------------------------------------------------------------
SECTION
---------------------------------------------------------------------*/
.orange_wrap {
    background: url("../images/bg_pattern.webp") repeat top left / 30px, linear-gradient(90deg, rgba(48, 41, 30, 1) 0%, rgba(107, 92, 53, 1) 50%, rgba(48, 46, 33, 1) 100%);
}
.bg {
    border-radius: 50px 50px 0 0;
    position: relative;
}
.bg.white {
    background-color: #62646f;
    color: #fff;
}
.bg.blue {
    background: #151515; /* background: linear-gradient(13deg, rgba(21, 21, 21, 1) 0%, rgb(45 69 107) 100%); */
}
.bg.pink {
    background: #151515;
    background: linear-gradient(13deg, rgba(21, 21, 21, 1) 0%, rgb(65 35 69) 100%);
}
.bg.green {
    background: #151515;
    background: linear-gradient(13deg, rgba(21, 21, 21, 1) 0%, rgb(41 66 71) 100%);
}
.bg.white::before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 320px;
    background: url("../images/how_to_enjoy.webp") no-repeat top left / 100% auto;
    z-index: 0;
}
.bg.white.campaign::before {
    background: none;
}
.bg.white.special::before {
    background: none;
}
.bg.white.radius_none {
    border-radius: 0 0 0 0;
}
.bg.blue.radius_none {
    border-radius: 0 0 0 0;
}
.contents_ {
    padding: 80px 0 0px;
    position: relative;
    max-width: 1200px;
    margin: auto;
    width: 85%;
}
.contents_ h2 {
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-optical-sizing: auto;
    font-size: 40px;
    padding-bottom: 20px;
    text-align: center;
    line-height: 1;
}
span.h2_jp {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 50%;
    color: #bc9500;
}
.text_02 {
    font-size: 2.0em;
    font-weight: 600;
    text-align: center;
    padding: 30px 0;
}
.coming_soon {
    font-size: 3em;
    padding: 1em 0;
    text-align: center;
}
.banner {
    padding-top: 70px;
    margin: auto;
    width: 70%;
	transition: all 0.3s ease;
	
}
.banner:hover {
	opacity: 0.5;

}
/* ----------------------------------------------
SECTION
------------------------------------------------*/
.end_ttl {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.1;
    position: relative;
    padding-bottom: 30px;
    padding-top: 50px;
    /* margin-top: 80px; */
}
.end_ttl::before {
    content: "";
    display: inline-block;
    background: url("../images/h2_line_end.webp") no-repeat bottom center /200px 7px;
    width: 200px;
    height: 7px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.end_campaign {
    margin-bottom: 80px;
}
.contents_wrap {
    max-width: 1000px;
    width: 90%;
    margin: 20px auto;
    border: 2px solid #fff;
    padding: 30px;
    position: relative;
}
.contents_wrap:nth-child(n+3) {
    margin-top: 55px;
}
.contents_wrap h2 {
    font-size: 28px;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    padding-bottom: 25px;
    line-height: 1.5;
    text-align: center;
}
.contents_wrap h2 .bg_color {
    display: block;
    border-bottom: none;
    padding-bottom: 25px;
    padding-top: 20px;
    margin: -30px -30px 20px;
    background-color: #e84c89;
}
.contents_wrap h2:has(.bg_color) {
    border-bottom: none;
}
.center {
    text-align: center;
    font-size: 20px;
}
/* ----------------------------------------------------------
list
------------------------------------------------------------*/
.contents_wrap .attention_box {
    width: 100%;
    margin: 20px 0;
}
.contents_.attention_box {
    width: 100%;
    margin: 20px 0;
}
.contents_img {
    width: 80%;
    margin: auto;
}
.imag_45 {
    width: 30%;
    margin: 30px auto;
}
.list_wrap {
    text-align: center;
    padding: 15px 0;
}
.list_wrap:first-of-type {
    margin-top: 20px;
}
.list_wrap:last-of-type {
    margin-bottom: 20px;
}
.list_ttl {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 2px 0;
    margin-bottom: 15px;
}
.list_wrap li {
    padding: 5px 0;
}
.list_wrap li.tal {
    text-indent: -1em;
    margin-left: 1em;
}
li.btn {
    margin-top: 20px;
}
/* ----------------------------------------------------------
規約
------------------------------------------------------------*/
.tokuten_scroll {
    color: #fff;
    overflow: hidden;
    width: 100%;
    margin: 20px auto 0;
    font-size: 12px;
    font-weight: 400;
    padding: 1px;
}
.tokuten_scroll .inn {
    height: 200px;
    overflow-y: scroll;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px;
}
.tokuten_scroll .inn .inn_box {
    margin-bottom: 2em;
}
.tokuten_scroll .inn .inn_box > ul > li {
    text-indent: -1em;
    margin-left: 1em;
    margin-bottom: 0.3em;
}
.tokuten_scroll .inn .inn_box > ul > li a {
    color: #fff;
    display: inline;
    text-decoration: underline;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 12px;
    margin-right: 10px;
}
.tokuten_scroll .inn::-webkit-scrollbar-thumb {
    background: #fff;
    width: 10px;
    border-radius: 100px;
}
.copy {
    padding: 40px 0 10px;
}
.totop a {
    display: none !important;
    opacity: 0;
    overflow: hidden;
}
.page_top {
    opacity: 0; /* 初期は非表示 */
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
}
.page_top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
}
/*----------------------------------------------------------------
グラフィック
----------------------------------------------------------------*/
.graphic_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
.graphic_list li {
    cursor: pointer;
    margin-inline: auto;
    position: relative;
    width: 14%;
    min-height: 250px;
}
/* 画像のスタイル */
.graphic_list li img {
    height: auto;
    left: 0;
    position: absolute;
    width: 100%;
}
/* 2枚目の画像は最初透明 */
.graphic_list li img:last-of-type {
    opacity: 0;
    transition: opacity .7s;
}
/* hoverすると2枚目の画像が透明じゃなくなる */
.graphic_list li:hover img {
    opacity: 1;
}
/*----------------------------------------------------------------
CONTENTS
----------------------------------------------------------------*/
.contents_box {
    background-color: #fff;
    padding: 50px 50px 80px;
    margin: 30px auto;
    color: #302E21;
    max-width: 1000px;
    border-radius: 15px;
}
.contents_box:first-of-type {
    margin-top: 0;
}
.bg_white .contents_box {
    background-color: #efefef;
}
.contents_box h3 {
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.contents_box h3 span.h2_jp {
    font-size: 50%;
}
.contents_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contents_list .content {
    width: 47%;
    position: relative;
    padding-top: 28px;
}
.content .tag {
    background: #000;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 0 5px;
    height: 25px;
    font-size: 14px;
    align-content: center;
}
.content .tag.free {
    background: linear-gradient(90deg, rgba(42, 88, 181, 1) 0%, rgba(19, 207, 169, 1) 100%);
}
.content .tag.premium {
    background: linear-gradient(90deg, rgba(255, 164, 66, 1) 0%, rgba(255, 36, 135, 1) 100%);
}
.content_ttl {
    text-align: center;
    padding-top: 10px;
    font-size: 0.8em;
    line-height: 1.2;
}
.content_img.border {
    border: 1px solid #ddd;
}
.attention {
    font-size: 0.6em;
    line-height: 1.0;
    text-align: center;
    padding-top: 5px;
}
.tag_day {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 1em;
    padding: 0 10px;
    line-height: 1.5;
  background: linear-gradient(90deg, #c299cc, #536ac9);
    border-radius: 3px;
    font-weight: 500;
    color: #fff;
}

/*====================================================================================
accordion
=====================================================================================*/
.accordion.contents_wrap {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    padding: 0;
    border: 2px solid #888;
    margin: 30px auto;
}
.accordion-content {
    display: none;
}
.accordion-inner {
    padding: 2em;
}
.accordion-title {
    position: relative;
    display: block;
    padding: 1em;
    cursor: pointer;
    transition: ease all .3s;
    text-align: center;
    background-color: #888;
    color: #fff;
}
.accordion h2 {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 0 solid #e84c89;
    padding-bottom: 0;
    margin-bottom: 0;
}
.accordion-title {
    position: relative;
}
/*--- 矢印 ---*/
.accordion-title::after {
    border-right: solid 4px #fff;
    border-top: solid 4px #fff;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 25px;
    top: 38%;
    transform: rotate(135deg);
}
.accordion-title.open::after {
    top: 45%;
    transform: rotate(-45deg);
    transition: 0.3s all;
}
/*----------------------------------------------------------------
アコーディオン
----------------------------------------------------------------*/
.js-accordion-all, .js-accordion-sp {
    position: relative;
    font-size: 16px;
    margin: 30px auto 50px;
    width: 100%;
}
.js-accordion-btn {
    bottom: 0;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s;
    z-index: 2;
    align-content: center;
}
.js-accordion-btn:hover {
    transform: translateX(-50%) translateY(12px);
}
.arrow-icon {
    transition: transform 0.3s ease;
}
.js-accordion-btn.is-show .arrow-icon {
    transform: rotate(180deg);
}
.accordion-text {
    overflow: hidden;
    position: relative;
    transition: height 0.5s ease;
}
.accordion-text.is-hide {}
/* テキストをグラデーションで隠す */
.js-accordion-all .accordion-text::before {
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 1) 100%);
    bottom: 0;
    content: "";
    height: 150px; /* グラデーションで隠す高さ */
    position: absolute;
    width: 100%;
    max-width: 1000px;
    right: 50%;
    transform: translateX(50%);
    margin: auto;
    display: inline-block;
    z-index: 1;
}
/* 閉じるボタンの位置 */
.js-accordion-btn.is-show {
    bottom: 40px;
}
/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.js-accordion-btn.is-show + .accordion-text::before {
    display: none;
}
.js-accordion-text {
    transition: height 1.0s ease; /* ← ここで速度を調整 */
    overflow: hidden;
}
/* テキストをグラデーションで隠す */
.js-accordion-all .accordion::before {
    background: #151515;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, rgba(21, 21, 21, 1) 59%);
    position: absolute;
    width: 100%;
    max-width: 2000px;
    right: 50%;
    transform: translateX(50%);
    margin: auto;
    display: inline-block;
    z-index: 1;
}
.accordion {
    overflow: hidden;
    position: relative;
    max-height: 3000px;
    transition: max-height 0.5s ease;
}
.accordion.is-hide {
    max-height: 120px;
}
.accordion.is-open {
    max-height: 2000px;
}
/* ---------------------------------------------------------
規約
-----------------------------------------------------------*/
.tokuten_scroll {
    color: #151515;
    overflow: hidden;
    width: 100%;
    margin: 15px auto 0;
    font-size: 14px;
    font-weight: 400;
    background-color: rgba(11, 11, 11, 0.1);
    padding: 15px;
    border-radius: 15px;
}
.tokuten_scroll .inn {
    height: 250px;
    overflow-y: scroll;
    text-align: left;
}
.tokuten_scroll .inn .inn_box {
    margin-bottom: 2em;
    color: #ddd;
}
.tokuten_scroll .inn .inn_box > ul > li {
    text-indent: -1em;
    margin-left: 1em;
    margin-bottom: 0.3em;
}
.tokuten_scroll .inn .inn_box > ul > li a {
    color: #2d4b70;
    display: inline;
    text-decoration: underline;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 12px;
    margin-right: 10px;
}
.tokuten_scroll .inn::-webkit-scrollbar-thumb {
    background: #2d4b70;
    width: 10px;
    border-radius: 100px;
}
.copy {
    padding: 40px 0 10px;
}
/* ------------------------------------------------------------
PAGE TOPボタン
--------------------------------------------------------------*/
#page_top {
    width: 100px;
    height: 118px;
    display: none;
}
#page_top.is-fixed {
    position: fixed;
    right: 10px;
    bottom: 50px;
    display: block;
}
#page_top.is-fixed img {
    max-width: 70px;
}
.page_top a:hover {
    transform: scale(0.95);
}
/* ----------------------------------------------------------
スケジュール
------------------------------------------------------------*/
.end_ttl {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.1;
    position: relative;
    padding-bottom: 30px;
    padding-top: 50px;
    /* border-top: 1px solid #ddd; */
    /* margin-top: 80px; */
}
.end_ttl::before {
    content: "";
    display: inline-block;
    background: url("../images/h2_line_end.webp") no-repeat bottom center /200px 7px;
    width: 200px;
    height: 7px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.contents_wrap {
    max-width: 1000px;
    width: 90%;
    margin: 50px auto;
    border: 1px solid #fff;
    padding: 30px;
    position: relative;
}
.contents_wrap h2 {
    font-size: 28px;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    padding-bottom: 25px;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}
.schedule_box {
    background: linear-gradient(335deg, rgba(50, 50, 50, 0.3) 0%, rgba(241, 96, 9, 0.3) 100%);
    padding: 1em;
}
.schedule_box h3 {
    text-align: center;
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 15px;
}
.shedule_list {
    padding-bottom: 15px;
}
.shedule_list li {
    padding-bottom: 5px;
    text-indent: -1em;
    padding-left: 1em;
}
/*----------------------------------------------------------------------
追従
----------------------------------------------------------------------*/
.lp_cta_fixed.is-fixed {
    text-align: center;
    width: 100%;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
    position: fixed;
    bottom: 0;
    left: 0;
    font-weight: 700;
}
.btn_wrap {
    display: flex;
    width: 70%;
    margin: auto;
    justify-content: center;
}
.lp_cta_fixed .btn_wrap {
    width: 100%;
}
.btn.fix {
    width: 50%;
}
.btn.fix a {
    width: 100%;
    margin: 0;
    border: none;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 0;
    line-height: 1.2;
    border-radius: 0;
    background: #077683;
    color: #fff;
    max-width: 1500px;
}
.btn.fix.lemino a {
    background: #af2121;
}
.btn.fix:last-of-type {
    margin-right: 0;
}
.btn.fix a:hover span.arrow {
    right: 10px;
    transition: all 0.2s ease;
}
@media screen and (max-width: 1100px) {
    .graphic_list li {
        min-height: 200px;
    }
}
/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
    main {
        font-size: 14px;
        margin: 0;
    }
    .start {
        display: none;
    }
    .big {
        font-size: 115%;
    }
    .line_gold {
        text-decoration-thickness: 4px;
    }
    .line_red {
        text-decoration-thickness: 4px;
    }
    .w_30 {
        width: 80%;
    }
    /* -------------------------------------------------------------------
TOP
---------------------------------------------------------------------*/
    header {
        min-height: 58px;
    }
    .top_logo img {
        max-width: 70%;
        height: auto;
        margin: auto;
        top: 0;
        right: 25px;
        position: relative;
    }
    .lead_tx {
        padding: 20px 0;
        line-height: 1.7;
        font-size: 15px;
    }
    .lead_tx span {
        font-size: 16px;
        font-weight: 700;
    }
    .lead_tx span.big {
        font-size: 24px;
    }
    .attention_box {
        padding: 10px;
        font-size: 12px;
    }
    .flex_box.max_wrap {
        margin: 0;
    }
    .max_box {
        padding: 15px;
        width: 100%;
        margin-bottom: 20px;
    }
    .max_tx {
        font-size: 0.75em;
    }
    .max_logo {
        width: 100%;
        padding: 0.8em;
    }
    .notice {
        font-size: 0.6em;
        padding-left: 1em;
    }
    .label {
        padding: 3px 7px;
        font-size: 0.7em;
        top: 4px;
        right: -8px;
    }
    /* ------------------------------------------------------------
BTN
--------------------------------------------------------------*/
    .btn a {
        min-height: 55px;
        letter-spacing: 0;
        font-weight: 500;
        font-size: 1.0em;
    }
    span.arrow {
        right: 15px;
        width: 15px;
        height: 15px;
    }
    .flex_box {
        flex-direction: column;
    }
    .flex_box .btn {
        width: 90%;
    }
    .head_menu {
        margin-top: 20px;
    }
    .menu_btn li a {
        margin: 0 0 15px 0;
    }
    .btn.yet a {
        font-size: 16px;
    }
    /* -------------------------------------------------------------------
SECTION
---------------------------------------------------------------------*/
    .bg {
        border-radius: 20px 20px 0 0;
    }
    .contents_wrap {
        padding: 20px 0 30px;
        width: 90%;
    }
    .contents_wrap h2 {
        font-size: 36px;
    }
    span.h2_jp {
        font-size: 60%;
    }
    .contents_wrap h2.smaller {
        font-size: 8.5vw;
        margin-bottom: 20px;
        margin-top: 0;
    }
    .youtube {
        width: 100%;
        margin: 0 auto;
    }
    .coming_soon {
        font-size: 2em;
        padding: 1em 0;
        text-align: center;
    }
    .contents_ {
        padding: 35px 0 0;
        width: 90%;
        margin: 0 auto 40px;
    }
    .contents_ h2 {
        font-size: 28px;
    }
    .contents_wrap h2 .bg_color {
        margin: -30px -12px 20px;
    }
    .end_ttl {
        font-size: 24px;
        padding-bottom: 20px;
    }
    .contents_wrap {
        margin: 10px auto 50px;
        padding: 20px 10px;
        width: 100%;
    }
    .contents_wrap h2 {
        font-size: 18px;
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    .youtube {
        margin: 20px auto 0;
        width: 100%;
    }
    .end_overlay {
        font-size: 18px;
    }
.banner {
    padding-top: 10px;
    width: 95%;
    margin: auto;
    transition: 0.3s;
}
    /*----------------------------------------------------------------
グラフィック
----------------------------------------------------------------*/
    .graphic_list_sp {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .graphic_list_sp li {
        width: 48%;
    }
    .graphic_list_sp li:nth-of-type(n+3) {
        margin-top: 5%;
    }
    /* 画像を重ねるための準備 */
    .toggle-label {
        display: block;
        position: relative;
    }
    /* 画像共通設定 */
    .toggle-label img {
        width: 100%;
        height: auto;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.4s ease; /* フェード速度 */
    }
    .toggle-input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
    /* 画像1：初期表示 */
    .toggle-label .img-1 {
        position: relative; /* 高さ確保用 */
        opacity: 1;
    }
    /* チェック時：画像1をフェードアウト */
    .toggle-input:checked + .img-1 {
        opacity: 0;
    }
    /* チェック時：画像2をフェードイン */
    .toggle-input:checked + .img-1 + .img-2 {
        opacity: 1;
    }

    /*----------------------------------------------------------------
SPECIAL
----------------------------------------------------------------*/
    #special .youtube {
        margin: 10px auto 30px;
    }
    .bg_tx {
        letter-spacing: 0;
        line-height: 1.4;
        font-size: 1.2em;
        display: inline;
    }
    .schedule_img {
        margin-top: 10px;
        width: 100%;
    }
    .special_box {
        margin-bottom: 30px;
    }
    /*----------------------------------------------------------------
CONTENTS
----------------------------------------------------------------*/
    .center {
        font-size: 15px;
    }
    .contents_box {
        padding: 15px 15px 30px;
        margin: 20px 0;
    }
    .contents_box h3 {
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 5px;
        line-height: 0.8;
    }
    .contents_list .content {
        width: 48%;
        padding-top: 20px;
    }
    .contents_list .content:nth-of-type(n+3) {
        margin-top: 3%;
    }
    .content .tag {
        padding: 0 5px;
        font-size: 12px;
        height: 18px;
    }
    .content .tag.free {
        background: linear-gradient(90deg, rgba(73, 108, 177, 1) 0%, rgba(112, 85, 174, 1) 100%);
    }
    .content .tag.premium {
        background: linear-gradient(90deg, rgba(255, 164, 66, 1) 0%, rgba(255, 36, 135, 1) 100%);
    }
    .content_ttl {
        text-align: center;
        padding-top: 8px;
        font-size: 0.8em;
        line-height: 1.2;
    }
    .content_img.border {
        border: 1px solid #ddd;
    }
    .attention {
        font-size: 0.55em;
        padding-top: 3px;
    }
.tag_day {
    padding: 1px 3px;
    font-size: 0.5em;
    margin-bottom: 3px;
}
    /*----------------------------------------------------------------
アコーディオン
----------------------------------------------------------------*/
    .accordion {
        font-size: 15px;
        line-height: 120%;
    }
    .js-accordion-btn {
        bottom: 10px;
    }
    .accordion-text {
        margin-bottom: 20px;
        padding-bottom: 0;
    }
    .accordion-text.is-hide {}
    /* テキストをグラデーションで隠す */
    .js-accordion-sp .accordion-text::before {
        background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 1) 100%);
        bottom: 0;
        content: "";
        height: 150px; /* グラデーションで隠す高さ */
        position: absolute;
        width: 100%;
        display: inline-block;
        z-index: 1;
    }
    /* 閉じるボタンの位置 */
    .js-accordion-btn.is-show {
        bottom: 0;
    }
    /*====================================================================================
accordion
=====================================================================================*/
    .accordion.contents_wrap {
        margin: 30px auto;
        width: 92%;
    }
    .accordion-item + .accordion-item {
        margin-top: 10px;
    }
    .accordion-content {
        display: none;
    }
    .accordion-inner {
        padding: 20px 10px;
    }
    .accordion-title {
        padding: 0.5em 0;
    }
    .accordion h2 {
        font-size: 12px;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    /*--- 矢印 ---*/
    .accordion-title::after {
        border-right: solid 2px #fff;
        border-top: solid 2px #fff;
        width: 8px;
        height: 8px;
        right: 12px;
        top: 45%;
        transform: rotate(135deg);
    }
    /* -------------------------------------------------------------
規約
---------------------------------------------------------------*/
    .tokuten_scroll {
        width: 100%;
        font-size: 12px;
        padding: 15px;
    }
    .tokuten_scroll .inn {
        height: 200px;
        padding: 10px;
        overflow-x: hidden;
    }
    .tokuten_scroll .inn .inn_box {
        margin-bottom: 2em;
    }
    .tokuten_scroll .inn::-webkit-scrollbar {
        width: 10px;
    }
    /* ----------------------------------------------------------------
PAGE TOPボタン
------------------------------------------------------------------*/
    #page_top {
        width: 60px;
        height: 65px;
    }
    #page_top.is-fixed {
        right: 5px;
        bottom: 5px;
    }
    #page_top.is-fixed img {
        max-width: 50px;
    }
    /* ------------------------------------
スケジュール
--------------------------------------*/
    .end_ttl {
        font-size: 28px;
    }
    .contents_wrap {
        margin: 10px auto 0;
        padding: 20px 10px;
        width: 92%;
    }
    .contents_wrap h2 {
        font-size: 16px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .shedule_list {
        padding-bottom: 10px;
        font-size: 0.8em;
    }
    .schedule_box h3 {
        font-size: 1.1em;
    }
    .shedule_list li {
        padding-bottom: 2px;
    }
    /*----------------------------------------------------------------------
追従
----------------------------------------------------------------------*/
    .lp_cta_fixed.is-fixed {}
    .btn_wrap {
        display: flex;
        width: 100%;
        margin: auto;
        justify-content: center;
    }
    .btn.fix {
        margin-right: 0;
    }
    .btn.fix a {
        font-size: 11px !important;
        line-height: 1;
    }
    .btn.fix a span.arrow {
        right: 8px;
        width: 12px;
        height: 12px;
    }
    /* -----------------------------------------------------------------------
ハンバーガーメニュー
-------------------------------------------------------------------------*/
    #nav-drawer {
        position: relative;
        font-optical-sizing: auto;
        font-weight: 800;
        font-style: normal;
    }
    .nav-unshown {
        display: none; /*チェックボックス等は非表示に*/
    }
    /*アイコンのスペース*/
    #nav-open {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 50px;
        height: 50px;
        right: 5px;
        top: 4px;
        z-index: 99999;
        border-radius: 100px;
        background-color: #fff;
        color: #000;
        box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    }
    /*ハンバーガーの形をCSSで表現*/
    #nav-open span.nav_line {
        position: absolute;
        left: 15px;
        height: 1.5px; /*線の太さ*/
        width: 20px; /*長さ*/
        background: #000;
        display: block;
        content: '';
        cursor: pointer;
        transition: 0.5s;
        z-index: 9999;
    }
    #nav-open span.nav_line.first {
        top: 16px;
    }
    #nav-open span.nav_menu {
        position: absolute;
        font-size: 8px;
        bottom: 10px;
        font-weight: 400;
    }
    /* アイコンがクリックされたらMENUを消す */
    #nav-input:checked ~ #nav-open span.nav_menu {
        opacity: 0;
    }
    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #nav-input:checked ~ #nav-open span.nav_line.first {
        transform: rotate(225deg);
        top: 24px;
    }
    #nav-input:checked ~ #nav-open span.nav_line.second {
        transform: rotate(-225deg);
    }
    /*閉じる用の薄黒箇所*/
    #nav-close {
        display: none;
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        opacity: 0;
        transition: .3s ease-in-out;
    }
    /*メニューの中身*/
    #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1010;
        width: 90%;
        max-width: 300px;
        height: 100vh;
        background-color: #efefef;
        transition: .3s ease-in-out;
        -webkit-transform: translateX(105%);
        transform: translateX(105%);
        color: #151515;
    }
    .nav_item {
        font-size: 20px;
        padding: 100px 20px 0;
        position: relative;
    }
    .nav_item li {
        margin: 0 0 30px;
    }
    .nav_item li:last-of-type {
        border-bottom: 0 dashed #909090;
    }
    .nav_item li a {
        display: block;
        font-size: 18px;
        font-weight: 700;
        line-height: 160%;
    }
    .nav_item li a small {
        color: #000;
    }
    .hum_sns {
        display: flex;
        justify-content: center;
        align-content: center;
        border-top: 1px solid #909090;
        padding: 20px 0 0;
        margin: 0 20px;
    }
    .hum_sns li a {
        width: 20px;
        margin: auto;
    }
    .hum_sns li {
        margin-right: 10px;
    }
    .hum_sns li:last-of-type {
        margin-right: 0;
    }
    /*チェックがついたら表示させる*/
    #nav-input:checked ~ #nav-close {
        opacity: .5;
        display: block;
    }
    #nav-input:checked ~ #nav-content {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        height: 100vh;
    }
    .header_menu {
        display: flex;
        display: -moz-flex;
        display: -o-flex;
        display: -webkit-flex;
        display: -ms-flex;
        flex-direction: row;
        -moz-flex-direction: row;
        -o-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
    }
}
/* ----------------------------------------------------------------------------------------
812px以下の固定css(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
    .common_footer_wrapper .footer_inner {
        width: 93% !important;
    }
    /*ユーザーエージェント出し分け用*/
    .iphone .android_show, .iphone .pc_show {
        display: none;
    }
    .android .iphone_show, .android .pc_show {
        display: none;
    }
    .pc .iphone_show, .pc .android_show {
        display: none;
    }
    .pc .visible .iphone_show, .pc .visible .android_show {
        display: block;
    }
    body {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-text-size-adjust: 100%;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", Helvetica, sans-serif;
    }
    .sp {
        display: block;
    }
    .pc {
        display: none !important;
    }
    .home {
        position: fixed;
        top: 20px;
        left: 10px;
        width: 24%;
        max-width: 150px;
        z-index: 1000;
    }
}