@charset "UTF-8";

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

/************************************
** 子テーマ用のスタイルを書く
************************************/
.sp{
	display: none;
}

.product_link{
	margin-top: 30px;
}

.product_title{
	background-color: #b5a215;
}

.product_title a{
	width: 100%;
	display: block;
	text-decoration: none;
}

.product_title span{
	color: #ffffff;
}

.product_table tbody tr{
	display: flex;
}
.product_table tbody tr td{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.product_table tbody tr td:first-child{
	flex: 3;
}

.product_table tbody tr td:nth-child(2){
	flex: 3.5;
}

.product_table tbody tr td:last-child{
	flex: 3.5;
}

.product_tab,
.product_price{
	display: block;
	line-height: 1.8;
}

.product_btn a{
	position: relative;
	bottom: 0;
	text-decoration: none;
	background-color: #000f2d;
	padding-inline: 20px;
	padding-block: 15px;
	border-radius: 20px;
	box-shadow: 0 3px 6px #b5a215;
	transition: all 0.3s;
	text-align: center;
	display: block;
	width: 100%;
}

.product_btn a:hover{
	bottom: 3px;
	box-shadow: 0 6px 8px #b5a215;
}
.product_btn a:active{
	bottom: 0;
	box-shadow: 0 0px 3px #b5a215;
}
.product_btn a span{
	display: block;
	color: #ffffff;
	font-weight: bold;
}

.oneBtn{
	text-align: center;
}

.oneBtn a{
	display: inline-block;
	border: 3px solid #b5a215;
	border-radius: 20px;
	padding: 15px 20px;
	max-width: 400px;
	text-decoration: none;
	background-color: #000f2d;
}

.oneBtn a span{
	color: #ffffff;
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 1px;
}

.side_line_btn{
	text-align: center;
	background: #00C300;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    cursor: pointer;
    transition: .3s ease;
    display: inline-block;
    text-decoration: none;
	width: 100%;
	margin-top: 15px;
}

.side_line_btn span{
	display: inline-block;
	font-weight: bold;
}

.side_line_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    color: #FFCC22;
}

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

/*834px以下*/
@media screen and (max-width: 834px){
	/*必要ならばここにコードを書く*/
}

/*500px以下*/
@media screen and (max-width: 500px){
	.sp{
		display: block;
	}
	.product_table tbody tr td:nth-child(2) {
		flex: 5;
	}

	.oneBtn a{
		max-width: 100%;
		width: 100%;
	}
}

/*480px以下*/
@media screen and (max-width: 480px){
	/*必要ならばここにコードを書く*/
}