@charset "utf-8";
/* CSS Document */

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* コーナータイトル非表示 */
#corner_name .title,
#corner_main_text .title {
    display: none;
}

#corner_contents {
    width: 100%;
	background: #FFFFFF ;

}

/**--------------------------------------- コンテナシステム --*/
.contents_wrap {
    position: relative;
    width: 100%;
}

.container-lg{
	width: 96%;
	margin: 0 auto;
	padding: 3rem 0;
}

.container-md{
	width: 96%;
	margin: 0 auto;
	padding: 3rem 0;
}

.flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-self: stretch;
}

/**------------------------------------------- 商品 --*/
.item_list { margin-top: 20px; }
.item_list ul {
    margin: 0 0 30px;
    padding-top: 0px;
    /*background: rgba(255, 255, 255, 0.5);*/
}
.item_list ul li {
    margin: 0;
    padding: 15px;
}
.item_list ul li a {
    color: #666;
}
.item_list ul li .item_list_thumb {
    background: #fff;
}
.item_list ul li p.price {
    /*color: #999900;*/
}

/**-------------------------------------------- nav --*/
#corner_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#corner_nav ul li {
    margin-bottom: 4px;
    padding: 0 2px;
    width: 50%;
}

#corner_nav ul li a {
    position: relative;
    padding: 15px 0;
    text-align: center;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
}

#corner_nav li a::before {
    position: absolute;
    left: 20px;
    font-family: "Font Awesome 5 free";
    font-size: 1.2em;
    content: "\f078";
}

.btn::before {
    position: absolute;
    left: 20px;
    font-family: "Font Awesome 5 free";
    font-size: 1.2em;
    content: "\f101";
}

/**---------------------------------------- ボタン設定 --*/
.btn {
    position: relative;
    display: block;
    padding: 12px 0 10px;
    text-align: center;
    transition: 0.3s;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    margin: auto;
	margin-top: 1em;
    margin-bottom: 1em;
	width: 90%;
	font-size: 1em;
}

.btn:hover {
    text-decoration: none;
}


a.btn-gradation {
    background-image: radial-gradient(circle at 100% 0%, rgba(243, 152, 0, 0.95) 15%, rgba(230, 0, 18, 1));
    color: #FFFFFF;
    border: 0px !important;
}

a.btn-white {
    background: #FFFFFF;
    color: #fe8600;
    border: 2px #CCC solid !important;
}

a.btn-gray {
    color: #333;
    background: #eee;
    border: 2px #CCC solid !important;
}

a.btn-black {
    color: #FFFFFF;
    background: #333;
    border: 2px #333 solid !important;
}

.btn-shadow {
    transition: box-shadow 0.3s;
    box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
}

.btn-shadow:hover {
    box-shadow: 0 0 0 0 hsl(200deg 50% 20% / 40%);
}

.btn-Twitter::before {
    position: absolute;
    left: 20px;
    font-family: "Font Awesome 5 Brands";
    font-size: 1.2em;
    content: "\f099";
}

.btn-cart::before {
    position: absolute;
    left: 20px;
    font-family: "Font Awesome 5 Free";
    font-size: 1.2em;
    content: "\f07a";
}

/* SP横スクロールボタン設定 */
.horizontal_scroll {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0 12px 8px;
  display: -ms-flexbox;
  display: flex;
}

.horizontal_scroll li{
	position: relative; 
}

.horizontal_scroll > li {
  width: 100%;
  min-width: 80px;
}


.horizontal_scroll > li:not(:last-child) {
  margin-right: 5px;
}


.horizontal_scroll img {
  vertical-align: bottom;
}


@media screen and (min-width: 711px) {
	.horizontal_scroll {
	overflow-x: inherit;
	padding: 0 8px 6px;
	}
	.horizontal_scroll > li {
	min-width: inherit;
	}

	.horizontal_scroll > li:last-child {
	padding-right: 0;
	}
}


.horizontal_scroll::-webkit-scrollbar {
    width: 16px;
	height: 4px;
}
 
.horizontal_scroll::-webkit-scrollbar-track {
    background-color: rgba(24, 90, 133, 0.1);
    border-radius: 100px;
}
 
