@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@900&display=swap');
/* デザイン設定 ----------------------------------------------------------*/
:root {
	--header-height      : 82px;	/* ヘッダー高さ */
}
/* ========BASIC======== */
html {
    overflow-y:scroll;
}
body {
    margin:0;
    padding:0;
    line-height:1.6;
    letter-spacing:1px;
    font-family:"Hiragino Kaku Gothic Pro",HiraKakuPro-W3,"ヒラギノ角ゴ Pro W3","メイリオ", Meiryo,"MS PGothic",verdana,sans-serif;
    font-size:13px;
    color:#3b3b3b;
}
br {
    letter-spacing:normal;
}
a {
    color:#9cbb1c;
    font-weight:bold;
}
a:hover {
    color:#9cbb1c;
    font-weight:bold;
    text-decoration:underline;
}
img {
    display: block;
    border: 0;
}
h1,h2,h3,h4,h5,h6 {
    margin:0;
}
h2 {
    clear:both;
    padding:10px 10px 10px 15px;
    color:#ffffff;
    font-size:20px;
    font-weight:normal;
    line-height:1.4;
    text-align:left;
    background: #9ec600
}
h3 {
    clear:both;
    margin:50px 0 0 0;
    font-size:18px;
    font-weight:bold;
    color:#ee7700;
    line-height:1.8;
    border-bottom:1px dotted #ee7700;
}
h2 + h3 {
    margin-top:20px;
}
h3:first-child {
    margin-top:0;
}
h3 + h4 {
    margin-top:10px;
}
h4 {
    margin:20px 0 0 0;
    color:#4b4b4b;
    font-weight:bold;
    font-size:16px;
    line-height:2.0;
    border:0;
}
h5 {
    line-height:2.0;
    font-size:14px;
    color:#3b3b3b;
    font-weight:normal;
}
h6 {
    font-size:14px;
    font-weight:normal;
    color:#ee7700;
    line-height:2.0;
}
p {
    margin:0em 0 1em 0;
    line-height:1.8;
}
ul,ol,dl {
    margin:10px 0;
    padding:0;
}
li {
    padding:0;
    margin:0 0 0 30px;
}
dt {
    margin:0;
    padding:0;
}
dd {
    margin:0 0 1em 0;
    padding:10px;
    background:#f1f1f1;
}
table {
    width:600px;
    margin:10px 0;
    border-collapse:collapse;
    border:1px solid #999;
    border-spacing:0;
    line-height:1.8;
}
table th {
    padding:5px;
    border:1px solid #999;
    border-width:0 0 1px 1px;
    background:#EFEBEF;
    font-weight:bold;
    text-align:left;
}
table td {
    padding:5px;
    border:1px solid #999;
    border-width:0 0 1px 1px;
    text-align:left;
}
/* ========COMMON======== */
.hidden {
	display: none!important;
}
/* ========TEMPLATE LAYOUT======== */
#container {
    width:100%;
    margin:0 auto;
    background:#fff;
}
#header {
    position: relative;
    width:100%;
    max-width:1120px;
    margin:0 auto;
}
#menu {
    display: block;
    position:absolute;
    right:0;
    top:35px;
}
#contents {
    position: relative;
    width:100%;
    max-width:1120px;
    margin:0 auto;
}
#footMenu {
    width:100%;
    max-width:1120px;
    margin:0 auto;
}
#footer {
    width:100%;
    max-width:1120px;
    margin:0 auto;
}
/* ========HEADER CUSTOMIZE======== */
#header .copy {
	position:absolute;
	top:0px;
    right:0;
	font-size:8px;
}
#header h1 {
    margin:0;
    padding:30px 0;
    font-size:30px;
    color:#770000;
    line-height:1.0;
}
#header h1 a {
    color:#770000;
}
#header h1 a:hover {
    color:#770000;
}
/* Fixed Menu */
#header.fixed {
    position: fixed!important;
    top: 0;
    left: 0;
	z-index: 200;
    width: 100%;
    max-width: 100%;
    height: var(--header-height);
    box-sizing: border-box;
    padding: 0 max((100% - 1120px) / 2, 0px);
    background: rgba(255, 255, 255, 0.9);
}
#header.fixed .copy {
    right: max((100% - 1120px) / 2, 0px);
}
#header.fixed #menu {
    right: max((100% - 1120px) / 2, 0px);
}
.menuMargin {
    padding-top: var(--header-height);
}
/* ========MENU CUSTOMIZE======== */
#menu ul {
    margin:0;
    padding:0;
    list-style:none;
}
#menu li {
    overflow:hidden;
    float:left;
    margin:0;
    padding:0 0 0 30px;
}
#menu li a {
    display:block;
    font-weight:bold;
    color:#4b4b4b;
    outline:none;
    text-decoration:none;
}
#menu li a:hover {
    color:#4b4b4b;
    border-bottom:2px solid #ee7700;
    text-decoration:none;
}
/* HAMBERGER MENU ---------------- */
#hamberger {
    position: relative;
	z-index: 300;
    display: none;
    top: calc(-1 * var(--header-height));
}
#hamberger label {
    position: absolute;
    z-index: 400;
    right: 0;
}
#hamberger input {
    display: none;
}
#hamberger input:checked ~ label {
    right: 0;
}
/* burger ----- */
.burger {
    position: relative;
    top: 30px;
    right: -12px;
    cursor: pointer;
    position: absolute;
}
.burger g {
    stroke: #020202;
    transition: stroke 0.25s ease-in-out;    
}
.burger g:hover {
    stroke: darken(#ffffff, 20%);
}
#hamberger input:checked ~ label .burger {
    opacity: 0;
}
/* close ----- */
.close {
    position: absolute;
    top: 30px;
    right: 0;
    cursor: pointer;
    opacity: 0;
}
.close g:hover {
    stroke: darken(#ffffff, 20%);
}
.close g {
    stroke: #ffffff;
    transition: stroke 0.25s ease-in-out;    
}
.close line {
    transform-origin: 0%;
}
.close g {
    transform: rotateZ(45deg);
    transform-origin: 50%;
}
#hamberger input:checked ~ label .close {
    opacity: 1;
}
/* menu ----- */
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background-color: #EE7700;
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    pointer-events: none;
}
#hamberger input:checked ~ .menu {
    pointer-events: auto;
    opacity: 1;
}
.menu div {
    margin-top: 50px;
    transition: margin 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#hamberger input:checked ~ .menu div {
    margin-top: 0px;
}
.menu a {
    color: white;
    outline:none;
    text-decoration:none;
}
/* ========MAINCONTENTS ======== */
/* SECTION TITLE ---------------- */
.sectionTitle {
    position: relative;
    margin-bottom: 15px;
}
.sectionTitle .wrap {
    display: flex;
    align-items: center;
    margin: 0;
}
.sectionTitle p {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 900;
    font-size: 44px;
    color: #020202;
    margin: 0;
    line-height: 1em;
}
.sectionTitle .small {
    font-size: min(34px, 3vw + 7px);
}
/* INFORMATION ---------------- */
#information {
    position: relative;
    width:100%;
    max-width:1120px;
    display: flex;
    margin-bottom: 40px;
}
#information .conL {
    flex: 0 1 1100px;
    margin: 0;
}
#information .conR {
    flex: 0 0 400px;
    margin: 10px;
}
#information dl {
    margin: 10px;
    height: 345px;
    overflow: scroll;
    overflow-x: hidden;
}
#information dt {
    float: left;
    padding-top:5px;
}
#information dd {
    flex: 1 1 auto;
    margin:0 0 5px 0;
    padding:5px 0px 5px 9em;
    border-bottom:1px solid #ddd;
    background:none;
}
/* TWITTER ---------------- */
#information .twitter {
    display: none;
}
#information .twitterBox {
    padding-top: 400px;
    width: 100%;
    position: relative;
}
#information .twitterBox iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top:  0;
    bottom: 0;
    left: 0;
    right: 0;
}
/* NEW RELEASE ---------------- */
#new_release {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin-bottom: 40px;
}
#new_release ul {
    position: relative;
	list-style-type:none;
    display: flex;
	flex-wrap: wrap;
    gap: 25px;
    margin: 0 10px;
    padding: 0;
}
#new_release ul li {
    position: relative;
    width: 350px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
