@charset "UTF-8";

/*!
Theme Name: PEACE-MAKER+
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

:root{
    --color_w:#fff;    
    --color_b:#000;
    --color_gray1:#eeeeee;
    --color_gray2:#6e6e6e/*明るいグレー*/;
    --color_gray3:#333333/*濃*/;
    --color_main1:#e53900/*オレンジ*/;
}
.pc_only{
    display: block;
}
.sp_only{
    display: none;
}
.flexwrap{
 display: -webkit-flex;
 display: flex;
 flex-wrap: wrap;
 -webkit-flex-wrap: wrap;
}
.flexnowrap{
 display: -webkit-flex;
 display: flex;
 flex-wrap: nowrap;
 -webkit-flex-wrap: nowrap;
}
.JCfs{
 justify-content: flex-start;
 -webkit-justify-content: flex-start;
}
.JCfe{
 justify-content: flex-end;
 -webkit-justify-content: flex-end;
}
.JCc{
 justify-content: center;
 -webkit-justify-content: center;
}
.JCsb{
 justify-content: space-between;
 -webkit-justify-content: space-between;
}
.AIc{
    align-items: center;
    -webkit-align-items: center;
}
.AIs{
    align-items: stretch;
    -webkit-align-items: stretch;
}
.AIe{
    align-items: end;
    -webkit-align-items: end;
}
.mt05{
    margin-top: 0.5em;
}
.mt10{
    margin-top: 1em;
}
.mt20{
    margin-top: 2em;
}
.mt30{
    margin-top: 3em;
}
.mb05{
    margin-bottom: 0.5em;
}
.mb10{
    margin-bottom: 1em;
}
.mb20{
    margin-bottom: 2em;
}
.mb30{
    margin-bottom: 3em;
}
.mb50{
    margin-bottom: 5em;
}
.back-b{
    background-color: var(--color_b);
}
.back-w{
    background-color: var(--color_w);
}
.back-main1{
    background-color: var(--color_main1);
}
.color-w,.color-w a{
    color: var(--color_w);
}
.color-b,.color-b a{
    color: var(--color_b);
}
.color-main1,.color-main1 a{
    color: var(--color_main1);
}
li{
    list-style: none;
}

/* デフォルトカルーセル非表示 */
#carousel{
    display: none;
}

/*　共通　*/
.header-container, .main, .sidebar, .footer{
    background-color: #000;
}
.content{
    overflow: hidden;
}
#container{
    overflow: hidden;
}
#main{
    padding: 0;
}
.pagination-next{
    display: none;
}
.wrap{
    max-width: 1600px;
    width: 90%;
}
.go-to-top-button{
    background-color: rgba(0,0,0,0.5);
}
.go-to-top .go-to-top-button{
    color: #fff;
}

/* header */
.header{
    width: 100%;
    align-items: center;
    -webkit-align-items: center;
}
.header-l{
    width: calc(100% - 250px);
}
/* ARTIST　メニュー　*/
.header .catmenu-f select{
    width: 100px;
    background-color: var(--color_b);
    color: var(--color_w);
    font-size: 0.8rem;
    border:unset;
    padding: 5px;
    margin-right: 20px;
}
.header .catmenu-f select,
::picker(select) {
  appearance: base-select;
  background-color: var(--color_b);
  color: var(--color_w);
  border: unset;
  /* アニメーションも設定できる */
  transition: scale 0.2s;
}
.header .catmenu-f::picker(select):hover {
  scale: 1.05;
}
option{
    padding: 5px 12px 5px 0;
}
.header .catmenu-f option:first-child{
    display: none;
}

