@charset "utf-8";
/*================================
	ボディ全体(全ページ共通)
================================*/
body{
	width:100%;
	color:#19191a;
}
.contents{
	display: flex;
	flex-wrap: wrap;
	width: 1200px;
    margin: 20px auto 50px;
	position: relative;
    -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.main{
    width: 70%;
    padding-top: 10px;
}
.pcNone{
	display:none!important;
}
/*==========================================
	ヘッダー
===========================================*/
header{
    width: 100%;
    display: block;
}
#top-head{
    display: none;
}
.header-top{
    width: 100%;
    background: #ff761a;
    box-sizing: border-box;
    padding:10px 0;
}
.header-top div{
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto;
}
.header-top h1 {
    width: 40%;
    font-weight: bold;
}
.header-top ul{
    display: flex;
    justify-content: flex-end;
    width: 60%;
}
.header-top ul li{
    color: #fff;
    margin-left: 30px;
    font-weight: bold;
}
.header-top ul li:first-of-type{
    margin-left: 0;
}
.header-top a {
    color: #fff;
    font-size: 13px;
}
.header-bottom {
    box-sizing: border-box;
    border-bottom: 1px solid #dcdcdc;
    background: #fff;
}
.header-bottom>div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    height: 90px;
}
.header-bottom>div>h1 {
    width: 15%;
    position: relative;
}
.header-bottom>div>h1 img {
    position: absolute;
    top:0;
    bottom:0;
    right:0;
    left:0;
    margin: auto;
}
.header-bottom>div>form {
    display: grid;
    width: 70%;
    align-items: center;
}
.header-bottom>div>form input{
    display: block;
    width: 100%;
    height: 35px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #19191a;
}
.header-bottom>div>form input[type="submit"]{
    display: none;
}

/*=========================================
	サイドバー
==========================================*/
.sidebar {
    width: 25%;
    margin-right:5%;
}
.sidebar>h2{
    font-size: 20px;
    font-weight: bold;
    padding: 10px 10px 0 10px;
    margin-bottom: 10px;
}
.sidebar>ul{
    padding: 10px;
    position: relative;
}
.sidebar>ul li:hover{
    opacity: 0.8;
}
.sidebar>ul li a{
    font-weight: bold;
    display: block;
}
.sidebar>ul li{
    padding: 10px 10px 10px 0;
    font-weight: bold;
    position: relative;
    font-size: 16px;
    line-height: 2;
}
.sidebar>ul li::after{
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    margin: auto auto auto 10px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
}
/*=========================================
	商品の並び
==========================================*/
.item-area{
	width:calc(100%/3);
    padding: 10px;
    margin-bottom: 20px;
}
/*=====================================
	フッター部分の中身
=====================================*/
.footer-top>div{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.footer-top>div h2{
    width: 100%;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}
.footer-top>div>ul{
    width: 50%;
}
.footer-top>div>ul li:first-of-type{
    font-weight: bold;
}
.footer-top>div>ul li:nth-of-type(2){
    margin-bottom: 10px;
}
.footer-top>div>ul li span{
    font-size: 12px;
    display: inline-block;
    margin-right: 10px;
}
.footer-bottom>div{
    width: 1200px;
    margin: 0 auto 50px;
}
.footer-bottom>div>h2{
    width: 20%;
    margin:20px auto;
}
.footer-bottom>div>ul{
    width:max-content;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 50px;
}
.footer-bottom>div>ul li{
    width: max-content;
    margin-right: 30px;
}
.footer-bottom>div>ul li:last-of-type{
    margin-right: 0;
}
.footer-bottom>div>p{
    text-align: center;
    color: #fff;
}
/*=====================================
	商品詳細ページのスタイル
=======================================*/
.product-container{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.product-photo-box{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    margin-right:2%;
}
/*====商品写真slick====*/
#slider{
    width: 80%;
    margin-right:2%;
    height: max-content;
}
.slide-item iframe{
    width: 100%;
}
#thumbnail-list{
    width: 18%;
    margin: 0 auto;
}
.thumbnail-item{
    width: 50%;
    height: max-content;
    box-sizing: border-box;
    position: relative;
    float:left;
    overflow: hidden;
}
/*====ここまで====*/
.product-deta{
    width:48%;
    box-sizing: border-box;
}
.emphasis{
    font-weight: bold;
    color: #ff5858;
}
.buy-discription{
    display: flex;
    flex-wrap: wrap;
}
.buy-discription1,
.buy-discription2{
    width: 50%;
}
.buy-request{
    position: fixed;
    background: #fff;
    box-sizing: border-box;
    padding:20px;
    right: 0;
    width: 200px;
    bottom: 10%;
    z-index: 9999;
    filter: drop-shadow(-3px 3px 3px rgba(0,0,0,0.2));
}
.request-btn2{
    background: red;
    box-sizing: border-box;
    padding: 10px 0;
    text-align: center;
    border-radius: 4px;
}
.request-btn2 a{
    color: #fff;
    font-weight: bold;
}
.item_info{
    display: flex;
    flex-wrap: wrap;
    background: #f1f1f1;
    margin-bottom: 30px;
}
.item_info>li:first-of-type{
    width: 20%;
    padding: 20px;
}
.item_info>li:last-of-type{
    width: 80%;
}
.item_info>li>ul{
    padding: 20px 0;
}
/*=================================================
	フットメニュー（購入ガイド）
=================================================*/
.buynav>div{
    width: 50%; 
}
.buynav>div:nth-of-type(-n+2){
    margin-bottom: 50px;
}
/*=====================================================
	YAHOO&楽天用ポップアップ
======================================================*/
.modal_wrap input{
    display: none;
}
.modal_overlay{
    display: flex;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.5s, transform 0s 0.5s;
    transform: scale(0);
}
.modal_trigger{
    position: absolute;

    width: 100%;
    height: 100%;
}
.modal_content{
    align-self: center;
    width: 100%;
    max-width:1130px;
    padding: 30px 30px 15px;
    box-sizing: border-box;
    background: #fff;
    line-height: 1.4em;
    transform: scale(1.2);
    transition: 0.5s;
	overflow: scroll;
	height: 600px;
}
.close_button{
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
}
.modal_wrap input:checked ~ .modal_overlay{
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s;
}
.modal_wrap input:checked ~ .modal_overlay .modal_content{
    transform: scale(1);
}
.open_button{
    padding: 1% 5%;
    border-radius: 16px;
    cursor: pointer;
    background: #aaa;
    color: #fff;
    position:fixed;
    top: 30%;
    right: 0;
    z-index: 9000;
}
.modal_wrap h2{
	font-size: 25px;
    font-weight: bold;
	color: #f00;
	margin-bottom: 3%;
 	}
.modal_wrap p{
	font-weight: bold;
	margin-bottom: 1%;
	background: #eee;
	padding: 1%;
	}
.modal_wrap pre{
	box-sizing: border-box;
	padding: 1%;
	position: relative;
	margin-bottom: 3%;
	}
.modal_wrap pre math{
    display: block;
}
#selectPre{
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  padding: 1%;
  font-family: consolas;
}