@charset "UTF-8";
/*======================



style.css




======================*/
/* 全体
======================== */
#gundam {
    overflow-x: hidden;
}
#gundam a {
    -webkit-transition: .4s cubic-bezier(.19,1,.22,1);
    -moz-transition: .4s cubic-bezier(.19,1,.22,1);
    -ms-transition: .4s cubic-bezier(.19,1,.22,1);
    -o-transition: .4s cubic-bezier(.19,1,.22,1);
    transition: .4s cubic-bezier(.19,1,.22,1);
}
#gundam a img {
    -webkit-transition: .4s cubic-bezier(.19,1,.22,1);
    -moz-transition: .4s cubic-bezier(.19,1,.22,1);
    -ms-transition: .4s cubic-bezier(.19,1,.22,1);
    -o-transition: .4s cubic-bezier(.19,1,.22,1);
    transition: .4s cubic-bezier(.19,1,.22,1);
}
#gundam a._underline {
    text-decoration: underline;
}
#gundam a._underline:hover {
    text-decoration: none;
}

#gundam .block_inner {
    width: 1080px;
    margin: auto;
}

#gundam .bg_wht {
    background: #f3f3f3;
}
#gundam .bg_bl {
    background: #062638;
}
#gundam .bg_blk {
    background: #000;
}

#gundam .contentsbox h2.ttl {
    position: relative;
    text-align: center;
    padding-bottom: 30px;
}
#gundam .contentsbox h2.ttl::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 2px;
}
#gundam .contentsbox h2.ttl._bl::before {
    background: #062638;
}
#gundam .contentsbox h2.ttl._wht::before {
    background: #fff;
}
#gundam .contentsbox h2.ttl img {
    width: auto;
}





/* ローディング
======================== */
/* ローディング全体 */
#loading {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    background: #fff;
    z-index: 9999;
}
/* ロゴ表示 */
.loader {
    opacity: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.2em;
    animation: blink 1.2s infinite linear;
}
/* アニメーション */
@keyframes blink {
    50% {
        opacity: 1;
    }
}
/* ロード後 */
.loaded {
    opacity: 0;
    visibility: hidden;
}

@media screen and (min-width: 769px) {

/* スクロールアニメーション
======================== */
.js-fadein {
	opacity: 0;
    transform: translate(0, 0);
	transition : all 1500ms;
}
.js-slidein {
	opacity: 0;
	transform : translate(0, 50px);
	transition : all 1500ms;
}
.fade_active {
	opacity: 1;
	transform: translate(0, 0);
}

}

/* 背景
======================== */
#gundam #bg_fixed_wrap {
    position: fixed;
    top: 0;
    left: 0;
    background: url(https://tamashiiweb.com/special/gundam/img/bg_01.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    z-index: -1;
}
#gundam #bg_fixed_wrap > div:first-of-type {
    background-size: cover;
    background-attachment: fixed;
}
#gundam #bg_fixed {
    width: 100%;
    height: 100%;
}



/* Header
======================== */
#gundam #header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #062638;
    box-shadow: 0 1px 3px #f3f3f3;
    width: 100%;
}
#gundam #header .header_inner {
    position: relative;
    width: 100%;
    padding: 10px 0;
}
#gundam #header ._twlogo {
    position: absolute;
    left: 1vw;
    top: 50%;
    transform: translateY(-50%);
    max-width: 16vw;
}
#gundam #header ._siteTitle {
    text-align: center;
    width: fit-content;
    max-width: 64vw;
    margin: auto;
}
#gundam #header ._snsicon {
    position: fixed;
    right: 1vw;
    top: 20px;
    max-width: 10vw;
    z-index: 21;
}
#gundam #header ._snsicon ul._iconList {
    display: flex;
    justify-content: center;
    align-items: center;
}
#gundam #header ._snsicon ul._iconList li {
    margin-left: 0.5vw;
}
/* #gundam #header ._snsicon ul._iconList li img {
    filter: drop-shadow(0 0 0.1vw rgba(6,38,56,.25)) drop-shadow(0 0 0.1vw rgba(6,38,56,.25));
} */


/* Anchor link
======================== */
#gundam #anchor {
    margin: 40px auto;
}
#gundam #anchor ul.menuList {
    display: flex;
    justify-content: center;
}
#gundam #anchor ul.menuList li {
    display: flex;
    justify-content: center;
}
#gundam #anchor ul.menuList li {
    border-left: 2px solid #062638;
}
#gundam #anchor ul.menuList li:first-of-type {
    border-left: none;
}
#gundam #anchor ul.menuList li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 45px;
}
#gundam #anchor ul.menuList li a span {
    display: inline-block;
    border-right: 2px solid #062638;
    border-bottom: 2px solid #062638;
    transform: rotate(45deg);
    width: 1em;
    height: 1em;
    margin-top: 10px;
    -webkit-transition: .4s cubic-bezier(.19,1,.22,1);
    -moz-transition: .4s cubic-bezier(.19,1,.22,1);
    -ms-transition: .4s cubic-bezier(.19,1,.22,1);
    -o-transition: .4s cubic-bezier(.19,1,.22,1);
    transition: .4s cubic-bezier(.19,1,.22,1);
}
#gundam #anchor ul.menuList li a:hover span {
    transform: rotate(45deg) translate(3px, 3px);
}

/* fixed */
#gundam #anchor.fixed .menu {
    position: fixed;
    top: 0;
    left: 0;
    background: #f3f3f3;
    width: 100%;
    padding: 20px 0;
    z-index: 20;
}








/* MV
======================== */
#gundam #mv {
    padding-bottom: 1px;
}

/* 赤枠
=========================*/
.red_notes {
    text-align: center;
    margin-bottom: 50px;
}
.red_notes p {
    border: 2px solid #c00;
    color: #c00;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.4;
    padding: 0.8em 1.4em;
}
.red_notes p ._date {
    font-size: 16px;
    font-weight: 500;
}


/* Pick up info
======================== */
/* スライダー */
.swiperThumbnail .swiper-button-prev-thumb,
.swiperThumbnail .swiper-button-next-thumb,
.info-slider .swiper-button-prev,
.info-slider .swiper-button-next {
    top: auto;
    bottom: -110px;
    width: 92px;
    height: 22px;
}
.swiperThumbnail .swiper-button-prev-thumb,
.info-slider .swiper-button-prev {
    left: 38%;
}
.swiperThumbnail .swiper-button-next-thumb,
.info-slider .swiper-button-next{
    right: 38%;
}
.swiperThumbnail .swiper-button-next-thumb:after,
.swiperThumbnail .swiper-button-prev-thumb:after,
.info-slider .swiper-button-next:after,
.info-slider .swiper-button-prev:after{
    content: "";
    width: 100%;
    height: 100%;
}
.swiperThumbnail .swiper-button-prev-thumb:after,
.info-slider .swiper-button-prev:after{
    background: url(https://tamashiiweb.com/special/gundam/img/piclup_slider_prev_Kg3kQm2y.png) no-repeat center center;
    background-size: contain;
}
.swiperThumbnail .swiper-button-next-thumb:after,
.info-slider .swiper-button-next:after{
    background: url(https://tamashiiweb.com/special/gundam/img/piclup_slider_next_wEAxrF8x.png) no-repeat center center;
    background-size: contain;
}
.swiperThumbnail .swiper-pagination-thumb,
.info-slider .swiper-pagination {
    bottom: -70px;
}
.swiperThumbnail .swiper-pagination-thumb span.swiper-pagination-bullet,
.info-slider .swiper-pagination span.swiper-pagination-bullet {
    opacity: 1;
    background: #4e4e4e;
    border-radius: 0;
    width: 20px;
    height: 20px;
    margin: 0 11px;
}
.swiperThumbnail .swiper-pagination-thumb span.swiper-pagination-bullet.swiper-pagination-bullet-active,
.info-slider .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #baddeb;
}


/* PICKUP 上　ページネーション
======================== */
.swiperThumbnail {
    height: 25px;
    margin-bottom: 25px;
}
.swiperThumbnail .swiper-pagination-thumb {
    display: none;
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
    top: inherit;
    bottom:0;
}
.swiperThumbnail .swiper-button-next-thumb,
.swiperThumbnail .swiper-button-prev-thumb {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    bottom:inherit;
}
.swiperThumbnail .swiper-button-next-thumb.swiper-button-disabled,
.swiperThumbnail .swiper-button-prev-thumb.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}
/* .swiperThumbnail .swiper-wrapper {
    height: 20px !important;
    justify-content: center;
    position: absolute;
    bottom: 0;
    transition-duration: 0 !important;
    transform: translate3d(0px, 0px, 0px) !important;
    transition-delay: 0 !important;
} */
/* .swiperThumbnail .swiper-wrapper .swiper-slide {
    display: none;
    width: 20px !important;
    height: 20px !important;
    margin-top: auto;
    background: #4e4e4e;
} */
/* .swiperThumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
    background: #baddeb;
} */
/* .swiperThumbnail .swiper-wrapper .swiper-slide:not(:first-of-type) {
    margin-left: 20px !important;
} */