/*ベース*/
.toggle {
	display: none;
}
.accordion{
    position: relative;
    width: 90px;
    height: 30px;
    line-height: 30px;
    margin-right: 30px;
}
.accordion .menu{
    position: absolute;
    z-index: 999;
    background-color: rgba(0,0,0,0.8);
}
.Label {		/*タイトル*/
	display: block;
	color: #fff;
    padding-left: 15px;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 5px );
	left: 80px;
	transform: rotate(135deg);
}
.Label,
.artistmenu {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.artistmenu {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 10px;
	overflow: hidden;
}
.artistmenu li{
    height: 30px;
    line-height: 30px;
}
.artistmenu li a{
    text-decoration-line: none;
}
.toggle:checked + .Label + .artistmenu {	/*開閉時*/
	height: auto;
	padding:10px;
	transition: all .3s;
    width: auto;
    min-width: 280px;
    background-color: var(--color_b);
    border-left: 1px solid rgba(255,255,255,0.5);
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
    top: calc( 50% - 2px );
}
/*タグメニュー*/
.tag-f ul{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;    
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}
.tag-f li{
    margin-right: 30px;
}
.tag-f li a{
    text-decoration-line: none;
}
.header-menu .tag-f select{
    width: 100px;
    background-color: var(--color_b);
    color: var(--color_w);
    font-size: 0.8rem;
    border:unset;
    padding: 5px;
}
.header-menu .tag-f select,
::picker(select) {
  appearance: base-select;
  background-color: var(--color_b);
  color: var(--color_w);
  border: unset;
  /* アニメーションも設定できる */
  transition: scale 0.2s;
}
.header-menu .tag-f::picker(select):hover {
  scale: 1.05;
}
.header-menu .tag-f option:first-child{
    display: none;
}
.header-menu .like{
    margin: 0 15px;
}
.like{
    width: 40px;
    text-align:center;
}
.like img{
    filter: brightness(0) invert(1);
    height: 20px;
    line-height: 30px;
}
/* 検索 */
.search-box{
    margin: 0 0 0 20px;
}
.search-box input{
    background-color: var(--color_b);
    color: var(--color_gray2);
    padding: 5px;
    height: 30px;
    font-size: 0.7rem;
    width: 180px;
}
.search-box .fa-search{
    font-size: 0.8rem;
}
.search-box button.search-submit{
    min-height: unset;
    min-width: unset;
}
/* HEADER STARRY */
ul#STARRY{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;    
    width: 250px;
}
ul#STARRY li{
    margin: 0 5px;
    text-align: center;
    padding: 5px 10px;
}
ul#STARRY li::after{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color:transparent;
    background-image: url('./images/arrow_r.svg');
    background-position: center;
    background-size: contain;
    filter: brightness(0) invert(1);
}
ul#STARRY li a{
    font-size: 0.8rem;
    text-decoration-line: none;
}
ul#STARRY li:hover a {
  background-color: unset;
  color: var(--color_main1);
    transition: 0.3s;
}
ul#STARRY li:hover::after{
    filter:invert(32%) sepia(62%) saturate(5650%) hue-rotate(9deg) brightness(94%) contrast(106%);
    transition: 0.3s;
    transform: translateX(5px);
}

/* TOP ログイン前*/
/* ランキングのリンクを消す */
.no-link .popular-entry-card-link {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
}
.no-login .top-img{
    position: relative;
    width: 100%;
    height: calc(100vh - 200px);
    aspect-ratio: 16 / 9;
    background-repeat: no-repeat;
    background-size: cover;
}
.no-login .entry{
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.no-login .entry h2,.no-login .entry h3{
    text-align: center;
}
.no-login .entry h2{
    font-size: 3rem;
    font-weight: 900;
    margin: 2em auto 0;
}
.no-login .entry h3{
    font-size: 1.2rem;
    margin-bottom: 2em;
}
.no-login .entry .bt{
    margin: 2em auto;
    width: 300px;
    background-color: var(--color_main1);
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.no-login .entry .bt a{
    display: block;
    color:var(--color_b);
    text-decoration-line: none;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
}
.no-login .entry .bt:hover{
    background-color: var(--color_w);
    transition: 0.3s;
}
.no-login .entry .bt:hover a{
    color: var(--color_b);
    transition: 0.3s;
}
/* TOP よくある質問 */
/* Q&A*/
.cp_qa{
    max-width: 800px;
    width: 80%;
    margin:auto;
}
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
	color: var(--color_gray1);
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 4em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	border-radius: 0.5em;
	background: var(--color_gray3);
}
.cp_qa .cp_actab label::before {
	font-size: 16px;
	margin-left: -2em;
	padding-right: 0.5em;
	content: 'Q';
    position:absolute;
}
.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: var(--color_main1);
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
    color: var(--color_main1);
	content: '+';
	display: inline-block;
	width: 2em;
	height: 2em;
}
.cp_qa .cp_actab label h4{
    margin-left: 1em;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
    color: var(--color_gray1);
	max-height: 0;
	padding: 0 0 0 2.5em;
	border-radius: 0 0 0.5em 0.5em;
}
.cp_qa .cp_actab .cp_actab-content::before {
	font-size: 16px;
	position: absolute;
	margin: 0.7em 0 0 -1em;
	padding: 0;
	content: 'A';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
	border: 10px solid rgba(27,37,56,0.1);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
	color: var(--color_main1);
	border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}


