@charset "UTF-8";

/* --スマホファースト-- */

/*カスタムプロパティ*/
:root {
    --yellow: #ECB22E;
    --light-yellow: #FFF8E8;
    --pink: #E3554D;
    --red: #BB0404;
    --black: #000;
    --title: #333;
    --text: #111;
    --gray-text: #666;
    --font-family-jp: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    --font-family-en: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

/* 共通 */
html {
    font-size: 62.5%;
}

body {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction:column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-family: var(--font-family-jp);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.08rem;
    color: var(--title);
    font-size: 1.4rem;
    line-height: 2.2rem;
}

img {
    vertical-align: top;
    /*下の隙間をなくす*/
    /* max-width: 100%; */
    width: 100%;
}

p {
    color: var(--text);
    padding: 0.3rem 0.3rem;
    letter-spacing: 0.06rem;
}
body>div>*, #g-nav.panelactive #g-nav-list {
    max-width: 1024px;
}


/* header */
/* ============================================ */
header {
    /* background-color: var(--black); */
    width: 100%;
    position: absolute;
    z-index: 1;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    -webkit-opacity: 0;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    max-width: 1024px;
    height: 100vh;
    /*ナビの高さ*/
    background: var(--black);
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    -webkit-opacity: .9;
    opacity: .9;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    /* position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    /* text-align: center; */
}

#g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    /* -webkit-transform: uppercase; */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}


header h1, #g-nav-list {
    padding: 1.6rem 1.8rem 1rem 1.8rem;
}

header img, #g-nav-list>a>img {
    width: 95px;
}

.g-nav-list_fir, .g-nav-list_sec{
    padding: 1rem 0;
    margin-top: 1rem;
}
.g-nav-list_fir li{
    font-size: 1.6rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
}
.g-nav-list_fir li:last-child{
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.g-nav-list_fir li a::after{
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 2.2rem;
    padding-right: .5rem;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 0;
}

.g-nav-list_sec li{
    font-size: 1.2rem;
    padding: 0;
}
#g-nav-list>p{
    color: #fff;
    padding: 1rem;
    margin-top: 2rem;
}


/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0;
    right: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: var(--yellow);
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    -webkit-opacity: 0;
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ボトム固定 */
#btm_fix {
    position: fixed;
    bottom: 0;
    /*ページ上部の固定する位置*/
    width: 100%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5)
}

/* .fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
} */
#btm_fix a {
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    justify-content: center;
    -webkit-box-align:center;
    -webkit-align-items:center;
    align-items: center;
    margin: 1.6rem auto;
    padding: 1.4rem 1.8rem;
    /* max-width: 340px; */
    max-width: calc(100% - 50px);
    background-color: var(--pink);
    border: 1px solid var(--pink);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}

/* #btm_fix a::before{
    content: url("../img/community-icon.svg");
    position: relative;
    top: 50%;
    width: 30px;
    height: 30px;
} */

/* main */
/* ============================================ */
main{
    padding-bottom: 80px;
}
section {
    /* width: 100%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /* -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 40px;
}

section.terms{
    padding-top: 50px;
}

section h2, .terms h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.6rem;
    text-align: center;
    padding: 1rem 1rem 2rem 1rem;
}

section h2 span {
    color: var(--red);
    font-size: 1.2rem;
    font-weight: 600;
}

.hero {
    background-image: url("../img/visual-bg.png");
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    /* padding-bottom: 160px;
    padding-left: 20px;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    justify-content: end; */
}

.hero p {
    color: #fff;
    line-height: 3.4rem;
    position: absolute;
    bottom: 20%;
    left: 5%;
}

.hero p span {
    background: rgba(0, 0, 0, 0.5);
    padding: .5rem;
    font-size: 1.6rem;
}
.scrolldown {
    position:absolute;
	bottom:20%;
	right:5%;
}
.scrolldown span {
    position: absolute;
	right:-27px;
	bottom:40px;
    /*テキストの形状*/
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.25em;
	/*縦書き設定*/
    -webkit-transform: rotate( -90deg );
    transform: rotate( -90deg );
}
.scrolldown::before{
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: 2px;
    /*矢印の形状*/
    width: 1px;
    height: 6px;
    background: #fff;
    -webkit-transform: skewX(38deg);
    transform: skewX(38deg);
}
.scrolldown::after{
    content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	right:0;
    /*矢印の形状*/
	width:1px;
	height: 18px;
	background:#fff;
}