#gundam #pickup {
    /* padding: 100px 0 120px; */ /* 1枚のとき */
    padding: 100px 0 170px;
}
#gundam #pickup .infoArea {
    position: relative;
    width: 1000px;
    margin: auto;
}
#gundam #pickup .infoArea h2.rightH2 {
    position: absolute;
    top: 24px;
    right: 8px;
    transform: translateX(100%);
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide {
    background: url(https://tamashiiweb.com/special/gundam/img/pickup_bg_pc_N6xkUsjr.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea .info-slider .contents_inner {
    padding: 46px 24px;
    overflow: hidden;
}
#gundam #pickup .infoArea ._mainArea ._headCap {
    width: 46%;
    margin: 0 auto 34px;
}
#gundam #pickup .infoArea ._mainArea ._headcatch {
    margin: 34px auto 28px;
}
#gundam #pickup .infoArea ._mainArea ._headcatch ._txt {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.6;
}
#gundam #pickup .infoArea ._mainArea ._yt {
    text-align: center;
    margin: 28px auto 20px;
}
#gundam #pickup .infoArea ._mainArea ._yt iframe {
    width: 832px;
    height: 468px;
}
#gundam #pickup .infoArea ._mainArea ._catch {
    margin: 48px auto 28px;
}
#gundam #pickup .infoArea ._mainArea ._catch ._txt {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.6;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn {
    margin-top: 34px;
    margin-bottom: 34px;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn ._btn {
    text-align: center;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn ._btn a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    min-width: 460px;
    padding: 1.6em 3.2em;
}

#gundam #pickup .infoArea ._mainArea ._linkBtn ._btn._bl a {
    background: url(https://tamashiiweb.com/special/gundam/img/pickup_btn_bl_gGQye4bK.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn ._btn._blk a {
    background: url(https://tamashiiweb.com/special/gundam/img/pickup_btn_blk_C5dMb6Xr.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn ._btn._grn a {
    background: url(https://tamashiiweb.com/special/gundam/img/pickup_btn_grn_XF4nPzfE.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn ._btn._org a {
    background: url(https://tamashiiweb.com/special/gundam/img/pickup_btn_org_rgXU8yDS.png) no-repeat center center;
    background-size: 100% 100%;
}

#gundam #pickup .infoArea ._mainArea ._linkBtn._flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn._flex._f2 ._btn {
    width: calc(100% / 2 - 4%);
    margin: 0 2%;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn._flex ._btn a {
    min-width: 100%;
}

/* TN2023リンクボタン */
#gundam #pickup .infoArea ._mainArea ._linkBtn._tn2023 {
    margin: 40px auto 48px;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn._tn2023 ._btn a {
    position: relative;
    border-radius: 40px;
    background: #009dbd;
    color: #fff;
    font-size: 28px;
    padding: 0.6em 2.8em 0.6em 2.4em;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn._tn2023 ._btn a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.7em;
    background: #fff;
    width: 0.7em;
    height: 0.1em;
    margin: auto;
    -webkit-transition: .4s cubic-bezier(.19,1,.22,1);
    -moz-transition: .4s cubic-bezier(.19,1,.22,1);
    -ms-transition: .4s cubic-bezier(.19,1,.22,1);
    -o-transition: .4s cubic-bezier(.19,1,.22,1);
    transition: .4s cubic-bezier(.19,1,.22,1);
}
#gundam #pickup .infoArea ._mainArea ._linkBtn._tn2023 ._btn a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.7em;
    border-left: 0.14em solid #fff;
    border-bottom: 0.14em solid #fff;
    transform: rotate(-135deg);
    width: 0.3em;
    height: 0.3em;
    margin: auto;
    -webkit-transition: .4s cubic-bezier(.19,1,.22,1);
    -moz-transition: .4s cubic-bezier(.19,1,.22,1);
    -ms-transition: .4s cubic-bezier(.19,1,.22,1);
    -o-transition: .4s cubic-bezier(.19,1,.22,1);
    transition: .4s cubic-bezier(.19,1,.22,1);
}
#gundam #pickup .infoArea ._mainArea ._linkBtn._tn2023 ._btn a:hover::before {
    right: 0.4em;
    width: 1.1em;
}
#gundam #pickup .infoArea ._mainArea ._linkBtn._tn2023 ._btn a:hover::after {
    right: 0.4em;
}

/* 1枚目 */
#gundam #pickup .infoArea ._mainArea ._contents1 ._imgArea {
    margin-left: -24px;
}
#gundam #pickup .infoArea ._mainArea ._contents1 ._linkBtn {
    margin-top: -120px;
}

/* 2枚目 */
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents2 {
    background: url(https://tamashiiweb.com/special/gundam/img/pickup_bg2_pc_wj4ESdGt.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea ._mainArea ._contents2 ._headCap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 92%;
    margin: 26px auto 34px;
}
#gundam #pickup .infoArea ._mainArea ._contents2 ._headCap img {
    display: block;
    margin: 20px 15px;
}
#gundam #pickup .infoArea ._mainArea ._contents2 ._headCap img:nth-of-type(1) {
    width: calc(518 / 830 * 100%);
}
#gundam #pickup .infoArea ._mainArea ._contents2 ._headCap img:nth-of-type(2) {
    width: calc(312 / 830 * 100%);
}
#gundam #pickup .infoArea ._mainArea ._contents2 ._headcatch {
    margin: 48px auto 14px;
}

#gundam #pickup .infoArea ._mainArea ._contents2 ._headcatch ._txt {
    color: #ff0065;
    font-size: 50px;
    font-weight: 600;
}
#gundam #pickup .infoArea ._mainArea ._contents2 ._imgArea {
    transform: translateX(1.55%);
}

/* 3枚目 */
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents3 {
    background: url(https://tamashiiweb.com/special/gundam/img/pickup_bg3_pc_xYPQcAj3.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea ._mainArea ._contents3 ._headcatch {
    margin: 64px auto 60px;
}
#gundam #pickup .infoArea ._mainArea ._contents3 ._linkBtn {
    margin-top: 60px;
    margin-bottom: 142px;
}


/* 4枚目 */
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents4 {
    background: url(https://tamashiiweb.com/special/gundam/img/pickup_bg4_pc_zj9SwAWg.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea ._mainArea ._contents4 ._headCap {
    margin-top: 14px;
}
#gundam #pickup .infoArea ._mainArea ._contents4 ._imgArea {
    width: 94%;
    margin: auto;
}
#gundam #pickup .infoArea ._mainArea ._contents4 ._copyList {
    text-align: right;
    font-size: 12px;
    width: 96%;
    margin: auto;
}

