/* 全体
---------------------------------------------------------- */
@charset "UTF-8";
/* フォント */
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');
:root {
  --font-base: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", "Yu Gothic", sans-serif;
  --font-m-plus-rounded: "YakuHanRP", "M PLUS Rounded 1c", sans-serif;
  --font-fredoka: "Fredoka", sans-serif;
  --normal: 400;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --black-bold: 900
}
/* デバイス制御_切り替え */
@media screen and (max-width:767px) {
  .onlyPC {
    display: none;
  }
  .onlySP {
    display: block;
  }
}
/* html
---------------------------------------------------------- */
/* ページ */
html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
/* イメージ */
img {
  vertical-align: top;
  line-height: 1.0em;
}
/* リンク画像_透明度 */
a:hover img {
  opacity: 0.5;
}
/*グレーアウト*/
.img_grayout {
  filter: grayscale(100%);
}
/*インデント*/
p.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}
/* フォントサイズ
---------------------------------------------------------- */
@media screen and (min-width:768px) { /* PC ===== */
  .fz_50 {
    font-size: 50px;
  }
  .fz_35 {
    font-size: 35px;
  }
}
@media screen and (max-width:768px) { /* SP  ====== */
  .fz_50 {
    font-size: 20px;
  }
  .fz_35 {
    font-size: 15px;
  }
}
/* メインエリア
---------------------------------------------------------- */
@media screen and (min-width:768px) { /* PC ===== */
  /*メイン_イメージ*/
  .tettei_main_box {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    max-width: 1880px;
    box-shadow: 0px 20px 30px 0px rgba(153, 155, 148, 0.25);
  }
  /*メイン_発売日*/
  .tettei_date_box {
    width: 100%;
    height: auto;
    margin: 4em 0;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
    color: #fffb00;
  }
  /*メイン_購入ボタン*/
  .tettei_btn_box {
    width: 100%;
    height: auto;
    margin: 1em 0 5em;
  }
  .tettei_btn img {
    width: 70%;
    height: auto;
    margin: 0 15%;
  }
  /*メイン_購入ボタン_発光体*/
  .tettei_btn_sparkle {
    position: relative;
    display: inline-block;
    width: 64%;
    height: auto;
    margin: 0 18%;
    padding: 0.7em 0;
    background: linear-gradient(150deg, #ff8b00 33%, #ec5000 66%);
    color: #fff !important;
    border: none;
    border-radius: 30px;
    font-size: 4.8em;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: 0px 0px 10px rgba(76, 65, 17, 1);
    border-top: 11px double #b16a23;
    border-right: 11px double #613c17;
    border-left: 11px double #b16a23;
    border-bottom: 11px double #613c17;
  }
  .tettei_btn_sparkle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
  }
  .tettei_btn_sparkle:hover::before {
    left: 100%;
  }
  .tettei_btn_sparkle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(204, 102, 0, 0.4);
  }
  .tettei_btn_sparkle a {
    color: #fff !important;
  }
}
@media screen and (max-width:768px) { /* SP  ====== */
  /*メイン_イメージ*/
  .tettei_main_box {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    max-width: 768px;
    box-shadow: 0px 10px 20px 0px rgba(153, 155, 148, 0.25);
  }
  /*メイン_発売日*/
  .tettei_date_box {
    width: 100%;
    height: auto;
    margin: 2em 0;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
    color: #fffb00;
  }
  /*メイン_購入ボタン*/
  .tettei_btn_box {
    width: 100%;
    height: auto;
    margin: 1em 0 3em;
  }
  .tettei_btn img {
    width: 70%;
    height: auto;
    margin: 0 15%;
  }
  .tettei_btn_sparkle {
    position: relative;
    display: inline-block;
    width: 72%;
    height: auto;
    margin: 0 auto;
    padding: 0.5em 0;
    background: linear-gradient(150deg, #ff8b00 33%, #ec5000 66%);
    color: #fff !important;
    border: none;
    border-radius: 30px;
    font-size: 1.6em;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: 0px 0px 10px rgba(76, 65, 17, 1);
    border-top: 7px double #b16a23;
    border-right: 7px double #613c17;
    border-left: 7px double #b16a23;
    border-bottom: 7px double #613c17;
  }
  .tettei_btn_sparkle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
  }
  .tettei_btn_sparkle:hover::before {
    left: 100%;
  }
  .tettei_btn_sparkle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(204, 102, 0, 0.4);
  }
  .tettei_btn_sparkle a {
    color: #fff !important;
  }
}
/* 要素_エリア
---------------------------------------------------------- */
@media screen and (min-width:768px) { /* PC ===== */
  /*要素_box*/
  .tettei_elemental_box {
    width: 840px;
    height: auto;
    margin: 0 auto;
  }
  /*要素_ワイド*/
  .tettei_elemental_whide_box {
    width: 940px;
    height: auto;
    margin: 0 auto;
  }
  /*各要素_タイトル*/
  .tettei_elemental_title_box {
    width: 100%;
    height: auto;
    margin: 5em auto 3em;
  }
}
@media screen and (max-width:768px) { /* SP  ====== */
  /*要素_box*/
  .tettei_elemental_box {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
  /*要素_ワイド*/
  .tettei_elemental_whide_box {
    width: 98%;
    height: auto;
    margin: 0 auto;
  }
  /*各要素_タイトル*/
  .tettei_elemental_title_box {
    width: 98%;
    height: auto;
    margin: 3em auto 1.5em;
  }
}
/* 動画
---------------------------------------------------------- */
@media screen and (min-width:768px) { /* PC ===== */
  .embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 5em 0;
  }
  .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width:768px) { /* SP  ====== */
  .embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 3em 0;
  }
  .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}