@charset "utf-8";


/* -----------------------------------------------------------
    商品詳細
-------------------------------------------------------------- */
.products-detail{}

.products-detail-linebg{
	background: url("../img/flower-bg.jpg") no-repeat center top / cover;
	height: 20px;
}

.products-detail .h1-area{
    top: 100px;
}
.products-detail .breadcrumblist {
    top: 100px;
}

.products-section-title{
    font: 500 2rem / 1.5 'Noto Sans JP', sans-serif;
    text-align: left;
}

/* favorite */
.products-detail .favorite{
    color: #777;
    font: 500 1.5rem / 1 'Noto Sans JP', sans-serif;
    padding: 0;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    cursor: pointer;
}
.products-detail .favorite:hover{
    color: #de5c6f;
}
.products-detail .favorite.done{
    color: #de5c6f;
}

/* back-link */
.products-detail .back-link{
	padding: 20px 0 60px;
}

@media screen and (max-width: 667px){
	
    .products-section-title{
        font-size: 1.6rem;
		margin: 0 0 -15px;
    }

    /* favorite */
    .products-detail .favorite{
        right: 15px;
        bottom: 15px;
    }
	
	/* back-link */
	.products-detail .back-link{
		padding: 20px 0 20px;
		text-align: center;
	}
	
}



/*    products-detail-wrapper
-------------------------------------------------------------- */
.products-status-review{
    display: flex;
	justify-content: space-between;
    margin: 0 0 10px;
}

.top-review-txt{
	font-size: 1.4rem;
	text-align: right;
}
.top-review-txt a{
	color: #777;
}
.top-review-txt a::before{
	display: inline-block;
	margin: 0 5px 0 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.2rem;
	color: #35A6B2;
	content: "\f27a";
}


.products-status-wrap{
    display: flex;
    width: calc(100% - 130px);
    flex-wrap: wrap;
}

.products-status-wrap > li{
    display: inline-block;
    font-size: 1.4rem;
    padding: 8px 10px 5px;
    margin: 0 10px 10px 0;
}
.products-status-wrap > li.status1{
    background: #F4DCD8;
}
.products-status-wrap > li.status2{
    background: #D5E1DD;
}
.products-status-wrap > li.status3{
    background: #D8DAD1;
}
.products-status-wrap > li.status4{
    background: #EEE9D6;
}
.products-status-wrap > li.status5{
    background: #CED0D9;
}
.products-status-wrap > li.status6{
    background: #D3E3D8;
}

.products-detail-title{
	font: 500 2.6rem / 1.4 'Noto Sans JP', sans-serif;
	margin: 0 0 20px;
}

