@charset "UTF-8";
/* ============== 共通 =================== */
#contents {
  background-color: #ffffff;
  padding: 0 0 10px;
  color: #333;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

#contents * {
  box-sizing: border-box;
}

#contents a {
  color: #0099cc;
  text-decoration: underline;
}

.display-sp {
  display: none;
}

/*--- 終了対応 ---*/
.end_txt {
	color: #f50028;
	background-color: #fff;
	font-size: 180%;
	font-weight: 700;
	text-align: center;
	padding: 20px 0;
	line-height: 1;
}

#contents .pre_btn.close_btn {
	position: relative;
	pointer-events: none;
}

#contents .pre_btn.close_btn::after {
	content: "※本キャンペーンは終了しました";
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f50028;
	font-size: 2.5rem;
	font-weight: 700;
  text-shadow: 
     2px  2px 0 #fff,
    -2px  2px 0 #fff,
     2px -2px 0 #fff,
    -2px -2px 0 #fff,
     2px  0px 0 #fff,
    -2px  0px 0 #fff,
     0px  2px 0 #fff,
     0px -2px 0 #fff;
	background-color: rgba(255, 255, 255, 0.8);
	width: 104%;
	height: 120%;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

/*コンテンツ幅*/
.ly-block {
  margin: auto;
  max-width: 970px;
  width: calc(100% - 60px);
  border: 2px solid #ddd;
  border-radius: 8px;
}

.top, main {
  background-color: #29abe2;
}

main {
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", Sans-serif;
}

.top_ttl {
  max-width: 970px;
  margin: 0 auto 0;
}
.top_ttl img {
  width: 100%;
}

/* ============== btn =================== */
.btn_wrap {
  margin: 50px auto;
}

#contents .btn {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  height: 50px;
  background-color: #ff9123;
  background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/★ディレクトリ名/img/btnarrow_right.png);
  background-size: 20px;
  background-position: center right 15px;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

.btn_att {
  margin-top: 18px;
  color: #999;
  font-size: 12px;
}

/*終了対応*/
#contents .btn_close {
  pointer-events: none;
  position: relative;
}

#contents .btn_close::before {
  content: none;
}

#contents .btn_close::after {
  content: "※本キャンペーンは終了しました";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7); /* ←※固定 */
  margin: 0 auto;
  z-index: 10;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
}

/* ============== LP =================== */
/* ============== att =================== */
.att {
  overflow: hidden;
  margin: 50px auto 80px;
  text-align: left;
  line-height: 1.7;
}

.att_list {
  width: calc(100% - 100px);
  max-width: 830px;
  margin: 6.8% auto;
}

.att_item + .att_item {
  margin-top: 30px;
}

.att_item_ttl {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding-left: 1.5em;
  line-height: 1.3;
}

/*「●」タイプのリスト用*/
.att_item_ttl::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #0d2077;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.att_item_inner p {
  margin-top: 10px;
}
.att_item_inner p span {
  font-size: 12px;
  color: #999;
}
.att_item_inner p span.pc {
  display: inline;
  color: #000;
  font-size: 14px;
}
.att_item_inner p span.sp {
  display: none;
}
.att_item_inner p span.indent {
  font-size: 14px;
  color: #000;
  padding-left: 1em;
  text-indent: -1em;
  display: block;
}

.att_item_inner p + p {
  margin-top: 0;
}

.att_item_img {
  margin: 20px auto;
  text-align: center;
}

.att_list-style {
  margin-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
}

.att_list-style li > ul, .att_list-style li > ol {
  margin-left: 1em;
  margin-bottom: 5px;
}

.att_small-unit {
  margin: 5px auto 10px;
}

.att_small-unit dt {
  font-weight: bold;
  text-indent: 0;
  margin-left: -0.5em;
}