/* 5枚目 20231107商店キャンペーン用 */
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents5 {
    background: url(https://tamashiiweb.com/special/gundam/img/20231107/pickup_bg2-2_pc_Pq5WDvgf.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._headCap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 92%;
    margin: 26px auto 34px;
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._headCap img {
    display: block;
    margin: 20px 15px;
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._headCap img:nth-of-type(1) {
    width: calc(518 / 830 * 100%);
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._headCap img:nth-of-type(2) {
    width: calc(312 / 830 * 100%);
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._headcatch {
    margin: 48px auto 14px;
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._imgArea{
    width: 94%;
    margin: 0 auto;
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._headcatch ._txt {
    color: #d41703;
    font-size: 50px;
    font-weight: 600;
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._imgThum{
    width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._linkBtn._tn2023 ._btn a {
    position: relative;
    border-radius: 40px;
    background: #b40001;
    color: #fff;
    font-size: 28px;
    padding: 0.6em 2.8em 0.6em 2.4em;
}
#gundam #pickup .infoArea ._mainArea ._contents5 ._imgArea {
    transform: translateX(0);
}

/* 6枚目 20240129 digi-fig */
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents6 {
    background: url(https://tamashiiweb.com/special/gundam/img/20240129/pickup_bg_dp_u2bfas8q.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._headcatch {
    margin: 10px auto 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._headcatch ._txt{
    color: #fff;
    font-size: 22px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 600;
    line-height: 2em;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._headcatch img{
    width: auto;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._linkBtn {
    margin-top: 50px;
    margin-bottom: 34px;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._headCap {
    background: url(https://tamashiiweb.com/special/gundam/img/20240129/slide02_digifig_titlebg_w7b5qa2d.png) no-repeat center center;
    background-size: 100% auto;
    width: 557px;
    height: 64px;
    margin: 40px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._headCap span{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._headCap2 {
    display: flex;
    align-items: center;
    justify-content: center;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._headCap2 span{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #009ff9 0%, #49c581 100%);
    background: -webkit-linear-gradient(0deg, #009ff9 0%, #49c581 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._yt iframe {
    width: 912px;
    height: 515px;
}
#gundam #pickup .infoArea ._mainArea ._contents6 ._linkBtn ._btn._bl a {
    background: url(https://tamashiiweb.com/special/gundam/img/20240129/slide02_digifig_linkbtn_w7b5qa2d.png) no-repeat center center;
    background-size: 100% 100%;
}

/* 7枚目 20240129更新*/
#gundam #pickup .infoArea ._mainArea ._contents7{
    position: relative;
}
#gundam #pickup .infoArea ._mainArea ._contents7 ._headCap{
    z-index: 10;
}
#gundam #pickup .infoArea ._mainArea ._contents7 ._headcatch{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    width: 90%;
}
#gundam #pickup .infoArea ._mainArea ._contents7 ._headcatch img{
    width: auto;
    margin-top: -12px;
}
#gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea{
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}
#gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea img {
  width: 787px;
}
#gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea2{
    text-align: center;
}

#gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea2 img {
    width: 787px;
}
#gundam #pickup .infoArea ._mainArea ._contents7 ._linkBtn {
    margin-top: 30px;
}
#gundam #pickup .infoArea h2.rightH2 {
    top: 71px;
}


/* 8枚目 20240221更新*/
#gundam #pickup .infoArea ._mainArea ._contents8{
    position: relative;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents8 {
    background: url(https://tamashiiweb.com/special/gundam/img/20240221/pickup_cgk_bg_a7v9nk83.png) no-repeat center center;
    background-size: 100% 100%;
}
#gundam #pickup .infoArea .info-slider ._contents8 .contents_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 24px;
}
#gundam #pickup .infoArea ._mainArea ._contents8 ._headcatch{
    margin: 40px auto 40px;
}
#gundam #pickup .infoArea ._mainArea ._contents8 ._imgArea p{
    color: #fff;
    font-size: 18px;
    line-height: 2em;
    text-align: center;
    margin-top: 40px;
}
#gundam #pickup .infoArea ._mainArea ._contents8 ._linkBtn {
    margin-top: 40px;
}
#gundam #pickup .infoArea ._mainArea ._contents8 ._linkBtn ._btn._bl a {
    background: #7d4698;
    clip-path: polygon(10% 0, 100% 0, 100% 50%, 90% 100%, 0 100%, 0 50%);
    transition: .2s ease-in-out;
    position: relative;
}
#gundam #pickup .infoArea ._mainArea ._contents8 ._linkBtn ._btn._bl a:hover {
    opacity: 1;
    background: #681e8d;
}
#gundam #pickup .infoArea ._mainArea ._contents8 ._linkBtn ._btn._bl a:before {
    content: "";
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, .2);
    transform: rotate(-45deg);
    position: absolute;
    top: -10%;
    left: -180%;
    transition: .5s ease-in-out;
}
#gundam #pickup .infoArea ._mainArea ._contents8 ._linkBtn ._btn._bl a:hover:before {
    left: 60%;
}