.products-detail-catch{
    font-size: 1.7rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.products-detail-wrapper{
	display: flex;
	width: 100%;
    padding: 60px 0 0;
}

/*	.products-detail-left---------------------*/
.products-detail-left{
	width: 600px;
	margin: 0 50px 0 0;
}

/* slick */
.product-main-slider{
  opacity: 0;
  transition: opacity .01s linear;
}
.product-main-slider.slick-initialized{
  opacity: 1;
}

.product-main-slider.slick-initialized .slick-slide{
    display: flex !important;
    width: 100%;
    height: 450px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
	/*
    cursor: pointer;
	*/
}
.slick-slide{
	position: relative;
}
.slick-slide .caption {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	padding: 12px 20px 10px;
	background: rgba(255, 255, 255, .6);
	color: #333;
	font-size: 1.4rem;
	opacity: 0;
	transition: .3s ease;
	line-height: 1.4;
}
.slick-current .caption {
	opacity: 1;
	transition-delay: .5s;
}

.product-main-slider div img{
	width: auto;
    max-height: 100%;
}

.product-slider-thumb .slick-track{
	display: flex;
	width: 100% !important;
	flex-wrap: wrap;
	margin: 30px 0 0 0;
}
.product-slider-thumb .slick-slide{
    display: flex !important;
    width: 135px;
    height: 100px;
    justify-content: center;
    align-items: center;
    margin: 0 20px 20px 0;
    overflow: hidden;
    cursor: pointer;
	background: #f5f5f5;
}
.product-slider-thumb .slick-slide:nth-of-type(4n){
	margin: 0 0 20px 0;
}
.product-slider-thumb .slick-slide img {
    width: auto;
    max-height: 100%;
}

/*	.products-detail-right---------------------*/
.products-detail-right{
	flex: 1;
}

/* products-detail-summary */
.products-detail-summary dl{
	display: flex;
	width: 100%;
	align-items: center;
	margin: 0 0 20px;
}
.products-detail-summary .regular-price + .price{
	color:#ff0000;
}
.products-detail-summary dt{
	margin: 0;
	font-size: 1.8rem;
}

/* price */
.products-detail-summary .price span{
    font: 400 3.4rem / 1 'Josefin Sans', sans-serif;
	margin: 0 0 0;
}

/* delivery */
.products-detail-summary .delivery{
    line-height: 1.8;
	background: #f6f6f6;
	padding: 20px 30px;
	margin: 0 0 40px;
}
.products-detail-summary .delivery dt{
	margin: 0 30px 0 0;
	font-size: 1.4rem;
}
.products-detail-summary .delivery dd{
	border-left: 1px #ddd solid;
	padding: 0 0 0 25px;
}

/* type txt */
.products-detail-summary .type-txt span{
	display: block;
	font-size: 1.4rem;
	line-height: 1.5;
	margin: 5px 0 0;
}

/* products-cart-thumb */
.products-cart-thumb{
    display: flex;
    width: 100%;
    margin: 20px 0 30px;
}
.products-cart-thumb > li{
    width: 80px;
    height: 80px;
	/*
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	*/
    margin: 0 20px 0 0;
    overflow: hidden;
    cursor: pointer;
	position: relative;
	/*
	flex: 1;
	*/
}
.products-cart-thumb > li:last-child{
    margin: 0;
}
.products-cart-thumb img{
    width: auto;
    max-height: 100%;
}


/* products-cart-thumb */
.radio-button-group {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
    margin: 10px 0 30px;
}
.radio-button-group .item {
	width: auto;
	margin: 0 10px 0 0;
	position: relative;
}
.radio-button-group .item:last-child {
	margin: 0;
}
.radio-button-group .radio-button {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	bottom: 0;
}
.radio-button-group .radio-button + label {
	padding: 10px 10px 5px;
	cursor: pointer;
	color: #333;
	display: block;
	text-align: left;
	font-size: 1.4rem;
	line-height: 1.4;
	width: 130px;
}
.radio-button-group .radio-button:checked + label {
	background-color: #F2E6DD;
	background-color: #F5D3D9;
	/*
	color: #FFF;
	*/
}
.radio-button-group .item .thumb{
    width: 110px;
    height: 110px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
	margin: 0 0 5px;
}
.radio-button-group .item .thumb img{
    width: auto;
    max-height: 100%;
}

	
/* cart-number-wrap */
.cart-number-wrap #quantity{
    display: inline-block;
    width: 100px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 0 !important;
    padding: 15px;
    font-size: 1.6rem !important;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #333;
    letter-spacing: 0.03em;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0 0 0 10px;
}

/* cart-add-wrap */
.cart-add-wrap{
    display: flex;
    width: 100%;
    align-items: center;
    margin: 30px 0 0;
}

input[type="submit"].cart-add-btn{
    width: 320px;
    padding: 22px 0;
	background: #de5c6f;
	color: #fff;
	font-weight: bold;
}
input[type="submit"].cart-add-btn[disabled]{
	background: #ddd;
	color: #777;
	cursor: not-allowed;
}

#products .cart-add-wrap .favorite{
    position: static;
    margin: 0 0 0 30px;
}


/* products-option-wrap */
.point-wrapper {
	margin-top: 70px;
}
.point-title {
	font-weight: bold;
	font-size: 1.7rem;
}

