
@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;
}
    
.main-page {
    margin-bottom: 80px;
    font-size: 120%;
}

.main-inner {
    margin: 5% 0;
    padding: 5%;
    background-color: #fffff5;
    border-radius: 10px;
}

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

.main-page h2{
    background-image: url(/img/usr/operation/ec_campaign/permanent/birthday/240221/background-title.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 30px 0;
    font-size: 180%;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.main-page h3{
    width: 80%;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 180%;
    font-weight: 600;
    border-bottom: none;
}

.main-page h3 img {
    margin-bottom: 5%;
    max-width: 12%;
}

.under-line {
    background: linear-gradient(transparent 40%, #fcff01 40%);
}

.circle {	
    position: relative;
    width: 80px;
    height: 80px;
    margin: 50px auto 20px;
    border-radius: 50%;
    color: #fff;
    background: #000;
    text-align: center;
    line-height: 80px;
  }

.main-page h4 {
    margin: 50px 0;
    padding-bottom: 20px;
    font-size: 120%;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.title-text {
    margin: 80px 50px;
    line-height: 1.6;
}

/* テーブル */

table {
    margin: 50px;
    font-size: 150%;
    font-weight: 600;
    text-align: left;
}

td, th {
    padding: 10px 0;
}

th {
    width: 25%;
    font-weight: 600;
}

/* contents */

.contents_inner {
    padding-top: 54px;
    margin-top: -54px;
}

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

.decoration {
    position: relative;
    padding: 0 55px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 250%;
    font-weight: 600;
    color: #debb60;
}

.decoration:before, .decoration:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 250px;
    height: 1px;
    background-color: black;
}

.decoration:before {
    left:0;
}
.decoration:after {
    right: 0;
}

.main-text {
    margin: 5%;
    line-height: 1.6;
}

.main-text li {
    margin-bottom: 2%;
}

.note {
    margin: 10px 0 0;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 80%;
    font-weight: 500;
}

.contents_inner {
    padding-top: 150px;
    margin-top: -150px;
}

.wrap-phone-img {
    text-align: center;
}

.phone-img {
    margin: 5% 0;
    max-width: 75%;
}

.wrap-choose-btn {
    display: flex;
    justify-content: center;
    gap: 2%;
}

.wrap-choose-btn li {
    width: 50%;
}

.wrap-choose-btn a {
    margin: 0!important;
}

.fixed {
    text-align: center;
    font-size: 5vw;
    font-weight: 600;
    color: #06c755;
}

/* 吹き出し */

.balloon2 {
    position: relative;
    text-align: center;
    margin: 0vw 0 50px;
    padding: 40px;
    min-width: 120px;
    max-width: 100%;
    font-size: 150%;
    background: #FFF;
    border: solid 2px #000;
    box-sizing: border-box;
  }
  
  .balloon2:before {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    margin-left: -11px;
    border: 7px solid transparent;
    border-top: 15px solid #FFF;
    z-index: 2;
  }
  
  .balloon2:after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 50%;
    margin-left: -12px;
    border: 8px solid transparent;
    border-top: 18px solid #000;
    z-index: 1;
  }


/* hr */

hr {
    margin: 10% 5%;
}

/* btn */

.right-arrow {
    display: block;
    position: relative;
    margin: 50px;
    padding: 30px 0;
    font-weight: 600;
    text-align: center;
    font-size: 120%;
    color: #fff;
    background: #000;
    text-decoration: none;
}

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

/*アコーディオン全体*/

.accordion-area{
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

/*アコーディオンタイトル*/
.title-brand-index {
    position: relative;
    cursor: pointer;
    font-size: 150%;
    font-weight: normal;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 50px;
    transition: all .5s ease;
    color: #fff;
    background-color: #000;
}

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

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

.title-brand-index.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/

.box {
    display: none;/*はじめは非表示*/
}
}