@charset "UTF-8";
/* カラー指定　*/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap");
@font-face {
  font-family: "NotoSansJP-Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff"), url("../font/NotoSansJP-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP-SemiBold";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/NotoSansJP-SemiBold.woff2") format("woff2"), url("../font/NotoSansJP-SemiBold.woff") format("woff"), url("../font/NotoSansJP-SemiBold.ttf") format("truetype");
}
body {
  font-family: "NotoSansJP-Regular", sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  font-feature-settings: "palt";
  font-size: 4vw;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
  position: relative;
  animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

main {
  overflow: hidden;
}

a {
  color: #00A695;
}

/* =====================
  共通
===================== */
/* 改行解除用*/
@media screen and (max-width: 960px) {
  .u-sp-none {
    display: none;
  }
}
.content {
  padding: 8vw 5vw;
}

.sp-content {
  padding: 5vw;
}

.mb1em {
  margin-bottom: 1em;
}

.mb05em {
  margin-bottom: 0.5em;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.bold {
  font-family: "NotoSansJP-SemiBold", sans-serif;
  font-weight: 600;
}

.eng, .point .point-list > li::before {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.centering {
  display: grid;
  place-items: center;
  place-content: center;
}

.sup {
  vertical-align: super;
}

/* 見出し */
.title {
  font-size: 6vw;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 2em;
  position: relative;
}
.title span {
  font-size: 4vw;
  color: #00A695;
  text-transform: uppercase;
  display: block;
}
.title ::after {
  content: "";
  background: url(../images/deco-title.svg) no-repeat;
  background-size: 100% auto, cover;
  width: 22px;
  height: 26px;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
}

/* リンクボタン */
.btn {
  font-size: 3.5vw;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  background: #004A99;
  border-radius: 80px;
  padding: 0.8em 2em;
  display: inline-block;
  filter: drop-shadow(8px 8px 0px rgba(0, 0, 0, 0.1));
}

ol {
  list-style-type: none;
  padding-left: 0;
}

/* キャプション */
ol.caption {
  counter-reset: caption-item;
  padding-left: 1.5em;
}
ol.caption li {
  font-size: clamp(0.7rem, 0.591rem + 0.55vw, 1rem);
  color: #666;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 0.5em;
  position: relative;
}
ol.caption li::before {
  counter-increment: caption-item;
  content: "※" counter(caption-item);
  color: #666;
  position: absolute;
  left: -2em;
  top: 0;
}

ul.caption {
  padding-left: 1em;
}
ul.caption li {
  font-size: clamp(0.7rem, 0.591rem + 0.55vw, 1rem);
  color: #666;
  text-align: left;
  line-height: 1.5;
  text-indent: -1em;
  margin-bottom: 0.5em;
  position: relative;
}
ul.caption li::before {
  content: "※";
  color: #666;
  position: absolute;
  left: -1em;
  top: 0;
}

p.caption {
  font-size: clamp(0.563rem, 0.449rem + 0.61vw, 0.813rem);
  color: #666;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 1em;
  padding-left: 1em;
  position: relative;
}
p.caption::before {
  content: "※";
  color: #666;
  position: absolute;
  left: 0;
  top: 0;
}

/* dlリスト */
dl {
  width: fit-content;
  border: 1px solid #004A99;
  display: inline-flex;
  margin: 0.25em auto;
}

dl dt {
  font-size: 3.5vw;
  line-height: 1.3;
  color: #fff;
  background: #004A99;
  padding: 0.2em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

dl dd {
  font-size: 3.5vw;
  text-align: left;
  line-height: 1.3;
  white-space: nowrap;
  color: #004A99;
  padding: 0.2em 0.5em;
}

/* =====================
  header
===================== */
.header {
  background: #fff;
  height: 40px;
  padding: 10px;
  align-items: center;
}
.header .meitetsu {
  margin-top: 5px;
}

/* =====================
  メインビジュアル
===================== */
.mv ol {
  padding: 0 1em 5vw 2em;
}

/* =====================
  キャンペーン概要
===================== */
.campaign {
  position: relative;
}
.campaign h3 {
  line-height: 1.4;
}
.campaign h3 img {
  margin-top: 0.5em;
}
.campaign-list {
  text-align: center;
  gap: 0.5em;
  flex-direction: column;
  align-items: center;
}
.campaign-list > li {
  background: #E6ECF0;
  padding: 1em;
}
.campaign-list li > ul {
  margin-bottom: 1em;
}
.campaign-list li > ul li {
  font-size: 3vw;
  color: #555;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}
.campaign-list li > ul li a {
  color: #00A695;
}
.campaign-list li > ul li::before {
  content: "⚪︎";
}
.campaign-list .campaign-add {
  color: #fff;
  white-space: nowrap;
  aspect-ratio: 1/1;
  background: #00A695;
  border-radius: 100px;
}
.campaign .limit {
  font-size: 4vw;
  color: #666;
  text-align: right;
  padding: 0.5em 1em 0;
}
.campaign .dlList {
  margin: 1em 0;
}
.campaign dl {
  width: 100%;
}
.campaign dl dd {
  background: #fff;
  flex: 1;
}

/* =====================
  6つのメリット
===================== */
.merit {
  background: #DFEFED;
  padding-bottom: 15vw;
}
.merit ol.merit-list {
  background: #00A695;
  counter-reset: merit-item;
  border: 3px solid #00A695;
  margin-bottom: 1em;
  gap: 1px;
}
.merit .merit-list li {
  background: #fff;
  width: calc((100% - 1px) / 2);
  padding: 1.2em 1em 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  position: relative;
}
.merit .merit-list li::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #00A695 transparent transparent transparent;
  border-width: 45px 45px 0px 0px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.merit .merit-list li::after {
  counter-increment: merit-item;
  content: counter(merit-item);
  font-size: 1rem;
  font-family: "Roboto Mono", monospace;
  color: #fff;
  position: absolute;
  left: 0.5em;
  top: 0;
  z-index: 2;
}
.merit h3 {
  font-size: 4vw;
  line-height: 1.4;
  display: inline;
}
.merit h3 img {
  display: block;
  margin-top: 0.5em;
}
.merit h3 span.sup {
  vertical-align: super;
  display: inline;
  font-size: 3vw;
}
.merit p {
  font-size: 3vw;
  line-height: 1.4;
  margin-top: 0.5em;
}
.merit p span {
  font-family: "NotoSansJP-Regular", sans-serif;
  font-weight: 400;
}
.merit ol.caption {
  margin-bottom: 2em;
}

/* =====================
  ポイント使い方
===================== */
.point {
  background: #1F77BE;
  background: radial-gradient(at bottom center, rgb(31, 119, 190) -10%, rgb(20, 104, 171) 48%, rgb(0, 76, 134) 90%);
  position: relative;
  padding-bottom: 5vw;
  overflow: hidden;
  z-index: 0;
}
.point::after {
  content: "";
  background: url(../images/mark.svg) no-repeat right bottom;
  width: 80vw;
  height: 80vw;
  position: absolute;
  bottom: 0;
  right: -20%;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.3));
  z-index: -1;
  pointer-events: none;
}
.point .title {
  color: #fff;
}
.point ol.point-list {
  counter-reset: point-item;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
.point .point-list > li {
  background: #fff;
  width: 100%;
  padding: 10vw 5vw 5vw;
  position: relative;
  margin-bottom: 5vw;
  overflow: hidden;
}
.point .point-list > li::before {
  counter-increment: point-item;
  content: counter(point-item);
  white-space: pre;
  color: #fff;
  font-size: 5vw;
  line-height: 1;
  width: 11vw;
  height: 8vw;
  background: #00A695;
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 3vw;
  z-index: 1;
}
.point h3 {
  font-size: 6vw;
  line-height: 1.3;
  color: #00A695;
}
.point h3 strong {
  font-size: 7vw;
}
.point h3 span {
  font-family: "GenJyuuGothic-Regular", sans-serif;
  font-weight: 400;
}
.point p {
  color: #333;
}
.point-link {
  font-size: 3.5vw;
  color: #004A99;
  width: 100%;
  border: 1px solid #004A99;
  border-radius: 50px;
  padding: 0.3em 0;
  display: block;
}
.point ul.caption li::before {
  position: static;
}
.point .point-list > li:not(:first-child) ul.caption li {
  text-align: center;
}
.point .btn {
  background: #00A695;
}

/* =====================
  この「まち」にぴったりのクレカ。
===================== */
.catchcopy {
  background: url(../images/deco-bg.svg) no-repeat 0 23vw;
  background-size: 100% auto, cover;
}
.catchcopy h2 {
  font-size: 4.5vw;
  letter-spacing: 0.2em;
}
.catchcopy-image {
  margin: 10vw auto;
  gap: 5%;
  justify-content: center;
}
.catchcopy picture {
  width: 40%;
  position: relative;
  overflow: visible;
}
.catchcopy picture::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(10px, 10px);
  mix-blend-mode: multiply;
}

/* =====================
  注意事項
===================== */
.attention {
  width: 100%;
  border: 4px solid #004A99;
  overflow: hidden;
  /*開いたときに表示される部分*/
  /*閉じた状態の矢印描画*/
  /*開いた状態の矢印描画*/
}
.attention input {
  display: none;
  /*チェックボックスを隠す*/
}
.attention label {
  font-size: 5vw;
  color: #fff;
  line-height: 1;
  background: #004A99;
  padding: 0.5em 1em;
  display: block;
  position: relative;
  cursor: pointer;
}
.attention #attention-content {
  text-align: left;
  background: #fff;
  padding: 0 5vw;
  margin: 0;
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s;
}
.attention ul {
  margin-bottom: 1em;
}
.attention li {
  font-size: 3vw;
  color: #555;
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
  margin-bottom: 1em;
}
.attention li::before {
  content: "⚪︎";
}
.attention ul.caption {
  padding-left: 1em;
}
.attention ul.caption li {
  margin-bottom: 0;
  text-indent: 0;
  padding-left: 0.5em;
}
.attention ul.caption li::before {
  content: "※";
}
.attention h2 label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #fff 3px solid;
  border-right: #fff 3px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: calc(50% - 4em);
  top: 0;
  bottom: 7%;
  margin: auto;
  transition: all 0.5s;
}
.attention input[type=checkbox]:checked + h2 label:after {
  transform: rotate(-45deg);
  top: 7%;
  bottom: 0;
}
.attention-benefit {
  font-size: 3.5vw;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
.attention-benefit span {
  color: #004A99;
  margin-right: 0.5em;
}

#attention-title:checked ~ #attention-content {
  padding: 3vw 4vw;
  background: #fff;
  height: auto;
  opacity: 1;
}

small {
  font-size: 3vw;
  color: #666;
  letter-spacing: 0.08em;
  padding: 1em 0;
  display: block;
}

@media screen and (min-width: 500px) {
  .attention label {
    font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  }
  .attention h3 {
    font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  }
  .attention li {
    font-size: clamp(0.85rem, 0.795rem + 0.27vw, 1rem);
  }
}
@media screen and (min-width: 500px) {
  small {
    font-size: clamp(0.5rem, 0.391rem + 0.55vw, 0.8rem);
  }
}
/* =====================
  アニメーション設定
===================== */
/* 下からフワっと */
[data-aos=realize] {
  transform: translateY(20px);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=realize].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* 左からフワっと */
[data-aos=left-fade] {
  transform: translateX(50px);
  transition-property: transform, opacity;
}
[data-aos=left-fade].aos-animate {
  transform: translateY(0);
  transition-duration: 1s !important;
}

/* 右からフワっと */
[data-aos=right-fade] {
  transform: translateX(-50px);
  transition-property: transform, opacity;
}
[data-aos=right-fade].aos-animate {
  transform: translateY(0);
  transition-duration: 1s !important;
}

/* その場でフワっと */
[data-aos=fade] {
  opacity: 0;
  transition-property: opacity;
}
[data-aos=fade].aos-animate {
  opacity: 1;
}

/* =====================
  フローティングボタン
===================== */
.btn-entry a {
  font-size: 3vw;
  line-height: 1.3;
  color: #fff;
  background: #004A99;
  border-radius: 100px;
  border: 3px solid #00A695;
  width: 100px;
  aspect-ratio: 1/1;
  position: fixed;
  right: 3vw;
  bottom: 3vw;
  overflow: hidden;
  z-index: 100;
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.1));
}
.btn-entry a::after {
  content: "";
  background: url("../images/meipy.svg");
  background-size: 100% auto, cover;
  width: 32px;
  height: 42px;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
.btn-entry a:hover {
  cursor: pointer;
}
.btn-entry a span {
  font-size: 2vw;
  color: #FFF100;
  padding-top: 2vw;
  display: block;
}

.btn-entry {
  opacity: 0;
  transition: opacity 350ms ease;
}

.is-hide {
  pointer-events: none;
}