.products-option-wrap{
    display: flex;
	justify-content: space-between;
    width: 100%;
    margin: 30px 0 0;
}
.products-option-wrap > li{
    width: calc((100% - 30px) / 3);
    line-height: 1.5;
    text-align: left;
	font-size: 1.4rem;
	background: #f6f6f6;
    padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.products-option-wrap > li .point{
	position: absolute;
	left: 20px;
	top: -10px;
	font-size: 1.4rem;
	letter-spacing: .2em;
	font-weight: 600;
}
.products-option-wrap > li .photo{
	text-align: center;
	width: 130px;
}
.products-option-wrap > li .photo img{
	width: 80%;
}

.products-option-wrap > li div{
	width: calc(100% - 143px);
}
.products-option-wrap > li .tit{
	font-size: 1.6rem;
	margin: 0 0 5px;
	font-weight: bold;
}

@media screen and (max-width: 667px){
	.point-title {
		text-align: center;
	}
}	



/*	.products-slider---------------------*/
.products-detail .products-slider{
	margin: 30px 0 0 0;
}

.products-detail .products-block{
	width: 200px;
	margin: 0 25px 0 0;
}

.products-detail .products-block{
	text-align: left;
}

.products-detail .products-slider a{
	display: block;
}

.products-detail .products-block img{
	width: 100%;
}

.products-detail .products-title{
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	margin: 25px 0 0 0;
}

@media screen and (max-width: 667px){
	.products-option-wrap > li .photo img{
		width: 100%;
	}
	.top-review-txt{
		font-size: 1.4rem;
		text-align: right;
		padding: 0 0 15px;
	}
	.top-review-txt a{
	}
	.top-review-txt a::before{
		margin: 0 5px 0 0;
	}

	
    .products-status-wrap{
        margin: 0 0 5px;
		width: 100%;
    }

    .products-status-wrap > li{
        font-size: 1.2rem;
        padding: 8px 5px 5px;
        margin: 0 5px 5px 0;
    }

    .products-detail-title{
        font-size: 2.2rem;
        margin: 0 0 15px;
    }

    .products-detail-catch{
		font-size: 1.6rem;
        margin: 15px 0 15px;
    }

    .products-detail-wrapper{
        display: block;
        padding: 25px 0 0;
    }

    /*	.products-detail-left---------------------*/
    .products-detail-left{
        width: 100%;
        margin: 0;
    }

    /* slick */
    .product-main-slider.slick-initialized .slick-slide{
        height: 300px;
    }
	
	.product-slider-thumb{
		padding: 0 5px;
	}
	.product-slider-thumb .slick-track{
		margin: 10px 0 0 0;
	}
    .product-slider-thumb .slick-slide{
        width: calc((100% - (5px * 4)) / 5);
        height: 70px;
        margin: 0 5px 5px 0;
    }
    .product-slider-thumb .slick-slide:nth-of-type(4n){
        margin: 0 5px 5px 0;
    }
	.product-slider-thumb .slick-slide:nth-of-type(5n){
        margin: 0 0 5px 0;
    }
	.slick-slide .caption {
		padding: 10px 15px;
		font-size: 1.2rem;
	}
	
	/*
	.product-slider-thumb{
		display: none!important;
	}
	*/
	
    /*	.products-detail-right---------------------*/

    /* products-detail-summary */
    .products-detail-summary dl{
        margin: 0 0 20px;
    }

    /* price */
    .products-detail-summary .price span{
        font-size: 2.8rem;
    }

    /* delivery */
    .products-detail-summary .delivery{
        display: block;
		padding: 20px;
		margin: 0 0 30px;
    }
	.products-detail-summary .delivery dt{
		margin: 0 0 5px 0;
		font-size: 1.4rem;
		font-weight: bold;
	}
	.products-detail-summary .delivery dd{
		border-left: none;
		padding: 0;
	}
	
    /* products-cart-thumb */
    .products-cart-thumb{
        display: flex;
        width: 100%;
        margin: 20px 0 30px;
    }
    .products-cart-thumb > li{
        display: flex;
        width: 80px;
        height: 80px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 20px 0 0;
        overflow: hidden;
        cursor: pointer;
    }

	/* products-cart-thumb */
	.radio-button-group .item {
		margin: 0 5px 0 0;
	}
	.radio-button-group .radio-button + label {
		padding: 5px 5px 2px;
		font-size: 1.3rem;
		line-height: 1.4;
		width: 90px;
	}
	.radio-button-group .item .thumb{
		width: 80px;
		height: 70px;
		margin: 0 0 5px;
	}
	
	
    /* cart-add-wrap */
    .cart-add-wrap{
        display: block;
        margin: 20px 0 0;
		text-align: center;
    }

    input[type="submit"].cart-add-btn{
        width: 100%;
        padding: 22px 0;
		font-size: 1.8rem;
    }

    #products .cart-add-wrap .favorite{
        display: inline-block;
		text-align: center;
        margin: 20px auto 0;
    }

	/* products-option-wrap */
	.products-option-wrap{
		display: block;
		margin: 30px 0 0;
	}
	.products-option-wrap > li{
		width: 100%;
		background: #f3f3f3;
		padding: 15px 10px;
		margin: 0 0 20px;
		font-size: 1.4rem;
		align-items: center;
	}
	
	.products-option-wrap > li .point{
		left: 10px;
		top: -10px;
	}
	.products-option-wrap > li .photo{
		width: 90px;
		padding: 4px 0 0;
	}

	.products-option-wrap > li div{
		width: calc(100% - 100px);
	}
	.products-option-wrap > li .tit{
		margin: 0 0 2px;
	}

	
    /*	.products-slider---------------------*/
    .products-detail .products-slider{
        margin: 30px 0 0 0;
    }

    .products-detail .products-block{
        width: 200px;
        margin: 0 25px 0 0;
    }

    .products-detail .products-block{
        text-align: left;
    }

    .products-detail .products-slider a{
        display: block;
    }

    .products-detail .products-block img{
        width: 100%;
    }

    .products-detail .products-title{
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.2;
        margin: 25px 0 0 0;
    }
}