.horizontal_scroll::-webkit-scrollbar-thumb {
    background: rgba(24, 90, 133, 0.3);
    border-radius: 100px;
}

.i_hot{
    position: absolute;
    right: -2px;
    width: 22px;
    height: 21px;
    border-radius: 50%;
	background-image: radial-gradient(circle at 100% 0%, rgba(243, 152, 0, 0.95) 15%, rgba(230, 0, 18, 1));
    color: white;
    font-size: 0.5rem;
    text-align: center;
	font-weight: bold;
}

/* 縮小なしボタンリスト */
.category_link_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category_link_box li{
	text-align: center;
}


/**----------------------------------------- 見出し --*/
h2 {
    position: relative;
    color: #132647;
    text-align: center;
    background: transparent;
    font-size: 1.6em;
    z-index: 1;
    line-height: 140%;
    margin-bottom: 1.6rem;
	margin-top: 0;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -16px;
    display: inline-block;
    width: 30px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fe8600;
    border-radius: 2px;
}

h3 {
    margin-top:1rem;
}

h3.corner_h3{
	font-size: 1.4em;
    padding: .8rem 0;
    border-bottom: 0;
    font-weight: bold;
	line-height: 1.6em;
}

h4{
	font-size: 1em;
	font-weight: bold;
	margin: 1rem 0;
}

h5{
	background: rgba(24, 90, 133, 0.3);
    padding: 0.4rem;
	margin: .4rem 0;
}

h6{
	margin: .4rem 0;
}

/**------------------------------------- テキスト装飾 部分強調 --*/ 
.text-color-primary{
	color: #fe8600;
}

.text-color-white{
	color: #ffffff;
}

.fw-bold{
	font-weight: bold;
}


.alert{
	position: relative;
    padding: .8rem .8rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}


/**-- テキスト前アイコンつける --*/ 
.firsticon-star::before{
	content: "\f005"; 
	font-family: "Font Awesome 5 Free";
	color:#fe8600;
	font-weight: bold;
	padding: 0 0.2rem 0 0;
}

/**------------------------------------- ボーダー設定 --*/ 
.boder{
	border: 1px solid #ccc;
}


/**------------------------------------- カード設定 --*/ 
.card-body{
	width: 90%;
	margin: 0 auto;
}

.card-color-white{
	border: solid 2px #FFF;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
}
/**------------------------------------- 注釈 --*/ 
.annotation_box {
    max-width: 700px;
    padding: .8rem;
    background: rgba(24, 90, 133, 0.1);
    margin: 0 auto;
}


/*ニュー情報エリア*/
dl {
display: flex;
flex-flow: row wrap;
max-width: 700px;
	margin: auto;
}
dt {
	flex-basis: 20%;
	padding: .25rem .5rem;
	background-color: rgba(24, 90, 133, 0.1);
	margin: 0 0 .25rem 0;
}
dd {
	flex-basis: 80%;
	padding: .25rem .5rem;
	background-color: #fff;
	margin: 0 0 .25rem 0;
}
@media screen and (max-width: 559px) {
dl {
flex-flow: column;
}
}