.brand, .commu, .media, .select, .super, .terms {
    padding-left: 20px;
    padding-right: 20px;
}

.brand p {
    font-size: 1.8rem;
    line-height: 2.8rem;
    padding-bottom: 1.6rem;
}
.commu p, .super p, .terms p {
    font-size: 1.6rem;
    line-height: 2.6rem;
    padding-bottom: 1.6rem;
}
.commu img, .super img{
    padding-bottom: 2rem;
}
.media img{
    padding-bottom: 1.4rem;
}
.media p {
    /* display:flex;
    justify-content:center;
    align-items:start; */
    font-size: 1.6rem;
    line-height: 2.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    padding: 0;
}
.select ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    justify-content: space-between;
}
.select>ul>li{
    width: calc(50% - 0.8rem);
    margin-bottom: 1.6rem;
}
.select>ul>li>a{
    display: block;
    position: relative;
}
.prdInfo{
    position: absolute;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    color: var(--black);
}
section p.prdInfo{
    width: 100%;
    padding: .2rem .5rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.media h3{
    background: #a83f3f;
    color: #fff;
    border-radius: 5px;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    padding: 10px;
    line-height: 1.5;
    font-weight: 700;
}
.media a{
    width:100%;
    display: flex;
    flex-direction: column;
    flex-grow:1;
}
.media h4{
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-weight: 700;
    transition: .15s;
    display: inline-block;
    max-width: 100%;
    flex-grow:1;
}
.media li{
    margin-bottom: 2.4rem;
}
.media picture,.media img{
  display:block;
  width:100%;
  height: 224px;
  object-fit:cover;
}

.sp_hidden{
    display: none;
}
.movie>div{
    width: 100%;
}

.super a{
    text-decoration: underline;
}

.terms h2{
    font-size: 1.8rem;
    text-align: left;
    line-height: 3.6rem;
    padding: 2rem 1.6rem 1.6rem 1.6rem;
}

/* ボタン */
.line-btn, .fill-btn {
    width: 100%;
}
.line-btn a{
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    justify-content: center;
    -webkit-box-align:center;
    -webkit-align-items:center;
    align-items: center;
    margin: 2.6rem auto;
    padding: 1.2rem 2rem;
    width: 250px;
    color: var(--gray-text);
    border: 1px solid var(--gray-text);
    border-radius: 30px;
}
.fill-btn a{
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    justify-content: center;
    -webkit-box-align:center;
    -webkit-align-items:center;
    align-items: center;
    margin: 2.6rem auto;
    padding: 1.2rem 2rem;
    width: 250px;
    color: #fff;
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 30px;
}

/* :hoverが使える端末を想定 */
@media (hover: hover) {
#btm_fix a:hover{
    color: var(--pink);
    background-color: #fff;
}
/* #btm_fix a:hover:before {
    content: url(../img/community-icon-pink.svg);
} */
.line-btn a:hover{
    color: #fff;
    background-color: var(--gray-text);
}
.fill-btn a:hover{
    color: var(--yellow);
    background-color: #fff;
}
.super a:hover{
    color: var(--yellow);
}
}

/* :hoverが使えない端末を想定 */
@media (hover: none) {
    #btm_fix a:active{
        color: var(--pink);
        background-color: #fff;
    }
    /* #btm_fix a:active:before {
        content: url(../img/community-icon-pink.svg);
    } */
    .line-btn a:active{
        color: #fff;
        background-color: var(--gray-text);
    }
    .fill-btn a:active{
        color: var(--yellow);
        background-color: #fff;
    }
    .super a:active{
        color: var(--yellow);
    }
}
/* aside */
/* ============================================ */
aside{
    display: none;
}

