@charset "UTF-8";
/* CSS Document */


/*-----------------------------------------------
layout
-----------------------------------------------*/
.contents {
    margin: 0 auto;
    padding: 0;
    max-width: 1276px;
    word-break: break-word;
}
section#campaign {
    background: #cfe2f3;
    padding: 80px;
}
.top_img {
    display: flex;
    justify-content: center;
}
.campaign_detail {
    text-align: center;
    padding: 60px 0 0;
}

.campaign_detail p {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

p.main_cath {
    font-size: 2.8rem;
    line-height: 1.8;
    margin-bottom: 60px;
    font-family: 'Noto Sans JP', sans-serif;
}

.main_links {
    margin: 60px 0;
}

.main_links a {
display: inline-block;
 font-size: 1.8rem;
    padding: 0.8em;
    color: #000;
}

.main_links a.x_link {  
    background: #009a53;
    color: #ffff;
    font-family: 'Noto Sans JP', sans-serif;
}

.main_links ul {
    margin: 60px 0;
}

.main_links ul li {
    margin-bottom: 30px;
}

li.campaign_terms a {
    border: 1px solid #000;
    width: 200px;
}

li.campaign_post a {
    background: #000;
    color: #fff;
    width: 200px;
}

p.notes {
    font-size: 1.4rem;
    margin-bottom: 0;
}

span.red {
    color: #e6002d;
}

.page_main {
    width: 100%;
	margin-bottom: 80px;
}
.section {
    background: #fcf3d6;
    border: solid 8px #fff;
    box-sizing: border-box;
	margin-bottom: 60px;
}
.sec_content {
    padding: 60px;
}
.media_pc{
	display: block;
}
.media_sp{
	display: none;
}

.sp_view {
    display: none;
}

/* モーダルCSSここから */
.modalArea {
  visibility: hidden; /* displayではなくvisibility */
  opacity : 0;
  position: fixed;
  z-index: 10; /* サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 10%;
  left: 50%;
  transform:translate(-50%,0);
  width: 70%;
  height: 500px;
  max-width: 800px;
  padding: 40px;
  background-color: #fff;
  overflow: auto;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.is-show { /* モーダル表示用クラス */
  visibility: visible;
  opacity : 1;
}

.modalContents p {
    line-height: 1.6;
}
/* モーダルCSSここまで */


/* 以下ボタンスタイル */
button {
  padding: 1rem 2rem;
  font-weight: bold;
  background-color: transparent;
  border: 2px solid #282828;
  border-radius: 4px;
  cursor: pointer;
}

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

@media screen and (max-width:768px){
.page_main {
    margin-bottom: 40px;
}
.sec_content {
    padding: 30px 20px;
}
.section {
    border: solid 4px #fff;
    margin-bottom: 30px;
    border-right: 0;
    border-left: 0;
}
.media_pc{
	display: none;
}
.media_sp{
	display: block;
}
.breadcrumb {
    display: none;
}	
section#campaign {
    padding: 30px;
}
.campaign_detail {
    padding: 30px 0 0;
}
p.main_cath {
    font-size: 2.2rem;
    margin-bottom: 30px;
}
.modalWrapper {
    width: 80%;
    padding: 30px;
}
.pc_view {
    display: none;
}
.sp_view {
    display: block;
}
}