table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 8px;
  border: solid 1px #ccc;
  text-align:center;
  box-sizing:border-box;
}
.tb01 th {
  background: rgba(24, 90, 133, 0.1);

  
}
@media screen and (max-width: 640px) {
  .tb01 .head{
    display:none;
  }
  .tb01 {
    width: 100%;
  }
  .tb01 td,
  .tb01 th{
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 td{
    padding: 8px;
    display: block;
    width: 100%;
    line-height: 1.6;
    text-align:left;
  }
  .tb01 td:before{
    content: attr(data-label);
    font-weight: bold;
    display: inline;
    margin-right: 4px;
    float: left;
	width: 25%;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}


/**------------------------------------- １２３ --*/ 
.section-num {
    font-size: 48px;
    font-family: 'sans-serif';
    text-stroke: 2px #11376b;
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1.2;
    text-align: center;
    line-height: 0.95em;
    font-weight: bold;
    color: transparent;
    background: linear-gradient( 0deg, #F57C00 0% 60% , #FFB74D 60% 100%);
    -webkit-background-clip: text;
	font-style: italic;
}


@media screen and (min-width: 711px) {
.section-num {
    font-size: 72px;

    top: -25px;
    left: 30px;

}
}


/**------------------------------------- アコーディオン --*/ 

.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: #333;
	background:#ffffff;
	border: solid 2px #cccccc;
	font-weight: bold;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 10px;
	overflow: hidden;
	text-align: left;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:10px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}


#reason .section-inner-reason {
    position: relative;
    padding: 32px 28px;
    text-align: center;
	border: solid 4px #FFDBB4;
	border-radius: 8px;
}

#reason .section-num {
    font-size: 72px;
    font-family: 'sans-serif';
    text-stroke: 2px #11376b;
    position: absolute;
    top: -45px;
    left: 30px;
    line-height: 1.2;
    text-align: center;
    line-height: 0.95em;
    font-weight: bold;
    color: transparent;
    background: linear-gradient( 0deg, #F57C00 0% 60% , #FFB74D 60% 100%);
    -webkit-background-clip: text;
	font-style: italic;

}

#reason .inner-narrow {
    max-width: 675px;
    margin: 0 auto;
}

#reason .reason-title {
    font-size: 26px;
    width: fit-content;
    margin: 0 auto;
    font-weight: 900;
	line-height: 140%;

}

.reason-detail-wrapper {
    display: grid;
    row-gap: 64px;
}

#reason  .reason2_list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 16px 2%;
    max-width: 675px;
    margin: 0 auto 16px;
}

#reason .reason2_list li {
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: 376px;
    margin: 0 auto;
}

#reason .reason2_list li:not(:last-of-type) {
    margin-bottom: 10px;
}

#reason .reason2_list li figure {
    margin: 0;
    margin-right: 0.5em;
    width: 30px;
}

/**------------------------------------- 情報エリア --*/ 
.text-box a{
    text-decoration: underline;
    color: #fe8600;
    border: 0px !important;
}

div.text-box a:hover{
    text-decoration: none;
}

div.text a {
    border-bottom: none;
    text-decoration: underline;
}
.info_wrap {
	  width: 100%;
}
.info_box {
    margin: 30px 0 0;
    padding: 20px 10px;
    background: #fff;
    border: 1px solid #ccc;
}
.info_box:last-child { margin-bottom: 30px; }
.info_box dl {
    margin-bottom: 20px;
    padding: 5px;
    border: 1px solid #ddd;
}
.info_box dt {
    text-align: center;
    background: #eee;
}
.info_box dd {
    margin: 0 4px;
    padding-bottom: 4px;
}
.info_tit {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    line-height: 1.3;
    border-bottom: 1px dashed #aaa;
}

.info_img {
    position: relative;
    max-height: 250px;
    max-width: 250px;
    margin: 20px auto 5px;
    text-align: center;
}
.info_img img {
    max-height: 250px;
}

.info_txt li { margin-bottom: 2px; }
.target_item { margin-bottom: 20px; }
p + .target_item { margin: -10px 5px 20px 10px; }

/* 手を加えた */
.target_item li{
	border-bottom: #CCC solid 1px;
    line-height: 1.5;
    padding: 0.25rem 0;
    margin: 0 0 0.5rem 0;
}

.target_item li a {
    text-decoration: none;
    border-bottom: 1px solid #000;
	display: block;
}
.target_item li a:before {
    padding-right: 3px;
    padding-left: 3px;
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: bold;
}