/*    products-detail-info
-------------------------------------------------------------- */
.products-detail-info{
	width: 100%;
    background: #f6f6f6;
    padding: 45px 0;
    margin: 80px 0 0;
    position: relative;
}
.products-detail-info .section-title{
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    z-index: 1;
}


.products-detail-info .detail-contents{
    line-height: 1.8;
	background: #fff;
	padding: 50px 70px 50px 70px;
}

.products-detail-info .detail-contents p {
    margin-bottom: 0;
}

/* 見出し系 */
.detail-contents h1,
.detail-contents h2,
.detail-contents h3,
.detail-contents h4{
	font-weight: bold;
	line-height: 1.5;
}

.detail-contents h1 {
	margin: 0 0 20px 0;
	font-size: 2.6rem;
	/*color: #000;*/
}

.detail-contents h2 {
    border-bottom: 3px #444 solid;
	font-size: 2.4rem;
	margin: 0 0 30px 0;
	padding: 0 0 10px;
}

.detail-contents h3 {
	border-radius: 6px;
	background: #efefef;
	font-size: 2.2rem;
	margin: 0 0 30px 0;
	padding: 15px 30px;
}

.detail-contents h4 {
	font-size: 2rem;
	margin: 0 0 20px 0;
	padding: 0 0 0 16px;
    position: relative;
}

.detail-contents h4::before {
	background: #444;
	border-radius: 3px;
	content: '';
	display: block;
	height: calc(100% - 10px);
	left: 0;
	position: absolute;
	top: 5px;
	width: 4px;
}

@media screen and (max-width: 667px){

	.products-detail-info{
		padding: 25px 10px;
		margin: 40px 0 0;
	}
	.products-detail-info .section-title{
		top: -10px;
		left: 20px;
		right: 0;
	}
	
    .products-detail-info .detail-contents{
        line-height: 1.8;
		font-size: 1.5rem;
		padding: 20px 20px 15px 20px;
    }

	.products-detail-info .detail-contents p {
		margin-bottom: 0;
	}
	
    /* 見出し系 */
    .detail-contents h1 {
		margin: 0 0 10px;
		font-size: 2rem;
	}
	
	.detail-contents h2 {
		margin: 0 0 20px;
		padding: 0 0 8px;
		font-size: 1.8rem;
	}
	
	.detail-contents h3 {
		margin: 0 0 20px;
		padding: 15px 15px;
		font-size: 1.6rem;
	}
	
	.detail-contents h4 {
		margin: 0 0 10px;
		padding: 0 0 0 15px;
		font-size: 1.6rem;
	}
	
	.detail-contents h4::before {
		top: 2px;
		height: calc(100% - 8px);
	}
}


