@charset "shift_jis";

/*==============================================
 共通カラー
============================================= */
:root {
    --text-color: #fff; /* テキスト カラー */
    --color-primary: #b29c6b; /* プライマリ カラー */
    --color-secondary: #6496a4; /* セカンダリー カラー */
    --color-border: #222; /* ボーダー カラー */
}
/*==============================================
 common
============================================= */
html {
    overflow: auto;
}
body {
    min-width: 1170px;
}
#header {
    position: relative;
    border-bottom: #ededed solid 1px;
    z-index: 3;
}
.headerIn, .footerIn {
    width: 1170px;
    margin: 0 auto;
}
.copyRight {
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid #ededed;
}
#footer {
    padding-top: 10px;
    background-color: #fff;
    z-index: 1;
}
.copyRightIn {
    min-width: 1170px;
}
#mainContents {
    position: relative;
    padding-bottom: 60px;
    font-family: "noto", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", "Arial", sans-serif;
    color: var(--text-color);
    letter-spacing: .08em;
    font-feature-settings: "palt"1;
}
#mainContents::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(150deg, #000000, #0d1013 60%, #404547);
    z-index: -1;
}
.mainContentsIn {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 1170px;
    margin: 0 auto;
    z-index: 2;
    opacity: 0;
    transition: opacity .4s ease-out;
}
.mainContentsIn.is-show {
    opacity: 1;
}
.pageTop {
    border-radius: 50%;
}
.sp {
    display: none !important;
}
em {
    /*color: var(--color-secondary);*/
    font-style: normal;
    font-weight: 700;
}
sup {
    vertical-align: super;
    top: 0;
}
a, a:visited, a:hover {
    color: inherit;
}
#mainContents a {
    transition: .2s;
}
#mainContents p a, #mainContents .note li a {
    text-decoration: underline;
    color: var(--color-primary);
}
#mainContents p a:hover, #mainContents .note li a:hover {
    text-decoration: none;
}
.note {
    margin-top: 1em;
    margin-left: 65px;
}
.note li {
    display: block;
    line-height: 1.8;
    color: #888;
    font-size: 11px;
}
.note li span {
    margin-right: 1em;
}
/*==============================================
 font
============================================= */
/* regular */
@font-face {
    font-family: 'noto';
    src: url(https://img1.kakaku.k-img.com/images/fonts/noto-sans/NotoSansJP-Regular.woff);
    font-weight: 400;
}
/* bold */
@font-face {
    font-family: 'noto';
    src: url(https://img1.kakaku.k-img.com/images/fonts/noto-sans/NotoSansJP-Bold.woff);
    font-weight: 700;
}
/* mincho */
.mincho {
    font-family: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}
/*==============================================
 共通ボタン
============================================= */
.btn {
    width: 100%;
    line-height: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 30px;
    background-color: var(--color-secondary);
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: .2s;
}
.btn.iij {
    background-color: var(--color-primary);
}
.btn a, a .btn {
    display: block;
    position: relative;
}
.btn a::after, a .btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5em;
    width: .6em;
    height: .6em;
    margin: auto 0;
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(45deg);
}
.btn:hover, a:hover .btn {
    opacity: .7;
}
/* .other */
.btn.other {
    background-color: #a9a5a4;
}
/* .btnWrap */
.btnWrap {
    margin-top: 40px;
}
.btnWrap .title {
    margin-top: 0;
    text-align: center;
     line-height: 1.6;
    font-size: 20px;
}
.btnWrap .catch,
.item .catch {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    gap: 1.5em;
    --slash: 1px solid #fff;
    line-height: 1.6;
    margin-top: 10px;
    color: var(--color-primary);
    font-size: 18px;
}
.btnWrap .catch::before,
.btnWrap .catch::after,
.item .catch::before,
.item .catch::after {
    content: "";
    height: 1.5em;
    border-left: var(--slash);
    border-color: var(--color-primary);
}
.btnWrap .catch::before,.item .catch::before { transform: rotate(-30deg); }
.btnWrap .catch::after,.item .catch::after  { transform: rotate(30deg); }
/*==============================================
 看板
============================================= */
.mainTitle {
    position: relative;
    overflow: hidden;
}
.mainTitleIn {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center; /* 左右中央も必要な場合 */
}
.mainTitleMovie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    filter: brightness(.6); /* 動画自体を暗くする（0〜1、小さいほど暗い） */
}
.mainTitleIn h1,
.mainTitleIn .img {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInH1 1.2s ease-out 2s forwards; /* .3s = 開始までの遅延 */
}
@keyframes fadeInH1 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.mainTitleIn h1 {
    margin-top: -10vh;
}
.mainTitleIn h1 img {
    width: clamp(400px, 74vh, 800px);
    /* 最小400px、基準74vh、最大800px（800px÷約108vh想定で算出） */
}
.mainTitleIn .img {
    position: relative;
    z-index: 2;
    margin-top: 6vh;
}

