@charset "UTF-8";
/* CSS Document */


/*------------------------------------

商品紹介

------------------------------------*/
.lineup_area {
    display: flex;
    justify-content: center;
}
.lineup_area.other{
	margin-top: 100px;
    justify-content: space-evenly;
}

.lineup_area h4{
    letter-spacing: 0.8rem;
}
.lineup_area .itiran{
    letter-spacing: 0.1rem;
}
.lineup_area li {
    display: flex;
    flex-direction: column;
    width: 380px;
	justify-content: space-between;
    align-items: center;
}
.lineup_area li p {
    line-height: 2;
    text-align: left;
    width: 70%;
    margin: 0 auto 40px;
    letter-spacing: 1px;
	flex-grow: 1;
}
.rounded-frame {
    width: 80%;
    overflow: hidden;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #333;
}

/* マウスホバー */
.rounded-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-out;
    transform-origin: center center;
}
.rounded-frame:hover img {
    transform: scale(1.1); /* ★1.1倍に拡大する (値は調整可能) */
    /* 例えば、もっと大きくするなら transform: scale(1.2); */
}

.lineup_more {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.lineup_more li {
    width: 21%;
    margin: 0 2% 20px;
}
.more-content .lineup_more::after {
    content: "";
    flex-grow: 1;
}
.lineup_more li a {
    display: block;
}
.lineup_more li img {
    width: 100%;
    height: 200px;
    object-fit: contain;
	transition: .5s;
}
.lineup_more li:hover img {
 	transform: scale(1.1); 
}

.lineup_more li span {
    display: block;
    width: 100%;
    margin-top: 20px;
}
.lineup_more li span.tag {
    display: inline-block;
    margin-top: 20px;
	background-color: #C40018;
	color: #fff;
	width: max-content;
	padding: 0 10px;
	margin: 5px 5px auto;
}
.container_xp {
    background-color: #E6E8E9;
    padding: 50px;
    border-radius: 80px;
}
.lineup-category section:nth-child(odd) .container_xp {
    background-color: #F5F5F5;
}
.more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.more-content.expanded {
    max-height: 3000px;
/*    max-height: max-content;*/
}
.more-content .lineup_more li {
    margin: 0 2% 70px;
}
.toggle-button {
    position: relative;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.toggle-button::before {
    position: absolute;
    display: block;
    content: "";
    background-image: url(../common/images/icon_syohin_more.png);
    width: 15px;
    height: 9px;
    background-repeat: no-repeat;
    background-size: contain;
    top: 6px;
    right: -20px;
}
.toggle-button.is-open::before {
    transform: rotate(180deg);
    top: 8px;
}
.lineup .parallax-section .content_wrap {
    width: 1310px;
}
.lineup-article .mincho {
    color: inherit;
}
.article-img_wrap{
	width: 60%;
	margin: 0 auto;
}
table {
    width: 70%;
    border-top: dotted 1px #323232;
    margin: 0 auto;
}
table th {
    width: 20%;
    background-color: #E6E8E9;
    text-align: center;
    vertical-align: middle;
}
table td {
    text-align: left;
    padding-left: 20px;
}
table th,table td {
    border-bottom: dotted 1px #323232;
    padding-top: 20px;
    padding-bottom: 20px;
}
dt {
    float: left ;
    clear: left ;
    margin-right: 0.5em ;
    width: 120px ;
}
dd {
    float: left ;
    margin-left: 1em ;
}
/*------------------------------------

tb sp

------------------------------------*/

/* より一般的なタブレット範囲を対象にする場合（例: 768px から 1200px） */
@media only screen and (min-width: 768px) and (max-width: 1310px) {
	.lineup_area li {
		width: 30%;
	}

}
/* スマートフォン版のスタイル */
  @media screen and (max-width: 767px) {
    .page #hero article.content_wrap {
        padding-bottom: 100px;
    }
    .btn:first-of-type {
        margin-bottom: 50px;
    }
    .rounded-frame {
        width: 315px;
        height: 420px;
        margin: 0 auto;
    }
    .lineup_more {
        margin-bottom: 0;
    }
    .lineup_more li {
        width: 46%;
    }
    .container_xp {
        padding: 40px;
    }
    .lineup_more li img {
        height: 120px;
    }
    .lineup_more li span {
        margin-top: 0;
        font-size: 10px;
    }
    .lineup_area {
        display: block;
    }
    .lineup_area li {
        width: 100%;
        margin-bottom: 80px;
    }
}