/*    products-size-area
-------------------------------------------------------------- */
.products-size-area{
    width: 100%;
    background: #fff;
    padding: 50px 70px;
    margin: 20px 0 0;
}

.products-size-wrap{
    display: flex;
    width: 100%;
	font-size: 1.5rem;
	line-height: 1.7;
}
.products-size-wrap:first-of-type{
    margin: 0 0 20px;
}

.products-size-wrap dt{
    width: 80px;
    margin: 0 20px 0 0;
	font-weight: bold;
}
.products-size-wrap dd{
	width: calc(100% - 100px);
}

@media screen and (max-width: 667px){

    .products-size-area{
        padding: 20px;
        margin: 20px 0 0;
    }

    .products-size-wrap{
        display: block;
        line-height: 1.6;
    }
    .products-size-wrap:first-of-type{
        margin: 0 0 15px;
    }

    .products-size-wrap dt{
        width: 100%;
        margin: 0 0 5px;
    }
	.products-size-wrap dd{
		width: 100%;
	}
	
}


/*    review-area
-------------------------------------------------------------- */
.review-area{
	padding: 80px 0 40px;
}
.review-area .section-title{
}

.review-scroll-wrap {
	/*
    width: 100%;
    height: 400px;
    border: 1px solid #d8cfba;
    overflow-y: auto;
    padding: 30px;
	margin: 30px 0 0;
	*/
	margin: 30px 0 0;
}

.review-submit{
    display: block;
    width: 280px;
    text-align: center;
	/*
    border: 1px solid #333;
	*/
    padding: 18px 0 15px 0;
    margin: -50px 0 0 auto;
	background: #7b7b7b;
	background: #35A6B2;
	color: #fff!important;
	font-size: 1.5rem;
}
.review-submit::before{
	display: inline-block;
	margin: 0 8px 0 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.5rem;
	color: #fff;
	content: "\f303";
}


.review-wrap > li{
    padding: 50px;
    margin: 0 0 30px;
	width: 100%;
    position: relative;
	background: #F5F3E9;
	display: none;
}

.review-title{
    font-weight: bold;
    font-size: 2rem;
	line-height: 1.5;
}

.review-name{
    padding: 10px 0;
	font-size: 1.4rem;
}

.review-star{
	color: #aaa;
}
.review-star span{
    color: #FFCB02;
}

.review-img{
	float: right;
	padding: 0 0 0 40px;
}
.review-img img{
	width: 100%;
	height: 100%;
	max-width: 300px;
	max-height: 300px;
}
.review-comment{
    line-height: 1.8;
    margin: 15px 0 0;
}

.noreview-txt{
	padding: 30px 0 0;
}


/* MOREボタン */
/*
.review-area .readMoreBtn{
	width: 300px;
	font: 500 1.4rem / 1 'Josefin Sans', sans-serif;
	letter-spacing: .15em;
	text-align: center;
	border: 1px solid #494949;
	padding: 25px 0;
	cursor: pointer;
	background: #fff;
	position: relative;
	outline: none;
	margin: 10px auto 0;
}
.review-area .readMoreBtn span{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.review-area .readMoreBtn::after{
	display: inline-block;
	content: "＋";
	position: absolute;
	top: calc((100% - 1em) / 2);
	right: 20px;
	font-size: 1.6rem;
}
*/
.review-area .readMoreBtn {
	display: none;
	text-align: center;
	margin: 0 auto;
}
.review-area .readMoreBtn a {
	width: 300px;
	font: 500 1.4rem / 1 'Josefin Sans', sans-serif;
	letter-spacing: .15em;
	border: 1px solid #494949;
	padding: 24px 0 20px;
	position: relative;
	margin: 10px auto 0;
	display: block;
}
.review-area .readMoreBtn a::after {
	display: inline-block;
	content: "＋";
	position: absolute;
	top: calc((100% - 1em) / 2);
	right: 20px;
	font-size: 1.6rem;
}


