
@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;
}


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

.main-page {
    margin-bottom: 50px;
    padding: 60px 20px;
    font-size: 120%;
    background: #ededed;
    font-family: "Cardo", "Noto Serif JP", serif;
}

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

.main-page h2 {
    font-size: 180%;
    text-align: center;
    color: #374360;
    padding: 30px 0;
    border-top: solid 3px #374360;
    border-bottom: solid 3px #374360;
  }

.number {
    color:#374360;
}

h2.category-title {
    position: relative;
    padding: 8% 0 0;
    margin-bottom: 0.5em;
    border: none;
    color: #374360;
    border-top: 1px dashed #333;
}
h2.category-title:before {
    content: '';
    position: absolute;
    bottom: -30px;
    display: inline-block;
    width: 45px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #374360;
    border-radius: 2px;
}

.main-page h3 {
    margin: 0 0 2%;
    font-size: 4vw;
    text-align: center;
    border-bottom: none;
}

.title-text {
    margin: 10% 5%;
    font-size: 3.8vw;
    text-align: center;
    font-weight: 600;
}

/* LINE */

.wrap-line {
    padding: 5% 0;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
}

.flex-line {
    display: flex;
    justify-content: center;
}

.wrap-line a {
    display: block;
    position: relative;
    margin: 10px 50px 0;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    background: #5ddb00;
    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);
}

/* nav */

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

.japanese {
    font-size: 70%;
}

.wrap-index li {
    position: relative;
    display: flex;
    width: 32%;
    height: 6em;
    margin-bottom: 2%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.wrap-index a {
    padding-top: 27px;
    display: block;
    height: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 2px 2px 3px 0px #ccc;
    text-decoration: none;
}

/* コンテンツ */

.wrap-content {
    margin: 15% 0;
}

.main-text {
    margin: 5%;
    text-align: center;
}

.denim-spec {
    margin: 0 20%;
}

.wrap-spec {
    margin-top: 5%;
}

.wrap-review {
    position: relative;
    background: #e0e6ed;
    padding: 5%;
    margin: 10% 2% 5%;
    line-height: 1.6;
}

.wrap-review:after {
    position: absolute;
    font-family: "Font Awesome 5 Free", 'Quicksand', 'Avenir', 'Arial', sans-serif;
    font-weight: 900;
    content: '\f007  スタッフレビュー';
    background: #111d2b;
    color: #fff;
    left: 0px;
    bottom: 100%;
    border-radius: 5px 5px 0 0;
    padding: 1% 2%;
  }

.wrap-other-content {
    padding: 5%;
    background: #fff;
}

.point {
    background: #fffc00;
    font-weight: 600;
}

/* ボタン */

.right-arrow  {
    display: block;
    position: relative;
    margin: 30px;
    padding: 25px;
    color: #fff;
    text-align: center;
    background-color: #333;
    text-decoration: none;
}

.right-arrow::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);
}

/* トピックス */

.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;
    padding: 25px;
    color: #fff;
    transition: all .5s ease;
    border-bottom: none;
    background-color: #333;
    border-radius: 100px;
}

/*アイコンの＋と×*/
.favorite-btn::before,
.favorite-btn::after{
    position: absolute;
    content:'';
    width: 16px;
    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;
}

.box-text li {
    position: relative;
    display: flex;
    width: 32%;
    margin-bottom: 2%;
    justify-content: center;
    height: 6.5em;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #333;
}

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

.box-text a {
    padding-top: 19%;
    display: block;
    height: 100%;
    width: 100%;
}

.wrap-brand a {
    padding: 30px;
    display: block;
    height: 100%;
    width: 100%;
}

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

.material-box  img {
    max-width: 93%;
}

/*共通*/

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%;
}

.block-goods-list--param .block-goods-list--param-left, .block-goods-list--param .block-goods-list--param-right {
    display: none;

}
}