/* 9枚目 20240304更新*/
#gundam #pickup .infoArea ._mainArea ._contents9{
  position: relative;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 {
  padding: 72px 50px 90px;
  overflow: hidden;
  background: url(https://tamashiiweb.com/special/gundam/img/20240304/pickup_lmt_bg_f9sdbka7.png) no-repeat center center;
  background-size: 100% 100%;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .contents_inner {
  padding: 0;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._headlogo {
  width: 480px;
  margin: 0px auto 50px;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._headcatch {
  margin: 55px auto 50px;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._headcatch img {
  display: block;
  width: 365px;
  margin: 0px auto 30px;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._headcatch p {
  text-align: center;
  line-height: 1.55;
  letter-spacing: 2.2px;
  font-size: 25px;
  font-weight: bold;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._imgArea {
  width: 900px;
  height: 700px;
  background: url(https://tamashiiweb.com/special/gundam/img/20240304/pickup_mb_bg_u4a2rnhe.jpg) no-repeat center center;
  background-size: contain;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._imgArea .img1 {
  width: 650px;
  position: absolute;
  top: 35%;
  right: -5%;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox {
  width: 406px;
  /* padding-top: 180px; */
  margin: auto auto auto 45px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .brand {
  display: flex;
  align-items: center;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .brand .item {
  width: 125px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  background: #001046;
  color: #fff;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .brand .mb-logo  {
  width: 265px;
  margin-right: auto;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .ttl p {
  letter-spacing: 1.75px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .ttl .name {
  display: flex;
  flex-direction: column;
  margin-top: 58px;
  margin-bottom: 0px;
  letter-spacing: 3px;
  font-size: 30px;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .ttl .name span {
  font-size: 22px;
  font-weight: bold;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox ._linkBtn ._btn a {
  min-width: 400px;
  margin-top: 14px;
  margin-bottom: 0;
  background: url(https://tamashiiweb.com/special/gundam/img/20240304/pickup_btn_lmt_gGQye4bK.png) no-repeat center center;
  background-size: 100% 100%;
}

/* 10枚目 20240319更新*/
#gundam #pickup .infoArea ._mainArea ._contents10{
  position: relative;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 {
  padding: 25px 30px 110px;
  overflow: hidden;
  background: url(https://tamashiiweb.com/special/gundam/img/20240319/pickup_lmt_bg_i8j2kzsr.png) no-repeat center center;
  background-size: 100% 100%;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 .contents_inner {
  padding: 0;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 .contents_inner ._headcatch {
  margin: 0 auto 28px;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 .contents_inner ._headcatch img {
  display: block;
  width: 346px;
  margin: 0 auto 45px;
}
#gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 .contents_inner ._headcatch p {
  text-align: center;
  line-height: 1.5;
  font-size: 26px;
  font-weight: bold;
}

/* NEWS
======================== */
#gundam #news {
    position: relative;
}
#gundam #news h2.ttl {
    position: absolute;
    left: 0;
    top: 42%;
    transform: translateY(-50%);
    width: calc((100vw - 1000px) / 2 + (1000px - 680px));
    z-index: 3;
}


/* ITEM
======================== */
#gundam #item {
    padding: 90px 0 1px;
}
#gundam #item .block_inner {
    width: 100%;
    /* min-width: 1080px; */
    /* max-width: 1200px; */
}

/* タブ */
#gundam #item #categoryTab {
    position: relative;
    /* width: 1080px; */
    background: #031621;
    padding: 50px;
    margin: 50px auto;
}
#gundam #item #categoryTab .tab_btn_area {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1080px;
    margin: auto;
}
#gundam #item #categoryTab .tab_btn_area .tab_btn {
    position: relative;
    background: #062638;
    /* border-bottom: 2px solid #7f7f7f; */
    border: 2px solid #7f7f7f;
    width: 100%;
    margin: 0 15px;
    padding: 14px 19%;
}
#gundam #item #categoryTab .tab_btn_area .tab_btn.is-open {
    background: #fff;
    /* border-bottom: 2px solid #fff; */
    border: 2px solid #fff;
}
/* #gundam #item #categoryTab .tab_btn_area .tab_btn.is-open::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/item_tablabel_on_deco_XUuzk4wN.png) no-repeat center center;
    background-size: contain;
    width: 80px;
    height: 25px;
} */
#gundam #item #categoryTab .tab_btn_area .tab_btn:hover {
    cursor: pointer;
}
#gundam #item #categoryTab .tab_area {
    background: #031621;
}
#gundam #item #categoryTab .tab_panel {
    padding: 30px 10px 0;
}
#gundam #item #categoryTab .tab_panel ul.seriesList,
#gundam #item #categoryTab .tab_panel ul.brandList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li,
#gundam #item #categoryTab .tab_panel ul.brandList li {
    opacity: 1;
    position: relative;
    width: calc(100% / 3 - 32px);
    margin: 16px;
    -webkit-transition: .4s cubic-bezier(.19,1,.22,1);
    -moz-transition: .4s cubic-bezier(.19,1,.22,1);
    -ms-transition: .4s cubic-bezier(.19,1,.22,1);
    -o-transition: .4s cubic-bezier(.19,1,.22,1);
    transition: .4s cubic-bezier(.19,1,.22,1);
}
#gundam #item #categoryTab .tab_panel ul.seriesList li::before,
#gundam #item #categoryTab .tab_panel ul.brandList li::before,
#gundam #item #categoryTab .tab_panel ul.seriesList li::after,
#gundam #item #categoryTab .tab_panel ul.brandList li::after {
    content: "";
    position: absolute;
    background: #e5e5e5;
    width: 0;
    height: 3px;
    transition: all 0.2s linear;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li::before,
#gundam #item #categoryTab .tab_panel ul.brandList li::before {
    right: 0;
    bottom: 0;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li::after,
#gundam #item #categoryTab .tab_panel ul.brandList li::after {
    left: 0;
    top: 0;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li span,
#gundam #item #categoryTab .tab_panel ul.brandList li span {
    display: block;
    border: 4px solid #031621;
    padding: 4px;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li span::before,
#gundam #item #categoryTab .tab_panel ul.brandList li span::before,
#gundam #item #categoryTab .tab_panel ul.seriesList li span::after,
#gundam #item #categoryTab .tab_panel ul.brandList li span::after {
    content: "";
    position: absolute;
    background: #e5e5e5;
    width: 3px;
    height: 0;
    transition: all 0.2s linear;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li span::before,
#gundam #item #categoryTab .tab_panel ul.brandList li span::before {
    left: 0;
    bottom: 0;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li span::after,
#gundam #item #categoryTab .tab_panel ul.brandList li span::after {
    right: 0;
    top: 0;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li._on::before,
#gundam #item #categoryTab .tab_panel ul.brandList li._on::before,
#gundam #item #categoryTab .tab_panel ul.seriesList li._on::after,
#gundam #item #categoryTab .tab_panel ul.brandList li._on::after,
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover::before,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover::before,
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover::after,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover::after {
    width: 100%;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover::after,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover::after {
    transition-delay: 0s;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover::before,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover::before {
    transition-delay: 0.3s;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li._on span::before,
#gundam #item #categoryTab .tab_panel ul.brandList li._on span::before,
#gundam #item #categoryTab .tab_panel ul.seriesList li._on span::after,
#gundam #item #categoryTab .tab_panel ul.brandList li._on span::after,
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover span::before,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover span::before,
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover span::after,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover span::after {
    height: 100%;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover span::before,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover span::before {
    transition-delay: 0.5s;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover span::after,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover span::after {
    transition-delay: 0.2s;
}

#gundam #item #categoryTab .tab_panel ul.seriesList li._off,
#gundam #item #categoryTab .tab_panel ul.brandList li._off {
    opacity: .4;
}
#gundam #item #categoryTab .tab_panel ul.seriesList li:hover,
#gundam #item #categoryTab .tab_panel ul.brandList li:hover {
    cursor: pointer;
    transform: scale(1.1);
}
#gundam #item #categoryTab .tab_panel ._notes {
    color: #fff;
    text-align: center;
    margin-top: 20px;
}


/* 絞り込み解除 */
#gundam #item #categoryTab .resetBtn {
    position: absolute;
    top: 30px;
    left: calc(100% + 40px);
    width: max-content;
    z-index: 1;
}
#gundam #item #categoryTab .resetBtn._fixed {
    position: fixed ;
    top: auto;
    bottom: 30px;
    left: calc((100vw - 1000px) / 2 + 1000px + 20px);
}
#gundam #item #categoryTab .resetBtn a._btn {
    display: block;
    background: url(https://tamashiiweb.com/special/gundam/img/item_btnbg_narrowdown_e5D3pLJ6.jpg) no-repeat center center;
    background-size: 100% 100%;
    box-shadow: 0 0 20px rgba(55,168,215,.75);
    color: #fff;
    text-align: center;
    font-size: 16px;
    padding: 1em 1.1em;
    animation: blink2 2s ease-in-out infinite;
}
#gundam #item #categoryTab .resetBtn a._btn:hover {
    cursor: pointer;
}
/* アニメーション */
@keyframes blink2 {
    50% {
        box-shadow: 0 0 0px rgba(55,168,215,.75);
    }
}




/* 商品一覧 */
#gundam #category_search .search_main_wrap .order_wrap label span {
    color: #fff;
    border-color: #fff;
}
#gundam #gi_productlist .search_result {
    color: #fff;
}
#gundam #gi_productlist .search_result .txt {
    border-color: #fff;
}
#gundam #gi_productlist .pagenavi li a {
    background: #b3b3b3;
    color: #444;
}
#gundam #gi_productlist .pagenavi li.active a,
#gundam #gi_productlist .pagenavi li a:hover,
#gundam #gi_productlist .pagenavi li a:active {
    background: #062638;
    color: #fff;
    border: 2px solid;
}

#gundam #gi_productlist .product_search_list .item_info {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}
#gundam #gi_productlist .product_search_list .item_info .item_detail {
    margin-bottom: 60px;
}
#gundam #gi_productlist .product_search_list .item_name {
    margin-bottom: 10px;
}
#gundam #gi_productlist .product_search_list .label_shop {
    display: block;
    position: relative;
    background: none;
    color: #3b3b3b;
    font-size: 14px;
    width: 100%;
    margin: auto auto 15px;
    padding: 0;
}
#gundam #gi_productlist .product_search_list .label_shop::before {
    display: none;
}
#gundam #gi_productlist .product_search_list .label_shop::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7.5px;
    transform: translateX(-50%);
    background: #3b3b3b;
    width: 100%;
    height: 2px;
}
#gundam #gi_productlist .product_search_list .item_info .sale_area {
    margin-top: 0;
    margin-bottom: 0;
}
#gundam #gi_productlist .sale_area p {
    width: 100%;
}
#gundam #gi_productlist .product_search_list .item_info .sale_area .area_btn_wrap {
    width: 100%;
}
#gundam #gi_productlist .product_search_list .area_btn,
#gundam #gi_productlist .product_search_list .area_btn._on {
    position: relative;
    color: #3B3B3B;
    font-weight: 500;
    letter-spacing: 1px;
    height: 30px;
}
#gundam #gi_productlist .sale_area .area_btn._on {
    background: #cae7ea;
    border: 1px solid #cae7ea;
    color: #333;
}
#gundam #gi_productlist .product_search_list .area_btn._on:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2.5px;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #3B3B3B transparent transparent transparent;
}
#gundam #gi_productlist .product_search_list .item_link .no-link {
    color: #3b3b3b;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
}
#gundam #gi_productlist .product_search_list .area_cate span {
    color: #233b84;
}
#gundam #gi_productlist .product_search_list .site_btn a:hover,
#gundam #gi_productlist .product_search_list .shop_wrap .dc_btn span:hover {
    color: #233b84;
}
#gundam #gi_productlist .product_search_list .site_btn a,
#gundam #gi_productlist .product_search_list .shop_wrap .dc_btn span {
    background: #233b84;
    border: 1px solid #233b84;
}
#gundam #gi_productlist .product_search_list .site_btn a:hover:after {
    background: #233b84;
}
#gundam #gi_productlist .product_search_list .shop_wrap .dc_btn span:after {
    background: #fff;
}
#gundam #gi_productlist .product_search_list .shop_wrap .dc_btn span:hover:after {
    background: #233b84;
}
#gundam #gi_productlist .product_search_list .item_link a {
    padding: 10px 10px;
}
#gundam #gi_productlist .product_search_list .area_cont_wrap {
    box-shadow: 0px 3px 6px rgb(0 0 0 / 25%);
}