#new_release .info {
    width: 350px;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
#new_release ul .number {
    flex: 0 0 0px;
}
#new_release ul .number img {
    width: 0px;
    height: 0px;
}
#new_release .column {
    flex: 0 0 342px;
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}
#new_release ul .title {
    flex: 0 1 auto;
    font-size: 14px;
    line-height: 1.8em;
}
#new_release ul .subtitle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.1em;
}
#new_release ul .image {
    position: absolute;
    top: 80px;
    width: 350px;
    height: 350px;
    flex: 0 0 auto;
    background: #CCCCCC;
}
#new_release ul .image img {
    width: 348px;
    height: 348px;
    margin: 1px;
}
#new_release ul .text {
    width: 350px;
    flex: 0 0 auto;
    padding-top: 370px;
}
#new_release ul .text p {
    font-size: 21px;
    line-height: 1.3em;
    margin: 0 5px 0.3em 5px;
    padding-left: 3.15em;
    text-indent: -3.15em;
}
/* LINEUP ---------------- */
#lineup {
    position: relative;
    width:100%;
    max-width:1120px;
    margin-bottom:50px;
}
#lineup ul {
	list-style-type:none;
    display: flex;
	flex-wrap: wrap;
    gap: 30px 10px;
    margin: 0 5px;
    padding: 0;
}
#lineup ul li {
    width: 270px;
    height: 460px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}