/* コンテンツ（SP：767px以下）
========================================================*/
@media screen and (max-width: 767px) {
  /* ============== 共通 =================== */
  .display-pc {
    display: none;
  }
  .display-sp {
    display: block;
  }
  .end_txt {
    font-size: 150%;
  }
  .ly-block {
    width: calc(100% - 30px);
  }
  /* ============== btn =================== */
  .btn_wrap {
    width: calc(100% - 90px);
    margin: 11% auto;
  }
  .btn_att {
    margin-top: 15px;
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
  /*終了対応*/
  #contents .btn_close::after {
    font-size: 1.8rem;
  }
  /* ============== LP =================== */
  /* ============== att =================== */
  .att {
    margin: 38px auto 60px;
  }
  .att_list {
    width: calc(100% - 54px);
    margin: 26px auto 30px;
  }
  .att_item + .att_item {
    margin-top: 8%;
  }
  .att_item_ttl {
    padding-left: 1.5em;
    margin-bottom: 10px;
  }
  .att_item_inner p, .att_list-style {
    margin-top: 5px;
  }
}
/* 202301
========================================================*/
/* ページトップボタン
========================================================*/
#pagetop {
  width: 100%;
}

#pagetop .inner {
  margin: 0 auto;
  max-width: 880px;
}

#pagetop .inner.bottom {
  padding: 20px 0 20px;
}

#pagetop .inner p {
  padding-top: 8px;
  margin: 0;
}

html*#pagetop .inner p {
  display: block;
  width: 160px;
}

#pagetop .inner p a {
  position: relative;
  display: block;
  margin: 0 0 0 auto;
  width: 130px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  background: #61482d;
  text-decoration: none;
}

#pagetop .inner p a:before {
  content: "";
  position: absolute;
  margin: -14px 0 0 -8px;
  top: 0;
  left: 50%;
  border: 8px solid transparent;
  border-bottom-color: #61482d;
}

#pagetop .inner p a {
  background: #000 !important;
  color: #fff !important;
  font-size: 13px !important;
  pointer-events: auto !important;
  border-radius: 5px;
}
#pagetop .inner p a:before {
  border-bottom-color: #000;
}
@media screen and (max-width: 767px) {
  #pagetop {
    margin-top: 20px;
  }
}

/* ドリームバザール
========================================================*/
li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
  width: 0;
  height: 0;
}

.cont-wrap img {
  vertical-align: top;
}

.font-bold {
  font-weight: 700;
}

/* コンテンツ（PC：960px以上）
========================================================*/
#contents {
  padding: 0;
  color: #231815;
}

.cont-wrap {
  max-width: 970px;
  margin: 0 auto 0;
  background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/pontaclaus2512/img/bg.png) repeat-y;
}
@media screen and (max-width: 767px) {
  .cont-wrap {
    max-width: 100%;
  }
}

.ttl_01 {
  height: 40px;
  background-color: #0ff;
}

.contentns-img {
  text-align: center;
}

.contentns-img.top {
  margin-bottom: 50px;
}

.claus-pre {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .claus-pre {
    padding: 0 4.6%;
  }
}