/* 手を加えた */
.attention_list li,
.attention_txt {
    display: block;
    margin-top: 3px;
    font-size: 0.7rem;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.5em;
}
.attention_list li a,
.attention_txt a { color: #000; text-decoration: underline; }


/**------------------------------------- STAFF&CAST --*/
.staff dl, .cast dl { font-weight: bold; }
.staff dt, .cast dt {
    padding: 2px 6px;
    background: #999;
    color: #fff;
}
.staff dd, .cast dd {
    margin-bottom: 10px;
    padding: 2px 6px;
    background: #fff;
}

/**-------------------------------------- 主要ジャンルflex --*/

.category{
    display: block;
}

.category_flex {
    width:auto;
}

.category_flex_l {
    width: auto;
    margin: 0px;
    padding: 15px;
}

.category_flex_r {
    width: auto;
    margin: 0px;
    padding: 15px;
}

/**-------------------------------------- 主要ジャンルflexじゃないとき --*/
    
.category_{
    
}

.category_ ol {
     margin: 0 10px;
}

.category_ ol li {
    padding-left: 30px;
    line-height: 2rem;
	background: left top no-repeat;
	background-size: 30px auto;
}

.category_ ol li:nth-child(1) {
    background-image: url("//www.gamers.co.jp/special/00page/img/bd.png");
}

.category_ ol li:nth-child(2) {
    background-image: url("//www.gamers.co.jp/special/00page/img/music.png");
}

.category_ ol li:nth-child(3) {
    background-image: url("//www.gamers.co.jp/special/00page/img/book.png");
}

.category_ ol li:nth-child(4) {
    background-image: url("//www.gamers.co.jp/special/00page/img/good.png");
}

.category_ ol li:nth-child(5) {
    background-image: url("//www.gamers.co.jp/special/00page/img/game.png");
}

.category_ ol li:nth-child(6) {
    background-image: url("//www.gamers.co.jp/special/00page/img/hobby.png");
}

.category_ ol li:nth-child(7) {
    background-image: url("//www.gamers.co.jp/special/00page/img/gentei.png");
}

.category_ ol li:nth-child(8) {
    background-image: url("//www.gamers.co.jp/special/00page/img/tcg.png");
}



/**-------------------------------------- ゲマの強みflex --*/

.tuyomi {
    position: relative;
}

.tuyomi p {
    
}

.tuyomi_icon {
    position: absolute;
    top: 1%;
    left: 0%;
    width: 30%;

}

.tuyomi_img {
    margin: 0;
    width: auto;
}

.tuyomi_flex {
    display: block;
}

.tuyomi_left {
    text-align: center;
    padding-right: 0;
}

.tuyomi_flex p {
    width: auto;
    padding: 10px;
    align-content: center;
    font-size: 0.8rem;
}


/**------------------------------------- howto --*/
.howto {
	/* Used to position the left vertical line */
	position: relative;
	max-width: 675px;
    margin: 0 auto;
}

.howto__line {
	/* Border */
	border-right: 4px solid #EAF6DC;
	left: 40px;
	position: absolute;
	top: 0px;
	height: 80%;
	z-index: 10;
}

.howto__items {
	/* Reset styles */
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.howto__item {
	margin-bottom: 8px;
}

.howto__top {
	/* Center the content horizontally */
	align-items: center;
	display: flex;
}

.howto__circle {
	/* Rounded border */
	background-color: #EAF6DC;
	border-radius: 9999px;
	z-index: 20;
	/* Size */
	height: 80px;
	width: 80px;
}

.howto__title {

	flex: 1;
}

.howto__h3{
	font-size: 16px;
	padding-left: 24px;
}

.howto__desc {
	margin-left: 104px;
}





/**-------------------------------------- copyright --*/
.copyright {
    margin: 0;
    padding: 30px 0 20px;
}
.copyright a {
    border-bottom: none;
    text-decoration: underline;
}
.copyright .attention {
    margin: 20px;
    font-size: 0.7rem;
    line-height: 1.5em;
    text-align: left;
}

/**------------------------------ PC(幅1080px以上のスタイル) -*/
@media screen and (min-width: 1080px) {
	 /* コンテナ設定 */
	.container-lg{
		width: 1080px;
		margin: 0 auto;
		padding: 3rem 0;
	}
	
}

/**------------------------------ PC(幅711px以上のスタイル) -*/
@media screen and (min-width: 711px) {
    body { box-sizing: border-box; }
    #corner_contents .main_contents {
        width: 100%;
    }
    /* #corner_main_text, /* 1080px */
    .corner_products,
    section div.text {
        width: 1080px;
        margin: 0 auto;
    }
    /* clearfix */
    section div.text::after,
    dl::after,
    .info_box::after,
    .info_box dd::after {
        display: block;
        clear: both;
        content: "";
    }
	
	.container-md{
	width: 700px;
	padding: 3rem 0;
	}
	
	/**-------------------------------------- ボタン設定 --*/
	.btn-pc {
    	width: 640px;
	}
	
	.btn {
	font-size: 16px;
	}

	/**----------------------------------------- 見出し --*/
h2 {
    position: relative;
    color: #132647;
    text-align: center;
    background: transparent;
    font-size: 2em;
    z-index: 1;
    line-height: 140%;
    margin-bottom: 3rem;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -16px;
    display: inline-block;
    width: 30px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fe8600;
    border-radius: 2px;
}

h3 {
    margin-top:0;
}

h3.corner_h3{
	font-size: 2em;
    padding: .8rem 0;
    border-bottom: 0;
    font-weight: bold;
	line-height: 1.6em;
}



h4{
	font-size: 1.4em;
	font-weight: bold;
	margin: 1rem 0;
}

h5{
	background: rgba(24, 90, 133, 0.3);
    padding: 0.4rem;
	margin: .4rem 0;
}

h6{
	margin: .4rem 0;
}
	
    
    /**------------------------------------------- 商品 --*/
    .item_list ul {
        background: transparent;
		justify-content: center;
    }
    .item_list ul li {
        margin: 0 15px 40px;
        padding: 0;
    }
    .item_list ul li a {
        background: #fff;
    }

    /**--------------------------------------- ヘッダー --*/


    
    /**-------------------------------------------- nav --*/
    /* 1080px */
    /* #corner_nav { margin-top: 30px; } */
    
    /* 100% */

    #corner_nav ul {
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    #corner_nav ul li {
        width: calc( 100% / 3 );
        border-left: 1px solid #fff;
    }
    #corner_nav ul li:last-child { border-right: 1px solid #fff; }
    
	#corner_nav ul li a {
    position: relative;
    padding: 15px 0;
    text-align: center;
    font-size: 1.2rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
	}
	
	.title-logo{
		width: 22%;
	}
	
    /**------------------------------------- 情報エリア --*/
    .info_wrap {
        width: 1080px;
        margin: 0 auto;
    }
    .info_box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .info_box dl {
        display: flex;
        flex-wrap: wrap;
        border: none;
    }
    .info_box dt {
        width: 25%;
        margin: 3px 0;
    }
    .info_box dd {
        margin: 3px 4px;
        padding-bottom: 0;
        width: calc(75% - 8px);
    }
    .info_tit {
        order: 1;
        width: 100%;
        padding-left: 8px;
    }
    .info_img {
        order: 3;
        margin: 0 1em 10px;
    }
    .info_img + .info_txt {
        width: calc(100% - 350px);
    }
    .info_txt {
        order: 2;
        margin-right: 1em;
        margin-left: 1em;
    }
    .target_item li a:hover {
        border-bottom: 1px solid transparent;
    }
    
    /**----------------------------------------- 一括購入 */
    .bulk_wrap {
        width: 800px;
        display: flex;
        justify-content: center;
    }
    .bulk_wrap li {
        width: calc(100% / 2 - 80px);
        margin: 0 40px;
        text-align: center;
    }
    .bulk_wrap li a {
        padding: 10px 0;
    }
    
    /**------------------------------------- STAFF&CAST --*/
    /* 1カラム */
    .staff.cl_1 {
        width: 100%;
    }
    .staff.cl_1 dl {
        width: 800px;
    }
    .staff.cl_1 dt { width: 30%; }
    .staff.cl_1 dd { width: 70%; }
    
    /* 2カラム */
    .staff, .cast {
        float: left;
        width: 50%;
        margin: 0;
        padding: 0 5px;
    }
    .staff dl, .cast dl {
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin: 10px auto 30px;
    }
    .staff dt, .staff dd,
    .cast dt, .cast dd {
        width: 50%;
        margin: 2px 0;
        padding: 3px 8px;
    }
    .staff dt, .cast dt {
    }
    .staff dd, .cast dd {
    }
    
    
    /**-------------------------------------- 主要ジャンルflex --*/
    
    .category{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category_flex {
        width:50%;
    }
    
    .category_flex_l {
        width: 53%;
        margin: 10px;
        padding: 15px;
    }
    
    .category_flex_r {
        width: 25%;
        margin: 10px;
        padding: 15px;
    }
    
    /**-------------------------------------- 主要ジャンルflexじゃないとき --*/
    
    .category_{
        
    }
    
    .category_ ol {
         margin: 0 50px;
    }
    
    .category_ ol li {
        padding-left: 35px;
	    line-height: 2.5em;
	    background: left top no-repeat;
	    background-size: 30px auto;
    }
    

    
    /**-------------------------------------- ゲマの強みflex --*/
    
    .tuyomi {
        position: relative;
    }
    
    .tuyomi p {
        
    }
    
    .tuyomi_icon {
        position: absolute;
        top: -4%;
        left: 0;
        width: 20%;
    }
    
    .tuyomi_img {
        margin: 10px;
        width: 80%;
    }
    
    .tuyomi_flex {
        display:flex;
    }
    
    .tuyomi_left {
        text-align: right;
        padding-right: 30px;
    }
    
    .tuyomi_flex p {
        width: 50%;
        padding: 0 0 0 30px;
        align-content: center;
        font-size: 0.9rem;
    }
    

    
    /**-------------------------------------- copyright --*/
    .copyright a:hover {
        text-decoration: none;
    }
    .copyright .attention { text-align: center; }
}