@media screen and (max-width: 667px){

	.review-area{
		padding: 30px 10px;
	}
	.review-area .section-title{
	}
	
	.review-scroll-wrap {
		/*
		padding: 0;
		height: 300px;
		margin: 20px 0 0;
		-webkit-overflow-scrolling: touch;
		*/
		margin: 20px 0 0;
	}
	
    .review-submit{
        width: 100%;
        padding: 15px 0;
		margin: 15px auto 0;
    }

    .review-wrap > li{
        padding: 15px;
        margin: 0 0 15px;
    }

    .review-title{
        font-size: 1.6rem;
    }

    .review-name{
        font-size: 1.2rem;
        padding: 10px 0;
    }

	.review-img{
		float: none;
		padding: 0 0 15px;
		text-align: center;
	}
	.review-img img{
		max-width: 300px;
		max-height: 300px;
	}
	.review-comment{
		line-height: 1.8;
		margin: 15px 0 0;
	}

    .review-comment{
        line-height: 1.8;
        margin: 15px 0 0;
		font-size: 1.5rem;
    }
	
	.noreview-txt{
		padding: 20px 0 0;
		text-align: center;
		font-size: 1.4rem;
	}
	
	/* MOREボタン */
	.review-area .readMoreBtn {
	}
	.review-area .readMoreBtn a {
		width: 200px;
		padding: 18px 0 16px;
		margin: 10px auto 0;
	}
	.review-area .readMoreBtn a::after {
		right: 15px;
	}
	
}





/*    result-area
-------------------------------------------------------------- */
.result-area{
    padding: 20px 0 0;
}

/* favorite */
.result-product-wrap .favorite{
    color: #999;
    font: 500 2rem / 1 'Noto Sans JP', sans-serif;
    padding: 0!important;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    cursor: pointer;
}
.result-product-wrap .favorite:hover{
    color: #de5c6f!important;
}
.products-category .favorite.done{
    color: #de5c6f;
}


@media screen and (max-width: 667px){

    .result-area{
        padding: 0 10px;
    }
	/* favorite */
    .result-product-wrap .favorite{
        right: 15px;
        bottom: 15px;
		font-size: 2.4rem;
    }

}



/*    カート：モーダル表示
-------------------------------------------------------------- */
.item-detail.ec-inlineBtn--action{
	font-size: 1.8rem;
	display: block;
	margin: 10px auto 20px;
	width: 320px;
	padding: 20px 0;
	background: #de5c6f;
	color: #fff;
	font-weight: bold;
}


@media screen and (max-width: 667px){

	.item-detail.ec-inlineBtn--action{
		font-size: 1.8rem;
		margin: 5px auto 15px;
		width: 100%;
		max-width: 250px;
		padding: 15px 0;
	}
	
}

/*   オプション：詳細説明部分
-------------------------------------------------------------- */
/* 項目の間隔 */
.option_description .modal-body > div {
	margin-bottom: 1% !important;
}	
/* 選択するボタン */
.option_description .btn-info {
    color: #525263 !important;
    background-color: #F5F7F8 !important;
    border: solid 1px #ccc !important;
	padding: 8px 0 !important;
	cursor: pointer !important;
	font-weight: bold;
}
.option_description .btn-info:hover {
 	background-color: #d8dfe3 !important;
}	
.option_description .modal-header {
	padding: 3% !important;
}
.option_description h3 {
	padding: 7px 7px 3px 7px !important;
}	

/* closeボタン */
.option_description .modal-header .plainmodal-close {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
	font-size: 3rem !important;
	color: #ccc !important;
	opacity: 1 !important;
	cursor: pointer !important;	
}
.option_description img {
	width: 40% !important;
}	
	
@media screen and (max-width: 667px){
	.option_description {
		width: 100% !important;
	}
	.option_description img {
		margin: 5% auto 0 !important;
	}	
	.option_description .modal-header {
		padding: 20px 12px 12px 12px !important;
	}
	.option_description .modal-header > p {
		margin: 10px 0 0 0 !important;
	}	
	.option_description .modal-body {
		padding: 12px !important;
	}
	.option_description .modal-body > div > p {
		margin: 5% 0 0 !important;
	}	
	.option_description h3 {
		padding: 6px 2px 2px 5px !important;
	}	
	.option_description .modal-header .plainmodal-close {
		margin-top: -15px !important;
		margin-right: -3px !important;
	}	
	.option_description .btn-info {
		margin: 15px 10px 10px auto !important;
		font-size: 1.4rem;
	}
	.option_description img {
		width: 100% !important;
	}		
}	

