@charset "UTF-8";

.caution-area{
  padding: 32px;
  border: 3px solid #CC0033;
  margin-bottom: 24px;
}
.anc_nav{
  display: flex;
  justify-content: center;
  gap: 16px;
}
.anc_nav li{
  width: 25%;
}
.anc_nav li a.c-btn{
  color: #fff;
  position: relative;
  padding: 0 48px 0 24px;
}
.anc_nav li a.c-btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 24px;
  top: 50%;
  margin-top: -8px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  filter: blur(0);
  -webkit-filter: blur(0);
}
.step-frame{
  border: 1px solid gray;
  border-radius: 16px;
}
.youtube_frame{
  height: 500px;
  width: 1200px;
  margin-bottom: 32px;
}

.p-noticeLineArea01{
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: none;
}
.p-noticeLineArea01 + .p-noticeLineArea01{
  /* border-top: none; */
}
.p-noticeLineArea01__title{
  margin-bottom: 8px;
}
.p-noticeLineArea01 .img-holder{
  border: solid 1px #ccc;
  padding: 12px;
  margin-bottom: 24px;
}
.campaign_code{
  margin-bottom: 12px;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  border: solid 1px #ccc;
}
.campaign_code span{
  font-size: 20px;
  color: #CC0033;
}
.p-noticeLineArea01__body dl dt{
  font-weight: bold;
}
.p-noticeLineArea01__body dl dd{
  padding-left: 20px;
}
.p-noticeLineArea01__body dl dd p span.t-bold{
  font-weight: bold;
}

@media only screen and (max-width: 768px){
  .caution-area{
    padding: 24px;
  }
  .l-sectionWrap{
    --img_width: 600px;
  }
  .c-staticImg02 img {
    width: var(--img_width);
  }
  .anc_nav{
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 8px;
  }
  .anc_nav li{
    width: calc(50% - 4px);
  }
  .anc_nav li a.c-btn{
    height: 50px;
    font-size: 12px;
    line-height: 1.3;
    justify-content: normal;
    padding: 0 32px 0 24px;
  }
  .anc_nav li a.c-btn::after {
    right: 20px;
    width: 8px;
    height: 8px;
  }
  .step-frame {
    padding: 16px;
    border-radius: 8px;
  }
  .c-staticCardStyle01__logo{
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .youtube_frame{
    display: block;
    height: 240px;
    width: 100%;
    max-width: var(--img_width);
    margin: 0 auto 24px auto;
  }
}


/* アコーディオン部分 */
.acc_overview_wrap {
	border: 1px solid #ebebeb;
	border-radius: 10px;
}

.acc_overview_wrap + .acc_overview_wrap{
  margin-top: 16px;
  
}

.acc_overview_title {
    display: block;
    color: inherit;
    padding: 1.5em 3em 1.5em 1.5em;
    position: relative;
    cursor: pointer;
}
.acc_overview_content {
    padding: 1em 1.5em 0;
}

.acc_overview_title:after {
	content: "";
	position: absolute;
	display: inline-block;
	right: 1.5em;
	top: 50%;
	margin-top: -8px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(135deg);
}

.isOpenTop.acc_overview_title:after {
	transform: rotate(-45deg);
	margin-top: -2px;
}