/**--------------------------------------- 背景色設定 --*/
.bg-green {
    background: #EAF6DC;
}

.bg-gray {
    background: #F0F3F5;
}

.bg-white {
    background: #FFFFFF;
}

.bg-black {
    background: #333333;
}

.bg-gradation {
    background: -moz-linear-gradient(65deg, #E60012, #F39800);
    background: -webkit-linear-gradient(65deg, #E60012, #F39800);
    background: linear-gradient(25deg, #E60012, #F39800);
}

.bg-primary{
	background: url("//www.gamers.co.jp/special/00page/img/bg-spade.png" ),#EFF4FF;
}

.bg-orange{
	background: #ffefe0;
}

.bg-red{
	background: #ffe0e0;
}

.bg-gradation-campaign{
	background-color: #FA8BFF;
background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);
}

/**-------------------------------------- その他装飾 --*/
.shadow {
    box-shadow: 0 2.5rem 2rem -2rem hsl(200deg 50% 20% / 40%);
}

/**-------------------- 角丸設定 --*/
.rounded{
	border-radius: 4px;
}

.rounded-circle{
	width: auto;
    border-radius: 200px;
    padding: 0.2rem;
}

/**--------------------- リストデザイン --*/
ul.list-group{
	color: #132647;
 	border-top: solid #cccccc 1px;
	border-bottom: solid #cccccc 1px;
	padding: .6rem 0 .6rem 1.6rem;
}

li.list-group-item{
	line-height: 1.5;
	padding: .6rem 0;
	list-style: disc;
}
/**--------------------- スマホだけbr --*/

/*PCでは無効（改行しない）*/
.show-xs{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:559px) {
    .show-xs{
        display: block;
    }
}

/*PCでは有効（改行する）*/
.show-pc{
    display: block;
}

/*スマートフォンでは無効（改行しない）*/
@media screen and (max-width:559px) {
    .show-pc{
        display: none;
    }
}

/**-------------------------------------- 文字大きさ --*/

.txt_s0{
    font-size:0.9rem;
    font-weight: bold;
}

.txt_s1{
    font-size:1rem;
    font-weight: bold;
}

.txt_s2{
    font-size:1.2rem;
    font-weight: bold;
}

@media screen and (max-width:559px) {

    .txt_s0{
        font-size:0.9rem;
        font-weight: bold;
    }

    .txt_s1{
        font-size:0.8rem;
        font-weight: bold;
        padding: 0 10px;
    }
    
    .txt_s2{
        font-size:1.2rem;
        font-weight: bold;
        padding: 0 10px;
    }
}

/**-------------------------------------- 余白設定 --*/
.p-1{
	padding: .25rem;
}

.p-2{
	padding: .5rem;
}

.p-3{
	padding: 1rem;
}

.p-4{
	padding: 1.5rem;
}
.p-5{
	padding: 2rem;
}


.px-1{
	padding: 0 .25rem;
}

.px-2{
	padding: 0 .5rem;
}

.px-3{
	padding: 0 1rem;
}

.px-4{
	padding: 0 1.5rem;
}

.px-5{
	padding: 0 2rem;
}


.py-1{
	padding: .25rem 0;
}

.py-2{
	padding: .5rem 0;
}

.py-3{
	padding: 1rem 0;
}

.py-4{
	padding: 1.5rem 0;
}

.py-5{
	padding: 2rem 0;
}

.pt-1{
	padding-top: .25rem;
}

.pt-2{
	padding-top: .5rem;
}
.pt-3{
	padding-top: 1rem;
}

.pt-4{
	padding-top: 1.5rem;
}

.pt-5{
	padding-top: 2rem;
}

.pb-1{padding-bottom: .25rem;
}

.pb-2{padding-bottom: .5rem;
}

.pb-3{padding-bottom: 1rem;
}

.pb-4{padding-bottom: 1.5rem;
}
.pb-5{padding-bottom: 2rem;
}

.mb-1{
	margin-bottom: .25rem;
}

.mb-2{
	margin-bottom: .5rem;
}

.mb-3{
	margin-bottom: 1rem;
}

.mb-4{
	margin-bottom: 1.5rem;
}

.mb-5{
	margin-bottom: 2rem;
}

.mb-6 {
	margin-bottom: 5rem;
}

.mt-1{
	margin-top: .25rem;
}

.mt-2{
	margin-top: .5rem;
}

.mt-3{
	margin-top: 1rem;
}

.mt-4{
	margin-top: 1.5rem;
}

.mt-5{
	margin-top: 2rem;
}

.mt-6{
	margin-top: 5rem;
}

.mr-1{
	margin-right: .25rem;
}

.mr-2{
	margin-right: .5rem;
}

.mr-3{
	margin-right: 1rem;
}

.mr-4{
	margin-right: 1.5rem;
}

.mr-5{
	margin-right: 2rem;
}


.my-1{
	padding: .25rem 0;
}

.my-2{
	padding: .5rem 0;
}

.my-3{
	padding: 1rem 0;
}

.my-4{
	padding: 1.5rem 0;
}

.my-5{
	padding: 2rem 0;
}

.mx-1{
	padding: 0 .25rem;
}

.mx-2{
	padding: 0 .5rem;
}

.mx-3{
	padding: 0 1rem;
}

.mx-4{
	padding: 0 1.5rem;
}

.mx-5{
	padding: 0 2rem;
}

@media screen and (max-width:559px) {

    .mt-6{
    	margin-top: 3rem;
}

    .mb-6 {
	    margin-bottom: 3rem;
    }
}
/**--------------------------------------- グリッドシステム --*/

	.col-2 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-3 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-4 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-5 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-6 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-7 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-8 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-9 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-10 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-11 {
		flex: 0 0 auto;
		width: 100%;
	}

	.col-12 {
		flex: 0 0 auto;
		width: 100%;
	}

@media screen and (min-width: 711px) {
	.col-2 {
		flex: 0 0 auto;
		width: 16.66666666%;
	}

	.col-3 {
		flex: 0 0 auto;
		width: 24.99999999%;
	}

	.col-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-9 {
		flex: 0 0 auto;
		width: 74.99999999%;
	}

	.col-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}

	.col-11 {
		flex: 0 0 auto;
		width: 91.66666666%;
	}

	.col-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}


@media screen and (max-width: 711px) {
	.col-sm-6{
		flex: 0 0 auto;
		width: 50%;
	}
	.col-sm-4{
		flex: 0 0 auto;
		width: 33.33333333%;
	}
	.col-sm-3{
		flex: 0 0 auto;
		width: 24.99999999%;
	}
}


.container {
	max-width: 960px; /* mx-autoとcontainerに相当 */
	width: 100%;
	padding: 1.5rem; /* p-6に相当 */
	background-color: #ffffff;
	border-radius: 0.75rem; /* rounded-xlに相当 */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lgに相当 */
}

/* 画像を横並びにするためのコンテナ */
.image-gallery {
	display: flex;
	flex-direction: column; /* 小さい画面ではデフォルトで縦並び */
	justify-content: center;
	align-items: center;
	gap: 1.5rem; /* gap-6に相当 */
}

/* 個々の画像ラッパー */
.image-wrapper {
	width: 100%; /* 小さい画面では全幅 */
	display: flex;
	justify-content: center;
	cursor: pointer; /* 画像がクリック可能であることを示す */
}

img.img_fro {
	max-width: 100%;
	height: auto;
	border-radius: 0.5rem; /* rounded-lgに相当 */
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-mdに相当 */
	transition: transform 0.3s ease-in-out; /* transition-transformに相当 */
}

span.glass {
	position: relative;
}

span.glass::after {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 6px 8px;
	border-radius: 50%;
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	content: "\f00e";
	font-size: 1.5em;
	background: rgba(255, 255, 255, 0.8);
	border: 1px dashed #666;
}

.popup-content img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain; /* 画像がポップアップ内に収まるようにする（トリミングなし） */
	border-radius: 0.5rem;
	box-shadow: none; /* ポップアップ画像には個別の影を付けない */
	transform: none; /* ポップアップ画像にはホバーエフェクトを付けない */
}