/* TOP */
.top-f{
    width: 95%;
    margin:2em auto 1em;
}
.top-f h2{
    margin: 2em 0;
}
.top-f .title h2{
    margin: 3em 0 2em;
}
/*　TOPランキングスライダー　*/
/* cocoon サムネイル表示*/
.ranking-f .popular-entry-card-thumb{
  display: block;
}
.ranking-f .popular-entry-card-content .popular-entry-card-title{
    display: none;
}
.widget-entry-cards.ranking-visible .no-1 .card-thumb::before,
.widget-entry-cards.ranking-visible .no-2 .card-thumb::before,
.widget-entry-cards.ranking-visible .no-3 .card-thumb::before{
  background:unset;
}
.widget-entry-cards.ranking-visible .card-thumb::before {
  left: -15px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: unset;
  color: #fff;
  opacity: 0.9;
  font-size: 3rem;
  z-index: 1;
}
.ranking-f .no-thumbnail .widget-entry-cards div.widget-entry-card-content {
  display: none;
}
.ranking-f .popular-entry-cards{
    margin-bottom: 0;
}
.allview a{
    color: var(--color_gray2);
    text-decoration-line: none;
    display: block;
}
.allview a:hover{
    transition: 0.3s;
    color: var(--color_w);
}
.tag{
    padding-right: 20px;
    font-size: 0.7rem;
    color: var(--color_gray1);
}
.tag a{
    color: var(--color_gray1);
}
/* TOP STREAM*/
.stream-f .box{
    position: relative;
}
.stream-f .box .day{
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.7rem;
    background-color: var(--color_main1);
    color: var(--color_w);
    padding: 0 5px;
    border-radius: 5px 0 0 0;
}


/* single */
.single-f{
    width: 95%;
    max-width:1600px;
    margin: auto;
}
/*!動画の最大幅を指定する*/
.single-f .video-container,
.single-f .instagram-container,
.single-f .facebook-container {
  max-width: 1600px;
  margin: 30px 0;
}
.single-f .video-container .video{
    position: unset;
    padding: 0;
}
.single-f .no-contents{
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background-color: var(--color_gray3);
    margin-bottom: 30px;
    border-radius: 15px;
}
.single-f .no-contents p{
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size: 3rem;
}
.single-f .no-contents p span{
    font-size: 2rem;
}
.single-f h2{
    margin: 0;
    font-size: 2.5rem;
}
.release{
    margin: 0.5rem 0 0;
}
/*お気に入りボタン*/
.simplefavorite-button{
    text-align: right;
    cursor: pointer;
}
.single-f .tag{
    font-size: 0.7rem;
    color: var(--color_main1);
}
.single-f .tag a{
    color: var(--color_main1);
}
.single-f .tag:hover,.single-f .tag:hover a{
    color: var(--color_w);
    transition: 0.3s;
}
.single-f .about{
    margin: 1em auto;
    font-size: 1.2rem;
}
.single-f .about a:hover img{
    transition: 0.3s;
}
.single-f .tag-info{
    grid-column: span 2 / span 2;
    grid-row-start: 2;
}
.single-f ul{
    margin: 2em 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 15px;
    padding-left: 0;
}
.single-f h3.cat-title{
    width: 100%;
    margin: 4em 0 2em;
    grid-column: span 2 / span 2 max-content;
    font-size: 1.5rem;
    border-top: 1px solid #000;
    border-image: linear-gradient(to left, var(--color_b) 50%, var(--color_gray2)) 1;
    padding-top: 0.5em;
}
.single-f h3.cat-title{
    padding-right: 10px;
}
.single-f ul li{
    margin-bottom: 1em;
}
.single-f ul li h4{
    font-size: 1.1rem;
}
.single-f ul li .thum{
    width: 35%;
    max-width: 200px;
}
.single-f ul li .thum img{
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
}
.single-f ul li .text{
    padding: 0 10px;
    width: 65%;
}
.single-f ul li .text .cat{
    font-size: 0.7rem;
}
.goods-f{
    width: 100%;
}
.goods-box{
    width: 50%;
}
.goods-f h4{
    font-size: 1.2rem;
}
.goods-f .goods-img{
    width: 40%;
}
.goods-f .goods-img img{
    width: 90%;
    height: auto;
}
.goods-f .goods-info{
    width: 60%;
}
.goods-f .shop-bt{
    margin: 1em 0;
    width: 80%;
    height: 25px;
    line-height: 25px;
    background-color: var(--color_main1);
    color: #FFF;
    text-align: center;
    border-radius: 5px;
}
.goods-f .shop-bt a{
    text-decoration-line: none;
    display: block;
}
.goods-f .shop-bt:hover{
    background-color: #333333;
    transition: 0.3s;
}