#contents .campaign {
  max-width: 880px;
  margin: 20px auto 50px;
}
#contents .campaign-title.open {
  border-radius: 35px 35px 0 0;
}
#contents .campaign-title {
  background-color: #fff;
  border-radius: 35px;
  padding: 16px 0;
  transition: border-radius 0.5s !important;
}
#contents .campaign-title h2 {
  color: #000;
  font-size: 26px;
  font-weight: 500;
}
#contents .campaign #toggle1:checked + .title, #contents .campaign #toggle2:checked + .title {
  border-radius: 35px 35px 0 0;
  transition: border-radius 0s !important;
}
#contents .campaign .att {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 0;
  margin: 0;
}
#contents .campaign a {
  color: #0099cc;
  text-decoration: underline;
}
#contents .campaign span.red {
  color: #f00;
}
#contents .campaign .google {
  height: 15px;
  width: auto;
}
#contents .campaign .att_list {
  margin: 30px auto;
}
#contents .campaign .att_item_inner p.top {
  margin-top: 0;
}
#contents .campaign .att_item_inner p.bold {
  font-weight: bold;
}
#contents .campaign .att_item_inner h3 {
  font-size: 18px;
  line-height: 25px;
}
#contents .campaign .att_item + .att_item {
  margin-top: 20px;
}
#contents .campaign .att_item_ttl {
  font-size: 22px;
  padding-left: 25px;
  margin-bottom: 5px;
  font-weight: 500;
}
#contents .campaign .att_item_ttl::before {
  content: "";
  background-color: #00a9e9;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 5px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#contents .campaign .acc_second .att_item_ttl::before {
  background-color: #22b573;
}
#contents .campaign .att_list-style.noindent {
  text-indent: 0;
  padding-left: 1em;
}
#contents .campaign .att_list-style {
  margin-top: 0;
  padding-left: 2em;
}
#contents .campaign .att_list-style p {
  text-indent: 0em;
  margin-top: 0;
}
#contents .campaign .google {
  vertical-align: middle;
}

.att_header {
  position: relative;
}

.att_header::before {
  /*
  content: "";
  background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/pontaclaus2312/img/att_arrow.png);
  background-size: 21px 18px;
  display: block;
  position: absolute;
  top: 12px;
  left: 297px;
  transform: rotate(-90deg);
  width: 21px;
  height: 18px;
  z-index: 2;
  @media screen and (max-width: 900px) {
    left: 250px;
  }
  @media screen and (max-width: 767px) {
    left: 75px;
    top: 10px;
  }
    */
}

.accordion.att_header.open::before {
  transform: rotate(0deg);
  top: 12px;
}
@media screen and (max-width: 767px) {
  .accordion.att_header.open::before {
    top: 10px;
  }
}

.att_title {
  font-size: 26px;
  margin: 30px 0 0;
  color: #ed1c00;
  font-weight: 500;
}
.att_title span {
  font-size: 20px;
}

.pontoku-link {
  text-align: center;
  margin: 60px 0 10px;
}
.pontoku-link a {
  text-decoration: underline;
  color: #000 !important;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.pontoku-btn {
  width: 550px;
  height: auto;
  margin: 0 auto;
}
.pontoku-btn a {
  display: block;
}
@media screen and (max-width: 767px) {
  .pontoku-link a {
    font-size: 1.6rem;
  }
  .pontoku-btn {
    width: 80%;
    margin: 0 auto;
  }
}