img.img_fro:hover {
	transform: scale(1.05); /* hover:scale-105に相当 */
}

/* 中画面以上でのレスポンシブデザイン */
@media (min-width: 768px) { /* md:ブレークポイントに相当 */
	.image-gallery {
		flex-direction: row; /* 中画面以上では横並びにする */
	}
	.image-wrapper {
		width: calc(100% / 3 - (2 * 1.5rem / 3)); /* ギャップを考慮した約1/3の幅 */
	}
}

/* ポップアップオーバーレイのスタイル */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8); /* 暗い半透明の背景 */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000; /* 他のコンテンツの上に表示されるようにする */
	visibility: hidden; /* デフォルトでは非表示 */
	opacity: 0;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.popup-overlay.visible {
	visibility: visible;
	opacity: 1;
}

.popup-content {
	position: relative;
	background-color: #ffffff;
	padding: 1rem;
	border-radius: 0.75rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	max-width: 95%; /* 90%から増加 */
	max-height: 95%; /* 90%から増加 */
	display: flex;
	justify-content: center;
	align-items: center;
	}

.popup-content img {
	max-width: 60%;
	max-height: 100%;
	object-fit: contain; /* 画像がポップアップ内に収まるようにする（トリミングなし） */
	border-radius: 0.5rem;
	box-shadow: none; /* ポップアップ画像には個別の影を付けない */
	transform: none; /* ポップアップ画像にはホバーエフェクトを付けない */
}