.mainTitleIn .img img {
    width: clamp(300px, 46vh, 500px);
}
.mainContentsIn {
    position: relative;
    z-index: 1;         /* 動画より前面に配置 */
    margin-top: -10vh;
}
/*--------------------------------------------*/
/* .scroll
----------------------------------------------*/
.scroll {
    position: absolute;
    bottom: 80px;
    transition: opacity .4s ease-out;
    z-index: 3;
}
.scroll.is-hidden {
    opacity: 0;
    pointer-events: none; /* 非表示中はクリック等を無効化 */
}
.scroll-text {
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.scroll-border {
    position: relative;
    top: 20px;
    width: 1px;
    height: 100px;
    background-color: #333;
    overflow: hidden;
    margin: auto;
}
.scroll-border::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 30px;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    animation: scrollbar 2.0s ease-in-out infinite;
    margin: auto;
}
@keyframes scrollbar {
     0% {
         -webkit-transform: translateY(-100%);
         transform: translateY(-100%);
     }
     100% {
         -webkit-transform: translateY(350%);
         transform: translateY(350%);
     }
}
/*==============================================
 .sidebar
============================================= */
.sidebar {
    width: 320px;
}
#fix {
    position: sticky;
    top: 20px;
    /* box-shadow: 0 0 15px 0 rgba(59,58,61,.1); */
    background-color: var(--color-border);
    overflow: hidden;
}
/*--------------------------------------------*/
/* .bnr
----------------------------------------------*/
.sidebar .bnr {
}
.sidebar .bnr a {
    display: block;
}
.sidebar .bnr a:hover {
    background-color: rgba(255, 255, 255, .08);
}
.sidebar .bnr .img {
    padding: 20px;
    background-color: #fff;
}
.sidebar .bnr .img img {
    width: 100%;
}
.sidebar .bnr .txt {
    padding: 20px 30px 30px;
}
.sidebar .bnr .txt .name {
    line-height: 1.4;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    transition: .2s;
}
.sidebar .bnr .txt .name .sub {
    display: block;
    font-size: .6em;
    font-weight: 400;
}
.sidebar .bnr .txt .name .catch{
    display: block;
    margin-top: 10px;
    color: var(--color-primary);
    font-size: .6em;
    font-weight: 400;
}
.sidebar .bnr .txt .btn {
    line-height: 42px;
    width: auto;
    height: 42px;
    margin-top: 10px;
    font-size: 14px;
}
.sidebar .bnr a:hover .txt .btn {
    opacity: 1;
}
/* .close */
.sidebar .bnr .close {
    display: none;
}
/*--------------------------------------------*/
/* #index
----------------------------------------------*/
#index {
    padding: 0 30px 30px;
}
#index p {
    display: none;
    color: #999;
    font-size: 13px;
}
#index ul {
    /* margin-top: 5px; */
}
#index ul li {
    border-top: 1px solid #444;
}
#index ul li:first-child {
    border-top: none;
}
#index ul li a {
    display: block;
    position: relative;
    line-height: 1.4em;
    padding: 1em 1.5em 1em 3em;
    text-indent: -3em;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