.what-area {
  position: relative;
  padding: 20px 0;
}
.what-area ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 84.5%;
  margin: 0px auto 0;
}
.what-area ul li {
  width: 50%;
}
.claus-pre {
  max-width: 880px;
  background: rgba(80, 255, 255, 0.6);
  padding: 20px;
  /* 本体スクロール */
  /* フェイクスクロールバー */
}
.claus-pre.pre2 {
  background: rgba(140, 198, 63, 0.6);
}
.claus-pre .pre_txt {
  width: 71%;
  margin: 0 auto;
  padding: 10px 0 22px;
}
.claus-pre .pre_btn {
  width: 55%;
  margin: 0 auto 35px;
}
.claus-pre .pre_btn a {
  display: block;
}
.claus-pre .pre_btn a img {
  width: 100%;
}
.claus-pre .pre_title {
  position: relative;
  margin-bottom: 20px;
}
.claus-pre .pre_title h2 {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 70px;
}
@media (max-width: 868px) {
  .claus-pre .pre_title h2 {
    font-size: 22px;
    top: 65px;
  }
}
.claus-pre .present-list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 25px;
  align-items: stretch;
}
.claus-pre .present-list li {
  width: 48.8%;
  box-sizing: border-box;
  background: #fff;
  margin: 0px 0 20px;
  padding: 10px 0px;
  text-align: left;
  text-align: center;
  position: relative;
}
.claus-pre .present-list li .icon {
  width: 190px;
  margin-bottom: 10px;
  border: 1px solid #b3b3b3;
}
.claus-pre .present-list li .textarea {
  padding: 0px 75px;
}
.claus-pre .present-list li .textarea h2 {
  font-size: 16px;
  line-height: 1.2;
  padding: 0px 0 10px;
  font-weight: 500;
}
.claus-pre .present-list li .textarea h2 span {
  font-size: 16px;
  display: block;
  font-weight: normal;
  padding: 5px 0 0;
}
.claus-pre .present-list li p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  padding: 5px 20px 120px;
}
.claus-pre .present-list li p b {
  text-decoration: underline;
}
.claus-pre .present-list li a {
  display: block;
}
.claus-pre .present-list li .pre-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
}
.claus-pre .popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}
.claus-pre .popup-content {
  background: #fff;
  padding: 50px 20px 20px;
  max-width: 600px;
  width: 100%;
  border-radius: 6px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
  font-size: 16px;
}
.claus-pre .popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.claus-pre .scroll-wrap {
  position: relative;
}
.claus-pre .scroll-container {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  background: #f5c0d2;
  margin-top: 20px;
  /* PCで本物のスクロールバーを消す */
  scrollbar-width: none;
}
.claus-pre .scroll-container.second {
  background: #e8ffae;
}
.claus-pre .scroll-container.second .spp {
  display: none;
}
.claus-pre .scroll-container img {
  width: 200%;
  display: block;
  max-width: none;
}
.claus-pre .scroll-container::-webkit-scrollbar {
  display: none;
}
.claus-pre .fake-scrollbar {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px; /* 太さ10px */
  border-radius: 5px;
  overflow: hidden;
  /* ドラッグ時、テキスト選択防止 */
}
.claus-pre .fake-scrollbar .fake-thumb {
  height: 100%;
  width: 40%;
  background: #b3b3b3;
  border-radius: 5px;
  position: absolute;
  left: 0;
  cursor: grab;
}
.claus-pre .fake-scrollbar .fake-thumb:active {
  cursor: grabbing;
}
.claus-pre .fake-scrollbar .no-select {
  user-select: none !important;
}

.chance {
  margin: 40px 0;
}

/*アコーディオン*/
.accordion .content {
  max-height: 0;
  overflow: hidden;
  padding: 15px 10px 0 10px;
}

.toggle {
  display: none;
}

.option {
  position: relative;
}

.accordion .title,
.accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  cursor: pointer;
}

.accordion .title {
  font-size: 22px;
  padding: 0.5em 1em;
  display: block;
  color: #000;
  font-weight: bold;
  background: #e9e9e9;
  /* background: linear-gradient(to right, #e9e9e9 0%, #e9e9e9 95%, #e0e0e0 95%, #e0e0e0 100%); */
}

/*プラス・マイナスアコーデオン
.title::after,
.title::before {
content: "";
position: absolute;
right: 18px;
top: .7em;
width: 3px;
height: 1em;
background-color: #666;
transition: all 0.3s;
z-index: 2;
}
.title::after {
transform: rotate(90deg);
}
*/
/* 初期状態（閉じている時） */
.title::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 41px;
  height: 41px;
  transform: translateY(-50%);
  background: url(https://pntc.sslcs.cdngc.net/cdn/campaign/pontaclaus2512/img/icon_close.png) no-repeat center/contain;
}