@media (max-width: 480px) { /* md:ブレークポイントに相当 */
	.popup-content img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain; /* 画像がポップアップ内に収まるようにする（トリミングなし） */
		border-radius: 0.5rem;
		box-shadow: none; /* ポップアップ画像には個別の影を付けない */
		transform: none; /* ポップアップ画像にはホバーエフェクトを付けない */
	}
	
	.image-gallery {
		flex-direction: row; /* 中画面以上では横並びにする */
	}
	.image-wrapper {
		width: calc(100% / 3 - (2 * 1.5rem / 3)); /* ギャップを考慮した約1/3の幅 */
	}
}

.close-button {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background-color: #ef4444; /* 赤い背景 */
	color: white;
	border: none;
	border-radius: 9999px; /* 完全な円形 */
	width: 2rem;
	height: 2rem;
	font-size: 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
	z-index: 1001; /* ボタンが画像の上に表示されるようにする */
}

.close-button:hover {
	background-color: #dc2626; /* ホバーで濃い赤 */
}

/* 虫眼鏡アイコンオーバーレイのスタイル */
.magnifying-glass-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒い背景 */
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0; /* デフォルトでは非表示 */
	transition: opacity 0.3s ease-in-out;
	border-radius: 0.5rem; /* 画像と同じ角丸 */
}