#index ul li a:hover {
    opacity: .7;
}
#index ul li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: .3em;
    width: .5em;
    height: .5em;
    margin: auto 0;
    border: 2px solid var(--color-primary);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    color: #fff;
    transform: translateY(-25%) rotate(135deg);
}
#index .btn {
    line-height: 40px;
    width: 260px;
    height: 42px;
    margin-top: 5px;
    border: 1px solid var(--text-color);
    background-color: #fff;
    box-sizing: border-box;
    color: var(--text-color);
    font-size: 14px;
}
#index .btn a::after {
    display: none;
}
/*==============================================
 .main
============================================= */
.main {
    width: 830px;
    /* box-shadow: 0 0 15px 0 rgba(59,58,61,.1); */
}
/*--------------------------------------------*/
/* .point
----------------------------------------------*/
.pointBox {
    padding: 0 65px;
}
.point {
    position: relative;
    padding: 30px 40px;
    border: 1px solid var(--color-secondary);
    box-sizing: border-box;
}
.point .catch {
    display: none;
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    width: 14em;
    margin: 0 auto;
    background-color: #fff;
    text-align: center;
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 700;
}
.point ul li {
    position: relative;
    line-height: 1.4;
    padding-left: 3.4em;
    font-size: 20px;
    font-weight: 700;
}
.point ul li + li {
    margin-top: 5px;
}
.point ul li::before {
    content: "POINT";
    position: absolute;
    top: .5em;
    left: 0;
    line-height: 2.2em;
    padding: 0 1em 0 2em;
    background-color: var(--color-secondary);
    /*border-radius: 1.1em;*/
    color: #fff;
    font-size: 9px;
    letter-spacing: 0;
}
.point ul li::after {
    content: "";
    display: block;
    position: absolute;
    top: .55em;
    left: .4em;
    width: .35em;
    height: .25em;
    margin: auto 0;
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: rotate(135deg);
}
.lead {
    line-height: 1.8;
    margin-top: 40px;
    font-size: 18px;
}
/*--------------------------------------------*/
/* .paragraph 
----------------------------------------------*/
.paragraph {
    margin-top: 100px;
    padding: 0 65px 0;
}
.paragraph:nth-of-type(odd) {}
/* h2 */
.paragraph h2 {
    position: relative;
    line-height: 1.4;
}
.paragraph h2::before {
    display: block;
    content: "";
    position: absolute;
    left: -65px;
    width: 5px;
    height: 100%;
    background-color: var(--color-primary);
}
.paragraph h2 .sub {
    display: block;
    line-height: 1;
    color: var(--text-color);
    font-size: 22px;
}
.paragraph h2 .sub strong {
    font-size: 1.6em;
    font-weight: 400;
}
.paragraph h2 .title {
    display: block;
    margin-top: .5em;
    font-size: 34px;
}
/* h3 */
.paragraph h3 {
    line-height: 1.6;
    margin-top: 60px;
    font-size: 24px;
    font-weight: 700;
}
/* h4 */
.paragraph h4 {
    display: flex;
    align-items: center;
    line-height: 1.6;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
}
/* p */
.paragraph p {
    line-height: 1.8;
    margin-top: 40px;
    font-size: 18px;
}
.paragraph p + p {
    margin-top: 20px;
}
.paragraph h3 + .imgBox,
.paragraph h4 + .imgBox {
    margin-top: 20px;
}
.paragraph p.cap {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 14px;
}
/* .btn */
.main .btn {
    width: 490px;
    margin-top: 15px;
}
/*--------------------------------------------*/
/* .imgBox
----------------------------------------------*/
.imgBox {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}
.imgBox .column {
    display: flex;
    justify-content: center;
    column-gap: 15px;
}
.imgBox .column h4 {
    margin-top: 0;
}
.imgBox .column a {
    display: block;
}
.imgBox .column div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.imgBox .column img, .imgBox .column video {
    width: 100%;
    height: auto;
}
.imgBox .cap {
    margin-top: 0 !important;
}
.imgBox .min {
    color: #888;
    font-size: 11px;
}
/* .horizontal */
.horizontal {
    flex-direction: row;
}
.horizontal .column {
    display: block;
    flex-shrink: 0;
    width: 500px;
}
.maxH img {
    max-height: 350px;
}
/*--------------------------------------------*/
/* .time
----------------------------------------------*/
.time {
    margin: 40px auto 0;
    padding: 35px 40px;
    background-color: #fff;
    color: #222;
}
.time + .time {
    margin-top: 20px;
}
/* h3 */
.time h3 {
    margin-top: 0;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
}
/* h4 */
.time h4 {
    display: flex;
    align-items: center;
    line-height: 1.6;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 5px solid #eee;
    font-size: 24px;
    font-weight: 400;
}
/*--------------------------------------------*/
/* .lineup
----------------------------------------------*/
.lineup {
    margin-top: 100px;
    padding: 0 65px 65px;
}
.lineup h2 {
    position: relative;
}
.lineup h2::before {
    display: block;
    content: "";
    position: absolute;
    left: -65px;
    width: 5px;
    height: 100%;
    background-color: var(--color-primary);
}
.lineup h2 .sub {
    display: block;
    line-height: 1;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 400;
}
.lineup h2 .sub strong {
    font-size: 1.6em;
     font-weight: 400;
}
.lineup h2 + h3 {
    margin-top: 40px;
}
.lineup h3 {
    position: relative;
    line-height: 1.6;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 400;
}
.lineup h3 .type {
    color: var(--color-primary);
    font-size: 22px;
}
/*--------------------------------------------*/
/* .item
----------------------------------------------*/
.item {
    width: 100%;
    margin-top: 60px;
}
.item + .item {
    margin-top: 20px;
}
.item {
    display: block;
    padding: 35px 40px;
    background-color: #fff;
    box-sizing: border-box;
}
.item .img {
    display: flex; 
    gap: 20px;
    justify-content: center;
}
.item .img img {
    width: 100%;
}
.item .info {
}
.item .info h4 {
    line-height: 1.4;
    margin-top: 20px;
    text-align: center;
    color: #222;
    font-size: 28px;
    font-weight: 400;
    transition: .2s;
}
.item .info h4 .min {
    display: block;
    font-size: .6em;
    font-weight: 400;
}
.item .info a:hover h4 {
    color: var(--color-primary);
}
.item .info .btn {
    width: 80%;
    margin: 15px auto 0;
}
.item .info .btn::after {
    transform: rotate(45deg);
}
/*--------------------------------------------*/
/* .releasedate
----------------------------------------------*/
.releasedate {
    width: 1170px;
    margin: 15px auto 0;
    text-align: right;
    color: #fff;
    font-size: 11px;
}