/* チェックされた時 = 開いている時 → open画像 */
.toggle:checked + .title::after {
  background-image: url(https://pntc.sslcs.cdngc.net/cdn/campaign/pontaclaus2512/img/icon_open.png);
}

.title span {
  width: 94%;
  display: block;
}

.title span::before {
  background: #d9d9d9;
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0px;
  top: 15%;
}

.toggle:checked + .title + .content {
  max-height: 12000px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

label {
  margin-right: 0;
}

/*アコーディオンEND*/
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.modal.show {
  display: block;
}
.modal .modal-bg {
  position: absolute;
  inset: 0;
}
.modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 870px;
  max-width: 80%;
  max-height: 80vh;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.modal .modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}
.modal .modal-scroll {
  margin-top: 30px;
  height: calc(80vh - 60px);
  overflow-y: scroll;
  text-align: left;
  /* スクロールバー常時表示（Chrome用） */
}
.modal .modal-scroll.campaign {
  margin: 30px auto 0 !important;
}
.modal .modal-scroll.campaign .att_list {
  margin: 0px auto 30px !important;
}
.modal .modal-scroll::-webkit-scrollbar {
  width: 8px;
}
.modal .modal-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
}
.modal .modal-scroll::-webkit-scrollbar-track {
  background: #eee;
}
.modal .modal-scroll .att_list {
  width: 95%;
  margin: 0 auto;
}
.modal .modal-scroll .att_list h2 {
  margin: 0;
}

/* 追従バナーPC */
/* 右下追従バナーの外枠 */
.follow-banner-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 280px;
  height: 170px;
  display: none; /* 初期は非表示 */
  z-index: 9999;
}