/* カテゴリーソート　*/
.order_bt{
    padding-left: 0;    
    width: 100%;
    margin: 0 auto 2em;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;    
}
.order_bt li{
    text-align: center;
    width: 130px;
    margin-right: 15px;
    border: 1px solid var(--color_gray2);
    height: 30px;
    line-height: 28px;
    border-radius: 5px;
    font-size: 0.8rem;
}
.order_bt li a{
    text-decoration-line: none;
    display: block;
}
.order_bt li:hover{
    background-color: var(--color_gray1);
    transition: 0.3s;
}
.order_bt li:hover a{
    color: var(--color_gray3);
    transition: 0.3s;
}
.cat-f{
    width: 95%;
    max-width:1600px;
    margin: auto;    
}
.cat-f h2{
    margin: 1em 0 2em;
    font-size: 2.0rem;
}
.cat{
    background-color: var(--color_gray1);
    color: var(--color_b);
    padding: 2px 7px;
    font-size: 0.9rem;
    border-radius: 5px;
}

/* 固定ページ　*/
.page-f h2{
    font-size: 2rem;
    margin: 2em 0;
}

/*　お気に入りページ　*/
.single-f ul.favorites-list{
    grid-template-rows:auto;
}
.favorites-list li{
 display: -webkit-flex;
 display: flex;
 flex-wrap: wrap;
 -webkit-flex-wrap: wrap; 
}
.favorites-list li p{
    width: calc((100% - 40px)/2);
    margin: 10px;
}
.favorites-list li img{
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
}
.favorites-list li p:nth-child(3n){
    width: 0;
}
/* タグ */
.tag-f .box{
    width: calc((100% - 40px)/2);
    margin: 10px;
    padding: 10px 0;
}
.tag-f .box .thum{
    width: 40%;
    padding: 0 10px;
}
.tag-f .box .thum img{
    aspect-ratio: 16 / 9;
}
.tag-f .box .thum img:hover{
    opacity: 0.7;
}
.tag-f .box .text{
    width: 60%;
    padding: 0 10px;
}
.tag-f .box .text a{
    text-decoration-line: none;
}
.tag-f .box .text a:hover{
    text-decoration-line: underline;
    transition: 0.3s;
}
.tag-f .box .text .tag{
    color: var(--color_main1);
}
.tag-f .box .text .tag a{
    color: var(--color_main1);
}
.tag-f .cat{
    font-size: 0.8rem;
}
/* 検索　*/
.search-f ul li{
    margin: 10px 10px 30px;
}
#watched_page .watched_box{
    width: calc((100% - 100px)/5);
    margin: 10px;
}
#watched_page img{
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}




/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
/* TOP NAVI*/

ul#STARRY li{
    padding: 0 10px;
}

}

/*834px以下*/
@media screen and (max-width: 834px){

.header-l .logo{
    width: 100%;
    text-align: left;}

.header-menu .like{
    margin-left: 15px;
}
.tag-f ul{
    padding-left: 0;
}
.tag-f li{
    margin-right: 10px;
}
.search-box input{
    width: 120px;
}
}
/*600px以下*/
@media screen and (max-width: 600px){
.pc_only{
    display: none;
}
.sp_only{
    display: block;
}
.header-container-in.hlt-top-menu.hlt-tm-small .logo-header{
    height: 60px;
}
.header-l{
    width: calc(100% - 100px);
}
.header-container-in.hlt-top-menu.hlt-tm-small .site-name-text-link{
    margin: 0 5px;
    }
ul#STARRY li a{
    font-size: 0.7rem;
}
.header .catmenu-f select{
    width: 80px;
    margin-right: 20px;
}
.header-menu{
    width: 100%;
}
.wrap{
    width: 95%;
}
.like{
    width: 30px;
    }