#lineup .tag {
    width: 75px;
    height: 16px;
    color: white;
    font-size: 12px;
    padding: 0 5px;
    box-sizing: border-box;
    border-right: 5px solid transparent;
}
#lineup .blue {
    border-bottom: 16px solid #28A7E1;
}
#lineup .red {
    border-bottom: 16px solid #FF6F6F;
}
#lineup .green {
    border-bottom: 16px solid #8CD790;
}
#lineup .purple {
    border-bottom: 16px solid #885988;
}
#lineup .item {
    width: 270px;
    height: 460px;
    border: 1px solid #CCCCCC;
    padding: 4px;
    box-sizing: border-box;
}
#lineup .row {
    width: 100%;
    height: 35px;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}
#lineup ul .number {
    flex: 0 0 60px;
}
#lineup ul .number img {
    width: 60px;
    height: 60px;
}
#lineup ul .title {
    flex: 0 1 auto;
    font-size: 18px;
    font-weight: bold;
    line-height: 1em;
    padding-top: 5px;
    margin: auto 5px;
}
#lineup ul .image {
    flex: 0 0 auto;
    margin-bottom: 10px;
}
#lineup ul .image img {
    width: 260px;
    height: 260px;
}
#lineup ul .text {
    width: 260px;
    flex: 0 0 auto;
}
#lineup ul .text p {
    font-size: 14px;
    line-height: 1.2em;
    margin: 0 5px 0.3em 5px;
    padding-left: 3.15em;
    text-indent: -3.15em;
}
#lineup ul .text .small {
    font-size: 10px;
    line-height: 1em;
}
#lineup ul .text .x-small {
    font-size: 10px;
    line-height: 1em;
    margin: 0 5px 0.3em 5px;
    text-indent: -3.15em;
}
/* スマホ width: 750px以下 --------------------*/
@media only screen and (max-width: 750px) {
    #menu {
        display: none;
    }
    #hamberger {
        display: block;
    }
    .sectionTitle .wrap {
        margin-left: 10px;
        padding-left: 10px;
        border-left: 5px solid #D10181;
        flex-direction: column;
        align-items: flex-start;
    }
    .sectionTitle p {
        display: block;
        font-size: 24px;
    }
    .sectionTitle .small {
        font-size: min(20px, 4vw);
    }
    /* INFORMATION ---------------- */
    #information {
        flex-direction: column;
        flex-wrap: wrap;
    }
    #information .conL {
        flex-basis: calc(100% - 10px);
        margin-bottom: 30px;
    }
    #information .conR {
        flex-basis: calc(100% - 10px);
    }
    #information dl {
        height: 200px;
    }
    #information dt {
        float: none;
        font-size: 12px;
        padding: 0;
    }
    #information dd {
        margin:0 0 5px 0;
        padding:0 0 5px 0;
        border-bottom:1px solid #ddd;
        background:none;
    }
    /* TWITTER ---------------- */
    #information .twitter {
        display: block;
        margin-left: -10px;
    }
    #information .twitterBox {
        padding-top: 400px;
        width: 100%;
        position: relative;
    }
    /* NEW RELEASE ---------------- */
    #new_release ul {
        width: calc(100% - 20px);
        flex-direction: column;
    }
    #new_release ul li {
        flex: 1 0 auto;
        width: 100%;
        flex-direction: row-reverse;
        gap: 10px;
    }
    #new_release .info {
        width: calc(50% - 10px);
        flex-direction: column;
        margin-bottom: 0;
    }
    #new_release .column {
        flex: 0 0 auto;
        margin-left: 5px;
        margin-bottom: 2vw;
    }
    #new_release ul .number {
        width: 100%;
        flex: 0 0 auto;
    }
    #new_release ul .number img {
        width: 20%;
        height: auto;
    }
    #new_release ul .title {
        font-size: 2vw;
    }
    #new_release ul .subtitle {
        font-size: 4vw;
        font-weight: bold;
        line-height: 1.1em;
    }
    #new_release ul .image {
        position: relative;
        top: 0;
        width: calc(50% - 10px);
        height: 100%;
    }
    #new_release ul .image img {
        width: 100%;
        height: auto;
    }
    #new_release ul .text {
        width: 100%;
        padding-top: 0;
    }
    #new_release ul .text p {
        font-size: 3vw;
        line-height: 1.2em;
    }
    /* LINEUP ---------------- */
    #lineup ul {
        margin: 0 auto;
        width: min(550px, 100% - 10px);
        justify-content: flex-start;
        position: relative;
    }
    #lineup ul li {
        width: min(270px, (100% - 10px) * 0.5);
        height: 0;
        padding-top: min(460px, (100% - 10px) * 0.9);
        position: relative;
    }
    #lineup .tag {
        position: absolute;
        top: 0;
        left: 0;
    }
    #lineup .item {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 16px;
        left: 0;
    }
    #lineup .row {
        height: 0;
        position: relative;
    }
    #lineup ul .number {
        flex: 0 0 min(30px, (100% - 10px) * 0.3);
        padding-top: min(30px, (100% - 10px) * 0.3);
        position: relative;
    }
    #lineup ul .number img {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }
    #lineup ul .title {
        font-size: min(18px, 3vw);
    }
    #lineup ul .image {
        padding-top: min(30px, (100% - 10px) * 0.3);
    }
    #lineup ul .image img {
        width: 100%;
        height: 100%;
    }
    #lineup ul .text {
        width: 100%;
    }
    #lineup ul .text p {
        font-size: min(16px, 2.8vw);
        line-height: 1em;
        margin: 0 5px 0.3em 5px;
    }
    #lineup ul .text .small {
        font-size: min(14px, 2.4vw);
        line-height: 1.2em;
    }
    #lineup ul .text .x-small {
        font-size: min(11px, 2.0vw);
        line-height: 1.2em;
    }
}
/* -------------------------- */
/* SUBMENU */
.submenu h3 {
    position:relative;
    text-align:center;
    margin:0;
    padding:15px 0;
    line-height:1.0;
    color:#fff;
    border:none;
    background:#9ec600;
}
.submenu h3:after {
    content:'▼';
    position:absolute;
    bottom:-13px;
    left:50%;
    float:left;
    color:#9ec600;
}
.submenu h4 {
    padding:10px;
    font-weight:normal;
font-size:14px;
    background:#f1f1f1;
}
.submenu ul {
    margin:0 10px;
    padding:0;
}
.submenu li {
    margin:0;
    padding:0 0 0 7px;
    list-style:none;
    border-bottom:1px dotted #ddd;
    background:url("../images/bg_arrow.gif") no-repeat left 50%;
}
.submenu li a {
    display:block;
    padding:10px 0;
    text-decoration:none;
}
.submenu p {
    margin:10px;
}
/* ========DOWNLOAD======== */
#download {
	width:600px;
	margin-top:30px;
}
#twitem ul {
	clear:both;
	width:600px;
}
#twitem li {
	display:inline;
	margin:12px;
	list-style:none;
}
/* ========FOOTMENU======== */
#footMenu ul {
    margin:5px 20px 5px 0;
    padding:20px 0;
    text-align:center;
    border-top:1px solid #ddd;
}
#footMenu li {
    display:inline;
    margin:0 0 0 20px;
    list-style:none;
}
#footMenu li a {
    color:#3b3b3b;
    text-decoration:none;
}
#footMenu li a:hover {
    color:#666;
    text-decoration:underline;
}
/* ========FOOTER ======== */
.copyright {
    font-style:normal;
    font-size:11px;
    color:#999;
    line-height:3.0;
    text-align:center;
}
/* ========PAGETOP ========= */
#pageTop {
    position:fixed;
    right:20px;
    bottom:20px;
}
#pageTop a {
    display:block;
    padding:30px 30px 30px 42px;
    color:#fff;
    font-size:11px;
    text-decoration:none;
    background:#72c7d1 url("../images/bg_pagetop.gif") 30px 50% no-repeat;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}
#pageTop a:hover {
    background:#54b5c0 url("../images/bg_pagetop.gif") 30px 50% no-repeat;
}
/* ========CONTACT ========= */
#contact {
	clear:both;
	padding-top: 20px;
	padding-bottom: 20px;
	width:600px;
/*	list-style-type:none;*/
/*	display:block;*/
}
#mail {
	width:600px;
	padding-top:10px;
	padding-left:0px;
	padding-bottom: 20px;
}
#mail ul {
	width:600px;
	padding-bottom: 10px;
	list-style-type:none;
}
#mail li {
	padding-bottom: 10px;
}
#mail h4 {
	padding-bottom:5px;
	padding-left:200px;
	line-height:1.6em;
	font-size:14px;
	font-weight:bold;
}
table.form { border:1px solid #606060; border-collapse:collapse; margin-top:1em; }
table.form th,td { text-align:left; border:1px solid #606060; padding:8px; font-weight:normal; }
table.form th { background:#ddd; }
table.form td { background:#ffffff; }
/*strong.ttl { text-align:left; border-left:solid 4px #cc0000; display:block; padding:2px 5px; margin-top:2em; }*/

/* ======== RESPONSIVE ========= */
