@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 30px 1px;
    font-size: 140%;
    color: #333;
    background: #fcfdf3;
}

.main-page a {
    text-decoration: none;
}

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

.main-page h2 {
    font-size: 180%;
    text-align: center;
}

.main-page h3 {
    text-align: center;
}

.back-color h3 {
    padding: 20px 0;
    font-size: 110%;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.recommend-title {
    position: relative;
    margin: 5% 20%!important;
    padding: 2%;
    min-width: 120px;
    max-width: 100%;
    font-size: 4vw!important;
    background: #fffc00;
}
    
.recommend-title:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -2vw;
    border: 2vw solid transparent;
    border-top: 3vw solid #fffc00;
}

/* 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: 50px 0;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
}

.line-text {
    text-align: center;
}

.wrap-line a {
    display: block;
    position: relative;
    margin: 10px 30px;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    background: #5ddb00;
}

.wrap-line a::after {
    display: block;
    width: 15px;
    height: 15px;
    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: 120px 0;
}

.main-text {
    margin: 30px;
    text-align: center;
}

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

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

.check-btn {
    position: relative;
    display: inline-block;
    margin: 5% 0;
    padding: 0 10%;
    text-decoration: none;
    outline: none;
}

.check-btn::before{
    content: '';
    position: absolute;
    bottom: -30%;
    left: 13%;
    width: 80%;
    height: 1px;
    background: #000;
}

.check-btn::after{
    content: '';
    position: absolute;
    bottom: -13%;
    right: 1.2em;
    width: 5%;
    height: 1px;
    background: #000;
    transform: rotate(35deg);
}

.back-color {
    margin: 5%;
    padding: 2% 8% 8%;
    border: 1px solid #ccc;
    background: #fcfcfc;
}


/* ボタン */

.right-arrow  {
    display: block;
    position: relative;
    margin: 0 50px 30px;
    padding: 22px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #000;
}

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

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

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

/* アコーディオン */

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

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

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

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

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

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

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    color: #000;
    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;
    height: 8em;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #333;
}

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

.box-text img {
    max-width: 80%;
}

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

/*共通*/

html {
    scroll-behavior: smooth;
  }

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

hr {
    margin: 10% 5%;
}

.note {
    font-size: 3vw;
}

.indent-1 {
	padding-left:1em;
	text-indent:-1em;
}

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