#gundam #gi_productlist .area_notes ._txt {
    color: #fff;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin: 30px 0;
}
#gundam #gi_productlist .area_notes ._txt img {
    display: inline-block;
    width: auto;
    max-width: 104px;
    margin: 0 5px;
}



/* BRAND
======================== */
#gundam #brand {
    padding: 90px 0;
}
#gundam #brand #brandIntro ._mainArea {
    margin: 8vw auto 2vw;
}
#gundam #brand #introTab {
    position: relative;
    background: url(https://tamashiiweb.com/special/gundam/img/brand_main_borderbg_9wQhexXN.png) repeat-x center bottom;
    padding: 0 16vw;
}
#gundam #brand #introTab .tab_inner {
    background: url(https://tamashiiweb.com/special/gundam/img/brand_main_circlebg_9TdkMiiM.png) no-repeat center bottom 15px;
    background-size: 100%;
    height: 44vw;
    padding: 22% 0 40px;
}

#gundam #brand #introTab .tab_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background: url(https://tamashiiweb.com/special/gundam/img/brand_intro_off_iconbg_BtD7YLth.png) no-repeat center center;
    background-size: 140%;
    transform: translate(-50%, -50%);
    width: 10vw;
    height: 10vw;
    padding: 2.6vw;
    -webkit-transition: .8s cubic-bezier(.19,1,.22,1);
    -moz-transition: .8s cubic-bezier(.19,1,.22,1);
    -ms-transition: .8s cubic-bezier(.19,1,.22,1);
    -o-transition: .8s cubic-bezier(.19,1,.22,1);
    transition: .8s cubic-bezier(.19,1,.22,1);
}
#gundam #brand #introTab .tab_btn.is-open {
    background: url(https://tamashiiweb.com/special/gundam/img/brand_intro_on_iconbg_XLuR8ruJ.png) no-repeat center center;
    background-size: 140%;
    transform: translate(-50%, -50%) scale(1.2);
}
#gundam #brand #introTab .tab_btn span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-transition: .8s cubic-bezier(.19,1,.22,1);
    -moz-transition: .8s cubic-bezier(.19,1,.22,1);
    -ms-transition: .8s cubic-bezier(.19,1,.22,1);
    -o-transition: .8s cubic-bezier(.19,1,.22,1);
    transition: .8s cubic-bezier(.19,1,.22,1);
}
#gundam #brand #introTab .tab_btn:not(.is-open):hover {
    cursor: pointer;
    transform: translate(-50%, -50%) rotate(180deg);
}
#gundam #brand #introTab .tab_btn.is-open:hover {
    cursor: default;
}
#gundam #brand #introTab .tab_btn:not(.is-open):hover span {
    transform: rotate(-180deg) scale(1.1);
}

#gundam #brand #introTab .tab_btn img._off {
    margin-top: 0.4vw;
}
#gundam #brand #introTab .tab_btn img._off:last-of-type {
    width: 140%;
}
#gundam #brand #introTab .tab_btn._bil1 {
    top: 35vw;
    left: 17vw;
}
#gundam #brand #introTab .tab_btn._bil2 {
    top: 23vw;
    left: 19vw;
}
#gundam #brand #introTab .tab_btn._bil3 {
    top: 11vw;
    left: 24vw;
}
#gundam #brand #introTab .tab_btn._bil4 {
    top: 4vw;
    left: 36vw;
}
#gundam #brand #introTab .tab_btn._bil5 {
    top: 1vw;
    left: 49.3vw;
}
#gundam #brand #introTab .tab_btn._bil6 {
    top: 4vw;
    left: 63vw;
}
#gundam #brand #introTab .tab_btn._bil7 {
    top: 11vw;
    left: 75vw;
}
#gundam #brand #introTab .tab_btn._bil8 {
    top: 23vw;
    left: 80vw;
}
#gundam #brand #introTab .tab_btn._bil9 {
    top: 35vw;
    left: 82vw;
}


#gundam #brand #introTab .tab_panel .contentsbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 26vw;
    margin: auto;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandImg {
    position: relative;
    width: 50%;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandImg::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0px 0 15px #47a0ba inset, 0px 0 15px #47a0ba inset;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandImg a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandImg img {
    outline: 1px solid #d7e9f2;
    box-shadow: 0px 0 15px #47a0ba, 0px 0 15px #47a0ba;
    -webkit-transition: .4s cubic-bezier(.19,1,.22,1);
    -moz-transition: .4s cubic-bezier(.19,1,.22,1);
    -ms-transition: .4s cubic-bezier(.19,1,.22,1);
    -o-transition: .4s cubic-bezier(.19,1,.22,1);
    transition: .4s cubic-bezier(.19,1,.22,1);
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandImg a:hover + img {
    box-shadow: 0px 0 15px #47a0ba, 0px 0 15px #47a0ba, 0px 0 20px #47a0ba, 0px 0 20px #47a0ba;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandTxt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    margin-left: 20px;
    overflow-y: auto;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p {
    color: #fff;
    text-shadow: 0 0 0.3vw rgba(0,0,0,.6);
    /* font-size: 0.8vw; */
    letter-spacing: 0.04em;
    line-height: 1.8;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p._btn {
    text-align: center;
    margin-top: 1vw;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p._btn a {
    display: inline-block;
    border: 1px solid #fff;
    width: 8vw;
    padding: 0.6vw 1.3vw;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p._btn a:hover {
    transform: translateY(-5px);
    box-shadow: 1px 3px 5px rgba(0,0,0,.15), -1px 3px 5px rgba(0,0,0,.15);
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p._btn a img {
    filter: drop-shadow(0 0 0.3vw rgba(0,0,0,.6));
    vertical-align: middle;
}
#gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p._btn a:hover img {
    opacity: 1;
}

/* バナー */
#gundam #brand #brandBnr {
    margin: 70px auto 30px;
}
#gundam #brand #brandBnr ._img {
    width: 800px;
    margin: 70px auto 0;
}



/* Shop
======================== */
#gundam #shop {
    padding: 90px 0;
}





/* Footer上
======================== */
#gundam #semiFoot {
    padding: 60px 0;
}


/* 注意事項
======================== */
#gundam #notice {
    color: #fff;
    margin-bottom: 90px;
}


/* フッターSNS
======================== */
#gundam #snsArea {
    margin-bottom: 50px;
}
#gundam #snsArea ul._iconList {
    display: flex;
    justify-content: center;
    align-items: center;
}
#gundam #snsArea ul._iconList li {
    margin: 0 20px;
}

/* Copyright
======================== */
#gundam #copyArea ._copyList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#gundam #copyArea ._copyList li {
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    margin: 0.2em 0.3em;
}