/* バナー本体 */
.follow-banner {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

.follow-banner img {
  width: 100%;
  height: 100%;
}

/* PRテキスト（バナー上部・枠外） */
.follow-banner-label {
  position: absolute;
  top: -36px;
  left: 0;
  font-size: 17px;
  background: none;
  font-weight: bold;
  color: #333;
}

/* 閉じるボタン（バナー右上・枠外） */
.follow-banner-close {
  position: absolute;
  top: -40px;
  right: 0px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(238, 238, 238, 0.6);
  font-weight: bold;
  font-size: 30px;
  color: #666;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.follow-banner-close:hover {
  background: #ccc;
}

/* コンテンツ（PC/TB：768px以上）
========================================================*/
/* コンテンツ（幅調整：855px以下）
========================================================*/
/* コンテンツ（SP：767px以下）
========================================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .cont-wrap {
    max-width: 767px;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
  }
  #contents .pre_btn.close_btn::after {
    font-size: 100%;
  }
  /* 追従バナーSP */
  /* バナー全体の位置調整とサイズ変更 */
  /* PRテキスト（上部）を小さめに */
  /* 閉じるボタン（×） */
}
@media screen and (max-width: 767px) and (max-width: 700px) {
  .cont-wrap {
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .cam1-wrap {
    background: none;
    height: 100%;
  }
  .kv-sp {
    max-width: 100%;
    height: auto;
    padding: 0;
    position: static;
  }
  .ttl1 {
    margin-bottom: 0;
  }
  .card {
    background-size: 30%;
  }
  .example {
    margin: 0 10px;
  }
  .example figcaption {
    position: static;
    padding-top: 10px;
  }
  .banner-wrap {
    display: block;
    max-width: 430px;
    margin: 0 auto;
  }
  .banner-wrap a {
    margin-bottom: 10px;
    height: auto;
  }
  .campaign {
    padding: 0;
  }
  .att-area {
    padding: 20px 20px 0;
  }
  .att-ul {
    margin-left: 10px;
  }
  #pagetop .inner.bottom {
    padding: 0 20px 20px;
  }
  #contents .campaign {
    width: 100%;
    margin: 15px auto 20px;
  }
  #contents .campaign-title h2 {
    font-size: 12px;
    padding: 5px 0;
  }
  #contents .campaign a {
    color: #0099cc;
    text-decoration: underline;
  }
  #contents .campaign span.red {
    color: #f00;
  }
  #contents .campaign .google {
    height: 15px;
    width: auto;
  }
  #contents .campaign .att_list {
    margin: 0px auto 25px;
    font-size: 11px;
    width: 90%;
  }
  #contents .campaign .att_item_inner h3 {
    font-size: 13px;
    line-height: 20px;
  }
  #contents .campaign .att_item + .att_item {
    margin-top: 15px;
  }
  #contents .campaign .att_item_ttl {
    font-size: 15px;
    padding-left: 20px;
    margin-bottom: 5px;
  }
  #contents .campaign .att_item_ttl::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #contents .campaign .google {
    vertical-align: middle;
    height: 12px;
  }
  .pontoku-link {
    margin: 20px auto 10px;
  }
  .pontoku-link a {
    font-size: 13px;
  }
  .what-area {
    padding: 7px 20px 10px;
  }
  .what-area ul {
    width: 100%;
    margin: 0px auto 0;
  }
  .what-area ul li {
    width: 49%;
  }
  .claus-pre {
    width: 93.3%;
    margin: 0 auto;
    padding: 12px;
  }
  .claus-pre .pre_title h2 {
    font-size: 2.5866666667vw;
    top: 8.8vw;
  }
  .claus-pre .pre_txt {
    width: 100%;
    padding: 0 0 10px;
  }
  .claus-pre .pre_btn {
    width: 75%;
    margin: 0 auto 12px;
  }
  .claus-pre .pre_btn a {
    display: block;
  }
  .claus-pre .pre_btn a img {
    width: 100%;
  }
  .claus-pre .present-list {
    margin: 0 auto 8px;
  }
  .claus-pre .present-list li {
    border-radius: 5px;
    padding: 5px 10px 0;
    width: 48.5%;
    margin-bottom: 10px;
  }
  .claus-pre .present-list li .textarea {
    padding: 0;
  }
  .claus-pre .present-list li .textarea h2 {
    font-size: 12px;
  }
  .claus-pre .present-list li .textarea h2 span {
    font-size: 9px;
  }
  .claus-pre .present-list li p {
    font-size: 10px;
    padding: 5px 5px 70px;
  }
  .claus-pre .present-list li a {
    bottom: 8px;
  }
  .claus-pre .scroll-container {
    margin-top: 5px;
  }
  .claus-pre .scroll-container.second .pc {
    display: none;
  }
  .claus-pre .scroll-container.second .spp {
    display: block;
  }
  .claus-pre .popup-content {
    top: -80px;
    font-size: 10px;
  }
  .chance {
    margin: 20px 0;
  }
  #contents .campaign-title {
    padding: 12px 0;
  }
  .att_title {
    font-size: 16px;
    margin: 15px 0 0;
  }
  .att_title span {
    font-size: 12px;
    display: inline-block;
    line-height: 0;
  }
  .att_item_inner p span {
    font-size: 9px;
  }
  .att_item_inner p span.sp {
    display: inline;
    color: #000;
    font-size: 11px;
  }
  .att_item_inner p span.pc {
    display: none;
  }
  .att_item_inner p .spindent {
    padding-left: 1em;
    text-indent: -1em;
    display: inline-block;
  }
  .att_item_inner p .indent {
    padding-left: 1em;
    text-indent: -0.8em !important;
    font-size: 11px !important;
  }
  .top_ttl img {
    width: 100%;
  }
  .modal .modal-content {
    padding: 0;
    width: 100%;
    max-width: 90%;
  }
  .title::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 30px;
    height: 30px;
  }
  .follow-banner-wrapper {
    bottom: 190px;
    right: 10px;
    width: 200px; /* SP向けに小さめ */
    height: 130px; /* 高さも少し縮小 */
  }
  .follow-banner img {
    width: 100%;
    height: 100%;
  }
  .follow-banner-label {
    top: -26px;
    font-size: 12px;
  }
  .follow-banner-close {
    top: -26px;
    right: 0px;
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
  @supports (bottom: env(safe-area-inset-bottom)) {
    .follow-banner-wrapper {
      bottom: calc(env(safe-area-inset-bottom) + 10px);
    }
  }
  @supports not (bottom: env(safe-area-inset-bottom)) {
    .follow-banner-wrapper {
      bottom: 10px;
    }
  }
}