
@media only screen and (min-width:600px) {

.event-title {
    font-size: 180%;
    color: #202321;
    font-weight: normal;
    padding: 22px 10px;
    margin: 0 0 60px;
    line-height: 1;
    border-bottom: #CCC 1px solid;
}

.site-main {
    padding-top: 0;
}

.str-outer:not(.of-full), .mod-tab .tab-panel {
    padding-right: 0;
    padding-left: 0;
}

.main-page {
    margin-bottom: 50px;
    padding: 50px 20px;
    font-size: 120%;
    color: #fdf7e4;
    background: #aa261b;
    font-family: "Didot", "ヒラギノ明朝 Pro";
}

.main-page a {
    color: #fdf7e4;
}

.main-page h1 {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.main-page h2 {
    font-size: 300%;
    text-align: center;
    letter-spacing: 0.06em;
    color: #fdf7e4;
    line-height: 1.2;
}

.main-page h3 {
    margin: 150px 0 15px;
    font-size: 200%;
    text-align: center;
    border-bottom: none;
}

.recommend-title {
    position: relative;
    margin: 30px 100px !important;
    padding: 15px;
    min-width: 120px;
    max-width: 100%;
    color: #b8291d;
    background: #fdf7e4;
}
    
.recommend-title:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: 0;
    border: 10px solid transparent;
    border-top: 20px solid #fdf7e4;
}

/* nav */

.wrap-index {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 2%;
}

.wrap-index li {
    width: 32%;
    text-align: center;
}

/* LINE */

.wrap-line {
    margin: 50px 0;
    padding: 40px 0;
    text-align: center;
    background: #fff;
}

.line-text {
    text-align: center;
    color: #333;
}

.wrap-line a {
    display: block;
    position: relative;
    margin: 20px 50px 0;
    padding: 15px;
    text-align: center;
    font-size: 120%;
    font-weight: 600;
    color: #fff;
    background: #357051;
    text-decoration: none;
}

.wrap-line a::after {
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 30px;
    content: '';
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

/* コンテンツ */

.wrap-content {
    margin: 150px 0;
}

.main-text {
    margin: 40px 20px 60px;
    text-align: center;
    font-weight: 600;
}

.wrap-recommend {
    margin: 10% 0;
}

.image-item li {
    text-align: center;
}

.check-btn {
    position: relative;
    display: inline-block;
    margin: 50px 180px;
    padding: 0 100px;
    text-decoration: none;
    outline: none;
}

.check-btn::before{
    content: '';
    position: absolute;
    bottom: -9px;
    left: 55px;
    width: 80%;
    height: 1px;
    background: #fdf7e4;
}

.check-btn::after{
    content: '';
    position: absolute;
    bottom: -4px;
    right: 34px;
    width: 16px;
    height: 1px;
    background: #fdf7e4;
    transform: rotate(35deg);
}

/* ボタン */

.right-arrow  {
    display: block;
    position: relative;
    margin: 0 30px 50px;
    padding: 25px;
    text-align: center;
    color: #333 !important;
    background-color: #fff;
    text-decoration: none;
    border: 1px solid #333;
}

.right-arrow::after {
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 30px;
    content: '';
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: translateY(-50%) rotate(45deg);
}

.right-arrow-02  {
    display: block;
    position: relative;
    margin: 5%;
    padding: 3%;
    color: #333;
    font-size: 3.5vw;
    text-align: center;
    font-weight: 600;
    background-color: #333;
}

.right-arrow-02::after {
    display: block;
    width: 2vw;
    height: 2vw;
    position: absolute;
    top: 50%;
    right: 3vw;
    content: '';
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
}

/* トピックス */

.topics-flex {
    margin: 0 2% 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.topics-flex li {
    width: 48%;
    margin-bottom: 2%;
}

/*----------- アコーディオン -------------*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    margin: 0 0 5%;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.favorite-btn {
    position: relative;
    margin: 0 30px;
    cursor: pointer;
    text-align: center;
    font-size: 120%;
    padding: 25px;
    color: #fff;
    transition: all .5s ease;
    border-bottom: none;
    background-color: #357051;
}

/*アイコンの＋と×*/
.favorite-btn::before,
.favorite-btn::after{
    position: absolute;
    content:'';
    width: 18px;
    height: 1px;
    background-color: #fff;
    
}
.favorite-btn::before{
    top:48%;
    right: 30px;
    transform: rotate(0deg);
    
}
.favorite-btn::after{    
    top:48%;
    right: 30px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.favorite-btn.close::before{
	transform: rotate(45deg);
}

.favorite-btn.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    color: #333;
    margin: 0 1px;
    padding: 5% 0 0;
}

.box-text {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    align-items: center;
    justify-content: center;
}

.box-text li {
    position: relative;
    display: flex;
    width: 32%;
    margin-bottom: 2%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.box-text li::after {
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 15px;
    content: '';
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: translateY(-50%) rotate(45deg);
}

.material-box li {
    width: 45%;
}

.box-text a {
    color: #333;
    flex-grow: 1;
    text-decoration: none;
    padding: 2.5em 0;
    background: #fff;
    border: 1px solid #333;
}

.box-text img {
    padding: 0 20px 0 10px;
}

/*共通*/

html {
    scroll-behavior: smooth;
  }

.content_inner {
    padding-top: 70px;
    margin-top: -70px;
}

.note {
    font-size: 3vw;
    padding-left: 1em;
	text-indent: -1em;
}

.col {
    width: 48%;
    margin-bottom: 3%;
}

ul.block-thumbnail-t > li .block-thumbnail-t--goods .block-thumbnail-t--goods-description:has(.block-thumbnail-t--bookmark-button) .block-thumbnail-t--brand-name {
    color: #fdf7e4;
}

ul.block-thumbnail-t > li .block-thumbnail-t--goods .block-thumbnail-t--goods-description .block-thumbnail-t--goods-name, ul.block-thumbnail-h > li .block-thumbnail-h--goods .block-thumbnail-h--goods-description .block-thumbnail-h--goods-name, .detail .title, ul.block-thumbnail-t > li .block-thumbnail-t--goods .block-thumbnail-t--goods-description .block-thumbnail-t--price, ul.block-thumbnail-h > li .block-thumbnail-h--goods .block-thumbnail-h--goods-description .block-thumbnail-h--price, .mod-productPnl > .inner > .content > .detail .price, .block-goods-price--price .tax-text {
    color: #fdf7e4;
}

}