/*================================================================*/



@media screen and (max-width: 768px) {

    /* 全体
    ======================== */
    #gundam .block_inner {
        width: 96%;
    }
    #gundam .contentsbox h2.ttl {
        margin: auto;
        padding-bottom: 6vw;
    }
    #gundam .contentsbox h2.ttl img {
        width: 100%;
    }
    #gundam .contentsbox h2.ttl::before {
        width: 18vw;
        height: 1px;
    }

    /* 背景
    ======================== */
    #gundam #bg_fixed_wrap > div:first-of-type {
        background-attachment: scroll;
    }



    /* Header
    ======================== */
    #gundam #header .header_inner {
        padding: 2vw;
    }
    #gundam #header ._siteTitle {
        max-width: 80vw;
        margin-left: 0;
    }

    /* Hamburger
    ======================== */
    /* ボタン */
    #gundam #g1 #menuBtn,
    #gundam #g1 #menuBtn span {
        display: inline-block;
        -webkit-transition: .4s cubic-bezier(.19,1,.22,1);
        -moz-transition: .4s cubic-bezier(.19,1,.22,1);
        -ms-transition: .4s cubic-bezier(.19,1,.22,1);
        -o-transition: .4s cubic-bezier(.19,1,.22,1);
        transition: .4s cubic-bezier(.19,1,.22,1);
    }
    #gundam #g1 #menuBtn {
        position: fixed;
        top: 4vw;
        right: 4vw;
        width: 6vw;
        height: 6vw;
        cursor: pointer;
        z-index: 16;
    }
    #gundam #g1 #menuBtn span {
        position: absolute;
        right: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 2px;
        background: #fff;
        box-shadow: 0 0 0.6vw rgba(6,38,56,.25), 0 0 0.6vw rgba(6,38,56,.25), 0 0 0.6vw rgba(6,38,56,.25), 0 0 0.6vw rgba(6,38,56,.25);
    }
    #gundam #g1 #menuBtn span:nth-of-type(1) {
        top: 16%;
    }
    #gundam #g1 #menuBtn span:nth-of-type(2) {
        top: 50%;
    }
    #gundam #g1 #menuBtn span:nth-of-type(3) {
        top: 84%;
    }

    /* メニュー */
    #gundam #g1 #hamburger {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        background: #062638;
        width: 100%;
        height: 100vh;
        z-index: 15;
    }
    #gundam #g1 #hamburger ul.menuList {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 2vh 0;
    }
    #gundam #g1 #hamburger ul.menuList li {
        margin: 1vh 0;
    }
    #gundam #g1 #hamburger ul.menuList li a {
        display: inline-block;
        padding: 1vh;
    }

    #gundam #g1 #hamburger ul.snsList {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2vh 0;
    }
    #gundam #g1 #hamburger ul.snsList li {
        margin: 1vh 2vw;
    }
    #gundam #g1 #hamburger ul.snsList li a {
        display: inline-block;
        padding: 1vh;

    }

    /* Open */
    #gundam #g1.menu-open #header {
        box-shadow: none;
    }
    #gundam #g1.menu-open #menuBtn span:nth-of-type(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    #gundam #g1.menu-open #menuBtn span:nth-of-type(2) {
        opacity: 0;
    }
    #gundam #g1.menu-open #menuBtn span:nth-of-type(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    /* MV
    ======================== */
    #gundam #mv {
        margin-top: 6vw;
    }
    /* 赤枠
    =========================*/
    .red_notes {
        margin-bottom: 6vw;
    }
    .red_notes p {
        font-size: 3.0vw;
    }
    .red_notes p ._date {
        font-size: 3.0vw;
        font-weight: 500;
    }


    /* Pick up info
    ======================== */
    /* スライダー */
    .info-slider .swiper-pagination {
        bottom: -8vw;
    }
    .swiperThumbnail .swiper-pagination-thumb span.swiper-pagination-bullet,
    .info-slider .swiper-pagination span.swiper-pagination-bullet {
        width: 2vw;
        height: 2vw;
        margin: 0 1vw;
    }
    .swiperThumbnail .swiper-button-prev-thumb,
    .swiperThumbnail .swiper-button-next-thumb,
    .info-slider .swiper-button-prev,
    .info-slider .swiper-button-next {
        bottom: -16vw;
        width: 20vw;
        height: 4vw;
    }
    .swiperThumbnail .swiper-button-prev-thumb,
    .info-slider .swiper-button-prev {
        left: 26%;
    }
    .swiperThumbnail .swiper-button-next-thumb,
    .info-slider .swiper-button-next {
        right: 26%;
    }
    .swiperThumbnail .swiper-button-prev-thumb:after,
    .info-slider .swiper-button-prev:after {
        background: #f3f3f3 url(https://tamashiiweb.com/special/gundam/img/news_slider_prev_j8hMd4mz.png) no-repeat center center;
        background-size: 80%;
        padding: 2vw;
    }
    .swiperThumbnail .swiper-button-next-thumb:after,
    .info-slider .swiper-button-next:after {
        background: #f3f3f3 url(https://tamashiiweb.com/special/gundam/img/news_slider_next_ds7FzAWG.png) no-repeat center center;
        background-size: 80%;
        padding: 2vw;
    }
    .swiperThumbnail .swiper-button-next-thumb.swiper-button-disabled,
    .swiperThumbnail .swiper-button-prev-thumb.swiper-button-disabled {
        opacity: .35;
        cursor: auto;
        pointer-events: none;
    }
        /* PICKUP 上　ページネーション
    ======================== */
    .swiperThumbnail {
        height: 14vw;
        margin-top: 6vw;
        margin-bottom: 4vw;
    }
    .swiperThumbnail .swiper-button-prev-thumb,
    .swiperThumbnail .swiper-button-next-thumb {
        top: 2vw;
        bottom:inherit;
    }
    .swiperThumbnail .swiper-wrapper {
        display: none;
        height: 2.1vw !important;
        position: absolute;
        bottom: 0;
    }
    /* .swiperThumbnail .swiper-wrapper .swiper-slide {
        width: 2.1vw !important;
        height: 2.1vw !important;
        margin-top: auto;
        background: #4e4e4e;
    } */
    /* .swiperThumbnail .swiper-wrapper .swiper-slide:not(:first-of-type) {
        margin-left: 2.1vw !important;
    } */


    #gundam #pickup {
        padding: 14vw 0 28vw;
    }
    #gundam #pickup .infoArea {
        width: 96%;
    }
    #gundam #pickup.contentsbox h2.ttl {
        width: 74vw;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide {
        background: url(https://tamashiiweb.com/special/gundam/img/pickup_bg_sp_LAsH8mR7.png) no-repeat center center;
        background-size: 100% 100%;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide-active {

    }
    #gundam #pickup .infoArea .info-slider .contents_inner {
        padding: 8vw 4vw;
    }
    #gundam #pickup .infoArea ._mainArea ._headCap {
        width: 68%;
        margin: 0 auto 4vw;
    }
    #gundam #pickup .infoArea ._mainArea ._headcatch {
        margin: 4vw auto 3vw;
    }
    #gundam #pickup .infoArea ._mainArea ._headcatch ._txt {
        font-size: 3.75vw;
    }
    #gundam #pickup .infoArea ._mainArea ._yt {
        margin: 3vw auto 2vw;
    }
    #gundam #pickup .infoArea ._mainArea ._yt iframe {
        width: 84vw;
        height: calc(84vw * 9 / 16);
    }
    #gundam #pickup .infoArea ._mainArea ._contents1 ._imgArea {
        margin-left: -4vw;
    }
    #gundam #pickup .infoArea ._mainArea ._catch {
        margin: 4vw auto 3vw;
    }
    #gundam #pickup .infoArea ._mainArea ._catch ._txt {
        font-size: 3.2vw;
    }
    #gundam #pickup .infoArea ._mainArea ._linkBtn {
        margin-top: 6vw;
        margin-bottom: 2vw;
    }
    #gundam #pickup .infoArea ._mainArea ._linkBtn ._btn a {
        font-size: 3.6vw;
        min-width: 0;
        padding: 1.0em 3.8em;
    }

    #gundam #pickup .infoArea ._mainArea ._linkBtn ._btn._bl a {
        background: url(https://tamashiiweb.com/special/gundam/img/pickup_btn_bl_sp_sS9uArd8.png) no-repeat center center;
        background-size: 100% 100%;
    }

    #gundam #pickup .infoArea ._mainArea ._linkBtn._flex._f2 ._btn {
        width: 86%;
        margin: 2vw 0;
    }

    /* TN2023リンクボタン */
    #gundam #pickup .infoArea ._mainArea ._linkBtn._tn2023 {
        margin: 4vw auto 3vw;
    }
    #gundam #pickup .infoArea ._mainArea ._linkBtn._tn2023 ._btn a {
        font-size: 3.6vw;
    }

    /* 1枚目 */
    #gundam #pickup .infoArea ._mainArea ._contents1 ._linkBtn {
        margin-top: -8vw;
    }

    /* 2枚目 */
    #gundam #pickup .infoArea ._mainArea ._contents2 ._headCap {
        margin: 1vw auto 4vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents2 ._headCap img {
        margin: 3% 1.55%;
    }
    #gundam #pickup .infoArea ._mainArea ._contents2 ._headcatch {
        margin: 7vw auto 2vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents2 ._headcatch ._txt {
        font-size: 4.8vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents2 ._imgArea {
        width: 100%;
        margin: 0;
    }

    /* 3枚目 */
    #gundam #pickup .infoArea ._mainArea ._contents3 ._headcatch {
        margin: 8vw auto 6vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents3 ._linkBtn {
        margin-top: 8vw;
        margin-bottom: 18vw;
    }

    /* 4枚目 */
    #gundam #pickup .infoArea ._mainArea ._contents4 ._headCap {
        margin-top: 0;
    }
    #gundam #pickup .infoArea ._mainArea ._contents4 ._copyList {
        font-size: 2.4vw;
    }

    /* 5枚目 20231107商店キャンペーン用*/
    #gundam #pickup .infoArea ._mainArea ._contents5 ._headCap {
        margin: 1vw auto 4vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents5 ._headCap img {
        margin: 3% 1.55%;
    }
    #gundam #pickup .infoArea ._mainArea ._contents5 ._headcatch {
        margin: 7vw auto 2vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents5 ._headcatch ._txt {
        font-size: 4.8vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents5 ._imgThum{
        width: 100%;
        margin: 0 auto;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents5 ._imgThum img{
        width: calc(25% - 8px);
    }
        #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents5 {
        background: url(https://tamashiiweb.com/special/gundam/img/20231107/pickup_bg2-2_sp_Pq5WDvgf.png) no-repeat center center;
        background-size: 100% 100%;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents5 .contents_inner {
        padding: 5.3vw 4vw 8vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents5 ._imgArea {
        width: 100%;
        margin: 0;
    }
    #gundam #pickup .infoArea ._mainArea ._contents5 ._linkBtn._tn2023 {
        margin: 4vw auto 3vw;
    }
    #gundam #pickup .infoArea ._mainArea ._contents5 ._linkBtn._tn2023 ._btn a {
        font-size: 3.6vw;
    }

    /* 6枚目 20240129 digi-fig*/
    #gundam #pickup .infoArea ._mainArea ._contents6 ._headCap {
        width: 100%;
        height: auto;
        background-size: 100% 100%;
        margin: 20px auto 10px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents6 ._headCap span {
        font-size: 15px;
        padding: 10px 0;
    }
    #gundam #pickup .infoArea ._mainArea ._contents6 ._headCap2 span {
        font-size: 26px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents6 ._headcatch img {
        width: 90%;
    }
    #gundam #pickup .infoArea ._mainArea ._contents6 ._headcatch {
        margin: 10px auto 25px;
        gap: 25px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents6 ._headcatch ._txt {
        font-size: 13px;
    }
    .dis-pc{
        display: none;
    }
    #gundam #pickup .infoArea ._mainArea ._contents6 ._yt iframe {
        width: 84vw;
        height: calc(84vw * 9 / 16);
    }
    #gundam #pickup .infoArea ._mainArea ._contents6 ._linkBtn {
        margin-top: 30px;
        margin-bottom: 10px;
    }

    /* 7枚目 20240129更新 */
    #gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea {
      margin-bottom: 20px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea ._img1 img {
        height: auto;
        width: 100%;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._headCap {
        top: 22px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._headCap {
        width: 52%;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._headcatch img {
        width: 100px;
        margin-top: -5px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._headcatch {
        top: 89px;
        justify-content: space-between;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea ._img2 {
        right: 0;
        bottom: 5px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea ._img2 img{
        width: 60px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._imgArea2 img {
        width: 100%;
    }
    #gundam #pickup .infoArea ._mainArea ._contents7 ._linkBtn {
        margin-top: 30px;
    }


    /* 8枚目 20240221更新 */
    #gundam #pickup .infoArea ._mainArea ._contents8 ._imgArea ._img1 img {
        height: auto;
        width: 100%;
    }
    #gundam #pickup .infoArea .info-slider ._contents8 .contents_inner {
        padding: 8vw 4vw;
    }
    #gundam #pickup ._contents8 ._headlogo{
        width: 50%;
    }
    #gundam #pickup .infoArea ._mainArea ._contents8 ._headcatch {
        margin: 20px auto;
    }
    #gundam #pickup .infoArea ._mainArea ._contents8 ._imgArea p {
        color: #fff;
        font-size: 12px;
        margin-top: 20px;
    }
    #gundam #pickup .infoArea ._mainArea ._contents8 ._linkBtn {
        margin-top: 20px;
    }


    /* 9枚目 20240304更新*/
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 {
      padding: 8vw 4vw;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._headlogo {
      width: 70%;
      margin: 2vw auto 0px;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._headcatch {
      margin: 7vw auto ;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._headcatch img {
      display: block;
      width: 60%;
      margin: 0px auto 4vw;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._headcatch p {
      font-size: 3.4vw;
      letter-spacing: .1vw;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._imgArea {
      width: 100%;
      height: 92vw;
      background: url(https://tamashiiweb.com/special/gundam/img/20240304/pickup_mb_bg-sp_u4a2rnhe.jpg) no-repeat center center;
      background-size: contain;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 ._imgArea .img1 {
      width: 70vw;
      position: absolute;
      top: 58vw;
      right: -12%;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox {
      width: 92%;
      padding-top: 8.5vw;
      margin: auto;
      position: relative;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .brand {
      width: 24vw;
      position: absolute;
      top: -11vw;
      left: 0%;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .brand .item {
      width: 100%;
      height: 10vw;
      font-size: 2.9vw;
      font-weight: 500;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .brand .mb-logo {
      width: 100%;
      margin-top: 0;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .ttl .name {
      margin-top: 0;
      margin-bottom: 0;
      line-height: 1.25;
      letter-spacing: .5vw;
      font-size: 4.75vw;
      font-weight: bold;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .ttl {
      position: absolute;
      top: 0;
      left: 0;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .ttl .name span {
      letter-spacing: .3vw;
      font-size: 3.5vw;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox .ttl p {
      letter-spacing: .2vw;
      font-size: 3.75vw;
      font-weight: bold;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox ._linkBtn {
      width: 65%;
      position: absolute;
      bottom: -30vw;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 0;
      margin-bottom: 0;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents9 .textBox ._linkBtn ._btn a {
      min-width: 100%;
      margin-top: 0;
      padding: 3vw 4vw;
      font-size: 3vw;
      font-weight: bold;
    }

    /* 10枚目 20240319更新*/
    #gundam #pickup .infoArea ._mainArea ._contents10{
      position: relative;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 {
      padding: 2vw 3vw 8vw;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 .contents_inner {
      padding: 0;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 .contents_inner ._headcatch {
      margin: 0 auto 3vw;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 .contents_inner ._headcatch img {
      display: block;
      width: 30vw;
      margin: 0 auto 3vw;
    }
    #gundam #pickup .infoArea .info-slider .swiper-wrapper li.swiper-slide._contents10 .contents_inner ._headcatch p {
      text-align: center;
      line-height: 1.5;
      font-size: 3vw;
      font-weight: bold;
    }


    /* NEWS
    ======================== */
    #gundam #news h2.ttl {
        left: 4vw;
        width: 36vw;
    }


    /* ITEM
    ======================== */
    #gundam #item {
        padding: 16vw 0 1px;
    }
    #gundam #item .block_inner {
        width: 100%;
        min-width: 0;
    }
    #gundam #item.contentsbox h2.ttl {
        width: 36vw;
    }

    /* タブ */
    #gundam #item #categoryTab {
        padding: 0;
    }
    #gundam #item #categoryTab .tab_btn_area .tab_btn {
        border: none;
        border-bottom: 2px solid #7f7f7f;
        margin: 0;
        padding: 2vw 14vw;
    }
    #gundam #item #categoryTab .tab_btn_area .tab_btn.is-open {
        border: none;
        border-bottom: 2px solid #fff;
    }
    #gundam #item #categoryTab .tab_btn_area .tab_btn.is-open::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: url(https://tamashiiweb.com/special/gundam/img/item_tablabel_on_deco_XUuzk4wN.png) no-repeat center center;
        background-size: contain;
        width: 12vw;
        height: 3.75vw;
    }
    #gundam #item #categoryTab .tab_panel {
        padding: 4vw 3vw;
    }
    #gundam #item #categoryTab .tab_panel ul.seriesList li,
    #gundam #item #categoryTab .tab_panel ul.brandList li {
        width: calc(50% - 4vw);
        margin: 2vw;
    }
    #gundam #item #categoryTab .tab_panel ._notes {
        font-size: 2.6vw;
        margin-top: 2vw;
    }

    /* 絞り込み解除 */
    #gundam #item #categoryTab .resetBtn {
        top: auto;
        left: auto;
        right: 2vw;
        bottom: 2vw;
    }
    #gundam #item #categoryTab .resetBtn._fixed {
        left: auto;
        bottom: 60px;
    }
    #gundam #item #categoryTab .resetBtn a._btn {
        font-size: 2.8vw;
    }

    /* 商品一覧 */
    #gundam #gi_productlist {
        width: 96%;
        margin: 0 auto 12vw;
    }

    #gundam #gi_productlist .product_search_list .item_info {
        padding: 10px 10px;
    }
    #gundam #gi_productlist .product_search_list .item_info .item_detail {
        margin-bottom: 15px;
    }
    #gundam #gi_productlist .product_search_list .item_name {
        margin-bottom: 10px;
    }
    #gundam #gi_productlist .product_search_list .item_link .no-link {
        font-size: 12px;
        margin-bottom: 20px;
        padding-top: 10px;
        padding-bottom: 0;
    }
    #gundam #gi_productlist .sale_area .area_btn_wrap {
        width: 102%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    #gundam #gi_productlist .product_search_list .area_btn {
        color: #A8A8A8;
        width: calc(94%/3);
        margin-right: 1%;
        margin-left: 1%;
        margin-bottom: 2%;
        padding: 1% 0px;
    }
    #gundam #gi_productlist .product_search_list .item_link a {
        padding: 5px 10px;
    }

    #gundam #gi_productlist .area_notes ._txt {
        font-size: 3.2vw;
        margin: 7vw 0;
    }



    /* BRAND
    ======================== */
    #gundam #brand {
        padding: 16vw 0;
    }
    #gundam #brand.contentsbox h2.ttl {
        width: 54vw;
    }

    #gundam #brand #introTab {
        background: none;
        padding: 0;
    }
    #gundam #brand #introTab .tab_inner {
        background: none;
        height: auto;
        padding: 0;
    }
    #gundam #brand #introTab .tab_btn_area {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 96%;
        margin: auto;
    }
    #gundam #brand #introTab .tab_btn {
        position: static;
        transform: translate(0, 0);
        width: calc(29vw * 0.96);
        height: calc(29vw * 0.96);
        margin: 2vw;
        padding: 6.8vw;
    }
    #gundam #brand #introTab .tab_btn.is-open {
        transform: translate(0, 0) scale(1.0);
    }
    #gundam #brand #introTab .tab_btn:not(.is-open):hover {
        transform: translate(0, 0) rotate(180deg);
    }


    #gundam #brand #introTab .tab_area {
        margin-top: 6vw;
    }

    #gundam #brand #introTab .tab_panel .contentsbox {
        width: 96%;
        height: auto;
    }
    #gundam #brand #introTab .tab_panel .contentsbox ._brandImg {
        width: 46%;
    }
    #gundam #brand #introTab .tab_panel .contentsbox ._brandTxt {
        width: 54%;
        margin-left: 4vw;
    }
    #gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p {
        font-size: 3.2vw;
    }
    #gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p._btn {
        margin-top: 3vw;
    }
    #gundam #brand #introTab .tab_panel .contentsbox ._brandTxt p._btn a {
        width: 24vw;
        padding: 1vw 2.6vw;
    }

    #gundam #brand #brandBnr {
        margin: 14vw auto 2vw;
    }
    #gundam #brand #brandBnr ._img {
        width: 90%;
        margin: 8vw auto 0;
    }


    /* Shop
    ======================== */
    #gundam #shop {
        padding: 16vw 0;
    }
    #gundam #shop.contentsbox h2.ttl {
        width: 42vw;
    }


    /* Footer上
    ======================== */
    #gundam #semiFoot {
        padding: 10vw 0;
    }


    /* 注意事項
    ======================== */
    #gundam #notice {
        margin-bottom: 16vw;
    }


    /* フッターSNS
    ======================== */
    #gundam #snsArea {
        margin-bottom: 8vw;
    }
    #gundam #snsArea ul._iconList li {
        width: 12vw;
        margin: 0 3vw;
    }

    /* Copyright
    ======================== */
    #gundam #copyArea ._copyList li {
        font-size: 2.6vw;
    }
}