/* footer */
/* ============================================ */
footer{
    background-color: var(--light-yellow);
    width: 100%;
    padding: 6rem 1.6rem;
    text-align: center;
}
footer img{
    width: 148px;
    padding-bottom: 1.6rem;
}
footer ul{
    padding: 1rem 0;
}
footer li{
    padding: 1rem 0;
}
/* PC */
/* ======================================================================================== */
@media (min-width:768px) {

    /* 共通 */
    /* ============================================ */
    body {
        font-size: 1.6rem;
        line-height: 2.8rem;
        background-color: #F6F6F6;
    }
    body>div{
        width: 100%;
        max-width: 1024px;
        background-color: #fff;
    }
    p {
        padding: 0.5rem 0.5rem;
    }


    /* main */
    /* ============================================ */
    section.terms{
        padding-top: 80px;
    }

    section h2, .terms h1 {
        font-size: 2.8rem;
        line-height: 3.6rem;
        padding: 1.6rem 1.6rem 3.8rem 1.6rem;
    }
    
    section h2 span {
        font-size: 1.6rem;
    }
    .hero {
        background-image: url("../img/visual-bg-pc.png");
        height: 946px;
    }
    .hero p span {
        padding: 0.5rem;
        font-size: 2.8rem;
    }
    .brand, .commu, .select, .super, .movie, .terms {
        padding-left: 64px;
        padding-right: 64px;
    }
    .brand p {
        font-size: 1.6rem;
        line-height: 3.2rem;
        padding-bottom: 2.2rem;
    }
    .hero p {
        line-height: 4.4rem;
        bottom: 20%;
        left: 5%;
    }
    .scrolldown {
        display: none;
    }
    .commu p, .super p, .terms {
        font-size: 1.6rem;
        line-height: 3rem;
        padding-bottom: 1.8rem;
    }
    .media p {
        font-size: 1.6rem;
        line-height: 3rem;
        padding-bottom: 0;
    }
    .line-btn a, .fill-btn a{
        margin: 4rem auto;
        padding: 1.2rem 2rem;
        width: 100%;
        max-width: 50%;
        /* max-width: calc(100% - 50px); */
        font-size: 2.0rem;
    }
    .select>ul>li{
        width: calc(33% - 2rem);
        margin-bottom: 3.4rem;
    }
    section p.prdInfo {
        padding: 0.4rem 0.5rem;
        font-size: 1.6rem;
        line-height: 2.6rem;
    }
    .media li {
        padding: 5px;
    }
    .sp_hidden{
        display: block;
    }


    /* pc-header */
    /* ============================================ */
    header img, #g-nav-list>a>img {
        width: 166px;
    }
    header h1, #g-nav-list {
        padding: 3.6rem 3.6rem 1rem 3.6rem;
    }
    .openbtn {
        width: 80px;
        height: 80px;
    }
    .openbtn span {
        left: 22px;
        height: 4px;
    }
    .openbtn span:nth-of-type(1) {
        top: 27px;
    }
    .openbtn span:nth-of-type(2) {
        top: 38px;
    }
    .openbtn span:nth-of-type(3) {
        top: 49px;
    }
    /* 閉じるボタン */
    .openbtn.active span:nth-of-type(1) {
        top: 32px;
        left: 26px;
        width: 35%;
    }
    .openbtn.active span:nth-of-type(3) {
        top: 44px;
        left: 26px;
        width: 35%;
    }
    #btm_fix a {
        padding: 1rem 1.8rem;
        font-size: 24px;
    }
    #btm_fix a::before {
        width: 36px;
        height: 36px;
    }
    /* ドロップメニュー */
    .g-nav-list_fir li {
        font-size: 2rem;
        padding: 1rem 0;
    }
    .g-nav-list_sec li {
        font-size: 1.4rem;
        padding: 0;
    }
    small {
        font-size: 1.4rem;
    }
    /* pc-footer */
    /* ============================================ */
    footer {
        padding: 8rem 1.6rem;
    }
    footer ul{
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction:column;
        flex-direction: column;
        -webkit-box-pack:center;
        -webkit-justify-content:center;
        justify-content: center;
        padding: 3.4rem 0;
    }
    footer li{
        padding: 1rem 0 0 0;
    }

}
@media (min-width:1024px) {
    .openbtn {
        left: auto;
        right: auto;
        margin: 0 0 0 945px;
    }
    .pc_2col{
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack:justify;
        -webkit-justify-content:space-between;
        justify-content: space-between;
        -webkit-box-align:center;
        -webkit-align-items:center;
        align-items: center;
    }
    .pc_2col>img, .pc_2col>div, .pc_2col>picture{
        width: calc(50% - 0.8rem);
    }
    .super .pc_2col>picture{
        width: calc(45% - 0.8rem);
    }
    .super .pc_2col>div{
        width: calc(55% - 0.8rem);
    }
    .pc_3col, .pc_3col li{
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack:justify;
        -webkit-justify-content:space-between;
        justify-content: space-between;
        -webkit-box-align:start;
        /* -webkit-align-items:center; */
        /* align-items: start; */
        height: auto;
    }
    .pc_3col li{
        flex-direction: column;
        width: calc(33% - 0.001rem);
    }
}