.header-menu .tag-f select{
    width: 80px;
}
.search-box input{
        width: 120px;
    }
/* 検索ボックス広がる　*/
/* Search */
.search-f{
    width: calc(100% - 250px);
    padding-left: 10px;
}
.searchFromMini {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    position: relative;
}
#search-formmini {
    display: flex;
    position: relative;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1;
	 height: 40px;
}
.search-field {
  position: absolute;
  transition: all 0.5s ease-in-out;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #FFF;
  box-sizing: border-box;
  color: var(--color_gray3);
  cursor: pointer;
  font-weight: 300;
  opacity: 0;
  width: 0;
  z-index: 100;
}
.search-field:focus {
    cursor: text;
    opacity: 1;
    outline: none;
    width: 90%;
    z-index: 1;
    background: #FFF;
    border-radius: 9999px;
    padding-left: 20px;
    line-height: 1.2;
}
.search-submit{
  background-color: transparent;
}
.search-field:focus:hover ~ .search-submit .fa-search {
  color: var(--color_gray2);
}
.search-field:hover ~ .search-submit .fa-search {
  color: var(--color_gray2);
}
button.search-submit {
    transition: all 0.5s ease-in-out;
    background-color: transparent;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 25px;
    height: 100%;
    color: #fff;
    border: none;
    min-width: unset;
    min-height: unset;
    font-size: 1rem;
}
.search-submit:hover .fa-search {
  color: var(--color_main1);
}
form#search-formmini input[type="search"] {
    width: 40px;
    position: relative;
	transition: all 0.5s ease-in-out;
	margin: 0;
	height: 40px;
    padding: 0 5px 0 10px;
}
form#search-formmini input[type="search"]:focus {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.4;
}
form#search-formmini input[type="search"]:focus ~ .search-submit {
    right: 0;
    color: var(--color_gray2);
}
ul#STARRY{
        width: 100px;
        padding-left: 0;
    }
    /* slider */
    .top-slider-f{
        margin-bottom: 2em;
    }
    .top-slider .thumb img{
        object-position: center top;
    }
    .top-slider .thumb{
        calc(100vh - 300px)
    }
    #watched_page .watched_box{
    width: calc((100% - 40px)/2);
    margin: 10px;
    }

    /* single */
    .single-f h2{
        font-size: 1.7rem;
        margin-top: 0.2em;
    }
    .single-f .no-contents p{
        font-size: 2rem;
    }
    .single-f .about{
        font-size: 0.9rem;
    }
    .single-f ul li .thum{
        width: 100%;
        max-width: unset;
    }
    .single-f h3.cat-title{
        font-size: 1.3rem;
    }
    .single-f ul li .text{
        width: 100%;
    }

    .goods-box{
    width: 100%;
    }
    .goods-f h4{
    font-size: 1.2rem;
    }
    .goods-f .goods-img{
        width: 100%;
    }
    .goods-f .goods-img img{
    width: 100%;
}
    .goods-f .goods-info{
        width: 100%;
    }
    .goods-f .shop-bt{
    width: 80%;
    height: 25px;
    line-height: 25px;
    background-color: var(--color_main1);
    color: #FFF;
    text-align: center;
    border-radius: 5px;
}


    /*　お気に入りリスト　*/
    .single-f ul{
        grid-template-columns:repeat(1, 1fr);
    }

    /* カテゴリ　*/
    .order_bt{
    margin: 0 15px 2em;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;    
    }
    .tag-f .box{
        width: 100%;
    }
    .tag-f .box .thum{
        padding: 8px;
        width: 100%;
    }
    .tag-f .box .text{
        width: 100%;
    }
    .order_bt{
        margin: 1em 0;
    }
    .order_bt li{
        width: calc((100% - 40px)/2);
        margin: 10px;
    }

}
@media screen and (max-width: 380px){
    .header-menu .tag-f select{
        width: 80px;
    }
    .search-f{
    padding-left: 10px;
}
}