/*======================



temp.css



======================*/
.u-pcNobreak {
	display:none;
}
@media screen and (max-width: 768px){
.u-pcNobreak {
	display:inline;
}
.u-spNobreak {
	display:none;
}
}
#gundam #pickup .infoArea ._mainArea ._contents20240321{
    position: relative;
    & img {
        width: 100%;
        height: auto;
    }
    ._headCap{
        z-index: 10;
        width: calc(540% / 10);
    }
    ._headcatch{
        z-index: 10;
        width: 90%;
        ._txt {
            font-weight: bold;
        }
    }
    ._imgArea{
        position: relative;
        margin-bottom: 0;
        /* margin-bottom: calc(156% / 10); */
        text-align: center;
        & img {
            width: calc(964% / 10);
        }
    }
    .btmArea {
        position: relative;
    }
    ._imgArea2 {
        width: 100%;
        position: absolute;
        left:0;
        bottom: 0;
    }
    ._name1 {
        font-size: 24px;
        font-weight: bold;
        padding-top: calc(250% / 10);
        padding-left: calc(40% / 10);
        padding-bottom: calc(90% / 10);
        line-height: 1.5;
    }
}
@media screen and (max-width: 768px){
    #gundam #pickup .infoArea ._mainArea ._contents20240321{
        ._img1 img {
            height: auto;
            width: 100%;
        }
        ._headCap {
            top: 22px;
            width: calc(900% / 10);
        }
        ._headcatch {
            top: 89px;
            /* justify-content: space-between; */
            & img {
                width: 100px;
                margin-top: -5px;
            }
        }
        ._name1 {
            font-size: calc(24vw / 7.5);
            padding-top: calc(130% / 10);
            padding-left: calc(10% / 10);
            padding-bottom: calc(220% / 10);
            line-height: 1.7;
        }
    }
}
