@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&family=Roboto:wght@400;500;600;700&display=swap');
/* breakpoints */
/* color */
/* foundation */

@font-face {
  font-family: avantgarde;
  src: url(/fonts/ITCAvantGardeStd-Demi.otf);
}

@font-face {
  font-family: avantgarde_md;
  src: url(/fonts/ITCAvantGardeStd-Md.otf);
}

html {
  font-family: avantgarde, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    sans-serif;
  font-size: 62.5%;
  letter-spacing: 0.06em;
  font-weight: 600;
}

@media screen and (max-width: 992px) {
  html {
    font-size: 55%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 45%;
  }
}

@media screen and (max-width: 320px) {
  html{
    font-size: 40%;
  }
}


:root {
  --title-brown: #d0a235;
  --text-black: #404040;
  --brown: #aa8b22;
  --dark-brown: #80681a;
  --footer-brown: #654d12;
  --grad-right-brown: #f0b002;
  --grad-gark-brown: #cc7c1f;
  --navy: #00478b;
  --blue: #58abf2;
  --orange: #d77b2c;
  --white: #ffffff;
  --yellow: #fff23f;
  --bg-yellow: #fffde0;
  --red: #eb1f0e;
  --strong-red: #d7392c;
  --gray: #707070;
  --pink: #e7355c;
}

.header__inner,
.footer__inner,
.contents {
  max-width: 1166px;
  width: 94%;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 0;
}

p,
a {
  font-size: 1.6rem;
  line-height: 1.5;
}

a:hover {
  opacity: 0.5;
}

.flex {
  display: flex;
}

@media screen and (max-width: 576px) {
  p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 687px) {
  .contents {
    padding: 40px 0;
  }
}

/*@media screen and (max-width: 992px) {*/
/*    . {*/
/*        max-width: 768px;*/
/*    }*/
/*}*/
/*@media screen and (max-width: 768px) {*/
/*    . {*/
/*        max-width: 375px;*/
/*    }*/
/*}*/

/*-----------------------
共通素材
------------------------*/
.t-blue {
  color: var(--blue);
}

.t-brown {
  color: var(--brown);
}

.t-orange {
  color: var(--orange);
}

.t-dark-brown {
  color: var(--dark-brown);
}

.t-red {
  color: var(--red);
}

.t-navy {
  color: var(--navy);
}

.t-white {
  color: var(--white);
}

.t-yellow {
  color: var(--yellow);
}

.t-strong-red {
  color: var(--strong-red);
}

.t-gray {
  color: var(--gray);
}

.t-pink {
  color: var(--pink);
}

.t-black {
  color: var(--text-black);
}

.t-small {
  font-size: 3rem;
}
.t-small--ja {
  font-size: 2.6rem;
}
.t-big {
  font-size: 4rem;
}

.max-width_900 {
  max-width: 900px;
  width: 90%;
  margin: auto;
}

/*白背景box*/
.white_box {
  background-color: #fff;
  width: 100%;
  padding: 2rem 1rem;
}

/*セクション背景*/
.section__bg {
  background: var(--bg-yellow);
}

/*サブタイトル*/
.c-sub_title {
  display: block;
  width: 100%;
  font-size: 3rem;
  padding: 0.5rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: normal;
  letter-spacing: 0.07em;
}

/*フローチャートの三角*/
.triangle {
  width: 3rem;
  height: 1.5rem;
  border-style: solid;
  border-width: 20px 30px 0 30px;
  border-color: var(--brown) transparent transparent transparent;
}

.c-sub_title.bg_pink {
  background: var(--pink);
}

.c-sub_title.bg_blue {
  background: var(--navy);
}

.heading {
  position: relative;
  font-size: 3rem;
}

#user .heading {
  color: var(--pink);
}

#company .heading {
  color: var(--navy);
}

#user .heading::before {
  bottom: -10px; /* 線の位置 */
  background-color: var(--pink); /* 線の色 */
  content: "";
  height: 2px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 50px; /* 線の長さ */
}

#company .heading::before {
  bottom: -10px; /* 線の位置 */
  background-color: var(--navy); /* 線の色 */
  content: "";
  height: 2px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 50px; /* 線の長さ */
}

/* レイアウトのためのcss */
h2 {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

/*並び1のサイズ*/
.box_1 {
  width: 100%;
}

/*並び2のサイズ*/
.box_2 {
  width: 48%;
}

/*並び3のサイズ*/
.box_3 {
  width: 32%;
  margin: 1rem auto;
}

/*テキスト70%*/
.text_70 {
  width: 70%;
}

/*画像30%*/
.img_30 {
  width: 30%;
}

/*ドット*/
.dot {
  width: 95%;
  margin: auto;
  height: 3px;
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center;
}

.dot_brown {
  background-image: url("../img/dot_brown.svg");
}

.dot_pink {
  background-image: url("../img/dot_pink.svg");
}

.dot_pink--long {
  background-image: url("../img/dot_pink--long.svg");
}

.dot_blue {
  background-image: url("../img/dot_blue.svg");
}

/*ボタン*/
.arrow {
  position: relative;
  width: 40px;
  display: inline-block;
  margin-left: 10px;
}

.arrow:after {
  content: "";
  height: 2px;
  width: 40px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.arrow:before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  transform-origin: right bottom;
  width: 10px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
}

.c-btn_shadow .arrow {
  top: -6px;
}

.c-base_btn .c-btn_shadow
{
  padding: 1rem 2rem;
  width: fit-content;
  height: fit-content;
  line-height: normal;
  margin: auto;
  display: block;
  text-align: left;
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
}

.c-base_btn .c-btn_shadow.c-base_btn--pink {
  box-shadow: 0 6px 0 0 rgb(206, 50, 84);
  background: var(--pink);
}

.c-base_btn .c-btn_shadow.c-base_btn--yellow {
  box-shadow: 0 6px 0 0 rgb(198, 186, 28);
  background: var(--yellow);
  color: var(--navy);
}

.c-base_btn .c-btn_shadow.c-base_btn--blue {
  box-shadow: 0 6px 0 0 #0d4b93;
  background: #145eb5;
}

.c-base_btn .c-btn_shadow.c-base_btn--yellow .arrow:before,
.c-base_btn .c-btn_shadow.c-base_btn--yellow .arrow:after {
  background: var(--navy);
}

/*ボーダーボタン*/
.c-border_btn a {
  padding: 0.5rem 2rem;
  display: block;
  line-height: normal;
}

.c-border_btn,
.c-border_btn .arrow {
  display: inline-block;
  text-decoration: none;
}
.c-border_btn.p-company_btn {
  color: #00B7EF;
  border: #00B7EF 2px solid;
}

.c-border_btn.p-company_btn .arrow:before,
.c-border_btn.p-company_btn .arrow:after {
  background-color: #00B7EF;
}

.c-border_btn.p-user_btn {
  border: var(--pink) 2px solid;
  color: var(--pink);
}

.c-border_btn.c-border_btn.p-user_btn .arrow:before,
.c-border_btn.c-border_btn.p-user_btn .arrow:after {
  border: var(--pink) 1px solid;
}

.c-border_btn .arrow,
.p-purchase_btn .arrow
{
  top: -4px;
}

/*ボタン非活性*/
.c-btn--inactive {
  background: #707070;
  box-shadow: 0 6px 0 0 #333;
  pointer-events: none;
}

/*青字テキストリンク*/
.c-text-link {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  margin: 0 0.5rem;
  word-break: break-word;
}

/*pdfリンク*/
.c-pdf-icon:after {
  content: "\f1c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5rem;
  font-size: 2.5rem;
}

/*注意書き*/
.c-note {
  font-size: 1.4rem;
  color: #404040;
  font-weight: 600;
  text-align: left;
}

@media screen and (max-width: 687px) {
  .c-sub_title {
    font-size: 3rem;
  }

  .box_2 {
    max-width: 400px;
    width: 100%;
  }

  /*並び3のサイズ*/
  .box_3 {
    max-width: 400px;
    width: 100%;
  }

  .u-flex {
    display: block;
  }

  .t-small {
    font-size: 3.4rem;
  }
  .t-small--ja {
    font-size: 2.2rem;
  }
  .t-big {
    font-size: 3.6rem;
  }
}

.cpm .flow_no {
  color: var(--navy);
  font-size: 5rem;
}

.mpm .flow_no {
  color: var(--pink);
  font-size: 5rem;
}

.flow_text {
  font-size: 2rem;
}

/*-----------------------
kv
------------------------*/
.p-kv {
  background: #E60020;
}

.p-kv__inner {
  max-width: 1366px;
  margin: 0 auto;
}

.p-kv img {
  width: 100%;
  height: auto;
  display: block;
}

/*-----------------------
期間・バナーセクション
------------------------*/
.p-period {
  background-color: #E60020;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 70px 100px;
}

.p-period__card {
  background: #fff;
  border: 4px solid #969696;
  border-radius: 10px;
  width: 100%;
  max-width: 1164px;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-period__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.p-period__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #231815;
  text-align: center;
}

.p-period__divider {
  width: 100px;
  height: 2px;
  background-color: #231815;
}

.p-period__date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  color: #EE3823;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.p-period__year {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 1.17;
  letter-spacing: 0.006em;
}

.p-period__day {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.004em;
}

.p-period__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.007em;
}

.p-period__paren {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.17;
  letter-spacing: 0.007em;
}

.p-period__banner {
  width: 100%;
  max-width: 1164px;
}

.p-period__banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 687px) {
  .p-period {
    padding: 40px 20px;
    gap: 20px;
  }

  .p-period__card {
    padding: 25px 15px;
  }

  .p-period__year {
    font-size: 20px;
  }

  .p-period__day {
    font-size: 32px;
  }

  .p-period__text {
    font-size: 14px;
  }

  .p-period__paren {
    font-size: 14px;
  }

  .p-period__label {
    font-size: 14px;
  }
}

/*-----------------------
申し込み期間（旧・company用）
------------------------*/
.p-top {
  background-image: url("/img/p-top-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

.p-top .white_box {
  width: 100%;
  border: 2px var(--pink) solid;
}

.p-top p {
  color: var(--pink);
  font-size: 3rem;
  align-items: center;
  padding: 0.5rem;
}

.p-top p.flex {
  display: inline-flex;
}

.p-period-box__hl {
  display: block;
  background-color: var(--pink);
  color: #fff;
  padding: 0 10px;
  font-size: 2.6rem;
  line-height: normal;
  margin-right: 1.5rem;
  word-break: keep-all;
}

.p-period-box__date {
  line-height: normal;
  font-size: 3rem;
}

.p-period-box__date span {
  vertical-align: -1px;
}

.p-period-box__date .vertical-fix {
  vertical-align: 3px;
}

.p-period-box--usage {
  display: flex;
  align-items: baseline;
  justify-content: center;
  letter-spacing: 0.02em;
}

.p-period-box--usage .p-period-box__date{
  letter-spacing: -0.1;
}

.p-top p.t-red {
  color: var(--red);
}

@media screen and (max-width: 687px) {
  .p-top .white_box {
    padding: 1rem;
  }

  .block_500 {
    display: block;
  }

  .p-period-box--usage {
    display: block;
  }

  .p-period-box--usage span {
    letter-spacing: 0;
  }

  .p-period-box__hl {
    margin-right: 0;
    margin-bottom: 2rem;
    font-size: 3rem;
  }

  .p-top {
    padding-bottom: 20px;
  }

  .p-top p {
    font-size: 3rem;
  }
}

@media screen and (max-width: 687px) {
  .p-top .flex {
    display: block;
  }

    .p-period__date {
        display: block;
    }
}

/*-----------------------
お申し込みの流れ
------------------------*/
.p-about {
  background-color: var(--bg-yellow);
  padding-bottom: 50px;
}

.p-about .c-sub_title,
.p-howto .c-sub_title {
  background-color: var(--pink);
}

.p-about .heading,
.p-about .p-period-box__date {
  color: var(--pink);
}

.p-about .white_box {
  border: 2px var(--brown) solid;
  color: var(--brown);
}

.p-about .white_box .flow_no {
  margin: 1rem auto 0;
  font-size: 4rem;
}

.p-about .white_box .flow_text {
  margin: 2rem auto 0;
  font-weight: 600;
  /*height: 5rem;*/
}

.p-about .white_box .flow_img {
  max-width: 300px;
  width: 60%;
  margin: 2rem auto 0;
}

.p-about .white_box .flow_img2 {
  max-width: 280px;
  width: 55%;
  margin: auto;
}

.p-about .white_box .flow_img img {
  width: 100%;
}

.p-about .c-base_btn .c-btn_shadow.c-base_btn--pink {
  box-shadow: 0 6px 0 0 rgb(206, 50, 84);
  background: var(--pink);
  background-image: url("/img/purchase__btn__cover.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  color: var(--yellow);
  max-width: 550px;
  width: 70%;
  font-size: 4rem;
  border-radius: 5px;
  padding: 2rem;
}
.p-about .c-base_btn .c-btn_shadow.c-base_btn--pink .arrow:after,
.p-about .c-base_btn .c-btn_shadow.c-base_btn--pink .arrow:before{
  background-color: var(--yellow);
}



@media screen and (max-width: 687px) {
  .p-about {
    padding-bottom: 20px;
  }
  .p-about .flex {
    display: block;
  }

  .p-about .white_box .flow_img {
    max-width: 200px;
    width: 90%;
  }

  .p-about .white_box .flow_img2 {
    max-width: 180px;
    width: 80%;
  }

  .flow_text {
    font-size: 2.4rem;
  }
  .p-about .c-base_btn .c-btn_shadow.c-base_btn--pink {
    background-image: url("/img/purchase__btn__cover.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    color: var(--yellow);
    max-width: 330px;
    width: 100%;
    font-size: 3rem;
  }
}

/*-----------------------
利用方法
------------------------*/
.p-howto {
  padding-bottom: 60px;
}

.p-howto .contents .p-flow__top {
  padding: 4rem;
  text-align: left;
  margin-top: 50px;
  background: var(--navy);
  color: #fff;
  font-size: 3rem;
}

.p-howto .p-period-box__date {
  color: var(--pink);
}

.p-howto .white_box {
  padding: 0;
  height: fit-content;
}

.p-howto .box_2 {
  margin: 1rem 0;
}

.p-howto .box_2.cpm {
  padding-top: unset;
}

.p-howto .flex {
  justify-content: space-between;
}

.p-howto .white_box.border_pink {
  border: 2px var(--pink) solid;
}

.p-howto .white_box.border_navy {
  border: 2px var(--navy) solid;
}

.p-howto .white_box.border_none {
  width: 100%;
}

.howto-ticket {
  bottom: 0;
  right: 2rem;
  width: 24rem;
}

.p-howto .lead_navy {
  display: block;
  width: 100%;
  font-size: 2.5rem;
  padding: 2.5rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: var(--navy);
  line-height: 0;
}

.p-howto .lead_pink {
  display: block;
  width: 100%;
  font-size: 2.5rem;
  padding: 2.5rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: var(--pink);
  line-height: 0;
}

.p-howto .cpm .triangle {
  border-color: var(--navy) transparent transparent transparent;
  margin: 0 auto 1rem;
}

.p-howto .mpm .triangle {
  border-color: var(--pink) transparent transparent transparent;
  margin: 0 auto 1rem;
}

.p-howto .flow_no {
  margin-top: 1rem;
  margin-left: 2rem;
  line-height: 1;
}

.p-howto .flow_text {
  margin-left: 2rem;
  color: var(--text-black);
}

.p-howto .cpm .flow_img,
.p-howto .mpm .flow_img {
  margin-top: 4rem;
  margin-right: 2rem;
}

.p-howto .recommendation_title {
  padding-top: 4rem;
  font-size: 2.4rem;
}

.p-howto .recommendation_title p {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  margin-bottom: 36px;
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark-brown);
}

.p-howto .recommendation_title p:before {
  content: "・・・・";
  position: absolute;
  top: 0.5rem;
  left: -3.8rem;
  font-size: 2rem;
  letter-spacing: -1rem;
  transform: rotate(55deg);
  color: var(--brown);
}

.p-howto .recommendation_title p:after {
  content: "・・・・";
  position: absolute;
  top: 1.3rem;
  right: -2.6rem;
  font-size: 2rem;
  letter-spacing: -1rem;
  transform: rotate(-55deg);
  color: var(--brown);
}

.p-howto .recommendation_box p {
  padding: 2rem;
  color: var(--dark-brown);
  font-weight: 600;
}

.p-howto .box_3:last-of-type p {
  padding: 2rem 0 0 0;
}

.p-howto .recommendation_box img {
  height: 120px;
  margin: auto;
}

.p-howto__flow {
  align-items: self-end;
}

.p-howto .p-howto__flow:last-of-type {
  align-items: center;
}

.p-howto__flow:nth-of-type(1) {
  align-items: center;
}

.p-howto__flow__text {
  padding: 20px 0;
  color: var(--text-black);
  width: 65%;
}

.p-howto__flow__img {
  width: 40%;
}


.mpm .c-base_btn .c-btn_shadow.c-base_btn--pink {
  box-shadow: 0 6px 0 0 rgb(206, 50, 84);
  background: var(--pink);
  width:100%;
  position: relative;
}

.cpm .c-base_btn .c-btn_shadow.c-base_btn--navy {
  box-shadow: 0 6px 0 0 rgb(0, 50, 98);
  background: var(--navy);
  color: var(--white);
  width:100%;
  position: relative;
}

.mpm .c-base_btn .c-btn_shadow.c-base_btn--pink .arrow,
.cpm .c-base_btn .c-btn_shadow.c-base_btn--navy .arrow{
  position: absolute;
  right:25px;
  top:60%;
}



@media screen and (max-width: 687px) {
  .p-howto {
    padding-bottom: 20px;
  }

  .p-howto .contents .c-sub_title {
    font-size: 2.5rem;
  }

  .howto-ticket {
    width: 20rem;
  }

  .p-howto .flex {
    display: block;
    margin: auto;
    padding-bottom: 20px;
  }

  .p-howto .recommendation_title p {
    font-size: 3rem;
    line-height: 1.2;
  }

  .p-howto .recommendation_title p:before {
    content: "・・・・・・";
    position: absolute;
    top: 2rem;
    left: -4rem;
    font-size: 2.4rem;
    letter-spacing: -1rem;
    transform: rotate(55deg);
    color: var(--brown);
  }

  .p-howto .recommendation_title p:after {
    content: "・・・・・・";
    position: absolute;
    top: 2.5rem;
    right: -4rem;
    font-size: 2.4rem;
    letter-spacing: -1rem;
    transform: rotate(-55deg);
    color: var(--brown);
  }

  .p-howto .recommendation_box p {
    font-size: 2.4rem;
  }

  .triangle {
    display: none;
  }

  .p-howto .box_2 {
    margin: 20px 0;
    width: 100%;
    max-width: unset;
  }

  .p-howto .contents .c-sub_title {
    margin-top: 20px;
  }

  .p-howto .recommendation_title p {
    margin-bottom: 0;
  }
  .howto .p-howto .cpm .flow_img,
  .howto .p-howto .mpm .flow_img {
    width: 60%;
    margin: auto;
  }

  .mpm .c-base_btn .c-btn_shadow.c-base_btn--pink,
  .cpm .c-base_btn .c-btn_shadow.c-base_btn--navy{
    width:300px;
  }
}
/*-----------------------
使えるお店について
------------------------*/
.p-available {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 70px;
  background: #fff;
  max-width: 1366px;
  width: 94%;
  margin: 0 auto;
}

/* 見出し */
.p-available__heading {
  display: flex;
  align-items: center;
  gap: 45px;
  background: #FFF1EE;
  width: 100%;
  max-width: 1166px;
  height: 70px;
  margin: 70px auto 0;
  overflow: hidden;
}

.p-available__heading-bar {
  width: 16px;
  height: 126px;
  background: #EE3823;
  flex-shrink: 0;
}

.p-available__heading-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.33;
  letter-spacing: 0.07em;
  color: #000;
    margin-bottom: 0;
}

/* 本文 */
.p-available__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1166px;
  width: 100%;
  padding: 70px 69px 0;
  box-sizing: border-box;
}

.p-available__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 29px;
  line-height: 1.5;
  color: #231815;
  text-align: center;
}

.p-available__lead-em {
  color: #EE3823;
  text-decoration: underline;
}

.p-available__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.p-available__detail-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #231815;
}

.p-available__example-box {
  max-width: 949px;
  width: 100%;
  border: 2px solid #231815;
  border-radius: 5px;
  background: #fff;
  box-sizing: border-box;
  padding: 25px 23px;
}

.p-available__example-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #231815;
}

@media screen and (max-width: 768px) {
  .p-available {
    padding-bottom: 40px;
  }

  .p-available__heading {
    height: 70px;
    gap: 20px;
    margin: 30px auto 0;
  }

  .p-available__heading-bar {
    width: 10px;
    height: 90px;
  }

  .p-available__heading-text {
    font-size: 22px;
  }

  .p-available__body {
    padding: 40px 16px 0;
    gap: 24px;
  }

  .p-available__lead {
    font-size: 18px;
  }

  .p-available__detail-text {
    font-size: 16px;
  }

  .p-available__example-box {
    padding: 16px;
  }

  .p-available__example-text {
    font-size: 16px;
  }
}

/*-----------------------
注意事項
------------------------*/
.p-note .note_box {
  background: #2222221a;
  text-align: left;
  padding: 25px 40px 50px;
  margin-bottom: 60px;
  max-width: 926px;
}

.p-note .note_box .note_box_title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.p-note .note_box .note_box_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
  list-style-type: '・';
  padding-left: 1.5em;
  margin: 0;
}
.p-note a {
  text-decoration: underline solid #58abf2;
  color: #58abf2;
}

@media screen and (max-width: 687px) {
  .p-note .note_box {
    margin-bottom: 0;
    padding: 20px 16px 40px;
  }

  .p-note .note_box .note_box_title {
    font-size: 18px;
  }

  .p-note .note_box .note_box_text {
    font-size: 11px;
    line-height: 1.6;
  }
}
/*-----------------------
事業者の方はこちら
------------------------*/
.p-company {
  background: #EEFAFF;
  padding: 0 0 60px;
  text-align: center;
}

.p-company .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-company__heading {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.p-company__heading-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 0.023em;
  color: #00B7EF;
}

.p-company__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #00B7EF;
}

.p-company__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.021em;
  color: #00B7EF;
}

.p-company__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0.021em;
  color: #00B7EF;
}

.p-company__date-num {
  font-size: 3.43rem;
  letter-spacing: 0.017em;
}

.p-company__date-num--lg {
  font-size: 3.5rem;
}

.p-company__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 285px;
  padding: 14px 24px;
  box-sizing: border-box;
  background-color: #00B7EF;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  line-height: 1.51;
  border-radius: 50px;
  box-shadow: 0px 6px 0px 0px rgba(70, 102, 139, 1);
  text-decoration: none;
  transition: opacity 0.2s;
}

.p-company__btn a:hover {
  opacity: 0.85;
}

.p-company__btn-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.c-border_btn a {
  font-size: 1.6rem;
}

.c-border_btn .c-btn_shadow {
  padding: 1rem 2rem;
  width: fit-content;
  height: fit-content;
  line-height: normal;
  margin: auto;
  display: block;
  text-align: left;
  background: var(--yellow);
  text-decoration: none;
  /*--影の複数指定--*/
  box-shadow: 0 6px 0 0 rgba(198, 186, 28, 0.5);
}

.c-border_btn .arrow:before,
.c-border_btn .arrow:after {
  background-color: var(--navy);
}

@media screen and (max-width: 687px) {
  .p-company {
    padding: 40px 15px;
  }

  .p-company__lead {
    font-size: 2.2rem;
  }

  .p-company__date {
    font-size: 2.2rem;
  }

  .p-company__date-num {
    font-size: 2.8rem;
  }

  .p-company__date-num--lg {
    font-size: 3rem;
  }
}
/*-----------------------
お知らせ（新デザイン）
------------------------*/
.c-news {
  padding: 20px 0;
}

.c-news__inner {
  max-width: 1164px;
  width: 94%;
  margin: 0 auto;
  padding: 50px 0;
}

.c-news__card {
  background: #fff;
  border: 1px solid #EE3823;
  border-radius: 20px;
  padding: 40px 40px 50px;
}

.c-news__title {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  color: #EE3823;
  text-align: center;
  margin-bottom: 10px;
}

.c-news__list {
  margin: 0;
  padding: 0;
}

.c-news__item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.c-news__date {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #404040;
  white-space: nowrap;
  min-width: 120px;
}

.c-news__text {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #404040;
  flex: 1;
  margin: 0;
  padding: 0 20px;
  min-width: 0;
}

.c-news__text a {
  color: inherit;
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
    font-size: 18px;
}

.c-news__text a:hover {
  text-decoration: underline;
}

.c-news__arrow {
  color: #EE3823;
  font-size: 24px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.c-news__btn-box {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.c-news__btn-more {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #EE3823;
  text-decoration: none;
  border: 2px solid #EE3823;
  border-radius: 40px;
  padding: 14px 24px;
}

.c-news__btn-more:hover {
  background: #EE3823;
  color: #fff;
}

.c-news__btn-more i {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .c-news__inner {
    padding: 40px 0;
  }

  .c-news__card {
    padding: 25px 20px 30px;
  }

  .c-news__title {
    font-size: 21px;
  }

  .c-news__item {
    flex-wrap: wrap;
    padding: 15px 0;
  }

  .c-news__date {
    font-size: 14px;
    width: 100%;
  }

  .c-news__text {
    font-size: 14px;
    padding: 5px 0 0;
    width: 100%;
    flex: none;
  }

  .c-news__arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .c-news__item {
    position: relative;
    padding-right: 30px;
  }

  .c-news__btn-more {
    font-size: 14px;
    padding: 6px 15px;
  }
}

/*-----------------------
お申し込みの流れ（新デザイン）
------------------------*/
.p-flow {
  background: #fff;
  max-width: 1366px;
  width: 94%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

/* 見出し */
.p-flow__heading {
  display: flex;
  align-items: center;
  gap: 45px;
  background: #FFF1EE;
  width: 100%;
  max-width: 1166px;
  height: 70px;
  margin: 60px auto 0;
  overflow: hidden;
}

.p-flow__heading-bar {
  width: 16px;
  height: 126px;
  background: #EE3823;
  flex-shrink: 0;
}

.p-flow__heading-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.33;
  letter-spacing: 0.07em;
  color: #000;
  margin: 0;
}

/* 申込期間ブロック */
.p-flow__period {
  width: 100%;
  max-width: 1166px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.p-flow__period-label,
.p-flow__method-header {
  width: 100%;
  max-width: 1166px;
}

.p-flow__period-label-text,
.p-flow__method-label-text {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

.p-flow__label-mark {
  color: #EE3823;
}

.p-flow__period-label-line,
.p-flow__method-label-line {
  width: 100%;
  height: 3px;
  background: #969696;
  margin-top: 4px;
}

.p-flow__period-date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  color: #EE3823;
}

/* 申込方法ヘッダー */
.p-flow__method-header {
  margin: 40px auto 0;
}

.p-flow__method-lead {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin: 16px 0 0;
  max-width: 1166px;
  width: 100%;
}

/* カード共通 */
.p-flow__card {
  border: 1px solid #969696;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
}

.p-flow__card--web {
  background: #FFFDEB;
  width: 100%;
  max-width: 1166px;
  margin: 24px auto 0;
}

.p-flow__card--half {
  background: #fff;
  flex: 1;
  min-width: 0;
}

.p-flow__cards-row {
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 1166px;
  margin: 30px auto 0;
}

/* カードキャッチ */
.p-flow__card-catch {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  color: #000;
  margin: 0 0 20px;
  text-align: center;
}

.p-flow__card-catch--small {
  font-size: 22px;
  text-align: center;
  min-height: 78px;
}

/* カードヘッダーバー */
.p-flow__card-header {
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin: 0 -30px;
}

.p-flow__card-header:first-child {
  margin-top: -30px;
  margin-bottom: 24px;
}

.p-flow__card-header--red {
  background: #EE3823;
}

.p-flow__card-header--gray {
  background: #F1F1F1;
}

.p-flow__card-title {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  text-align: center;
}

.p-flow__card-header--red .p-flow__card-title {
  color: #fff;
}

.p-flow__card-header--gray .p-flow__card-title {
  color: #EE3823;
}

/* ピルラベル */
.p-flow__pills {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
}

.p-flow__pill {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  padding: 8px 24px;
  border-radius: 50px;
  display: inline-block;
}

.p-flow__pill--outline {
  background: #fff;
  border: 1px solid #EE3823;
  color: #EE3823;
}

.p-flow__pill--yellow {
  background: #FFF395;
  color: #000;
}

/* ピル＋テキスト横並び */
.p-flow__info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 24px 0 0;
}

.p-flow__pill--fixed {
  width: 313px;
  flex-shrink: 0;
  text-align: center;
}

.p-flow__info-text {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 24px;
    line-height: 1.2;
  color: #000;
  margin: 0;
}

.p-flow__info-note {
  font-size: 16px;
}

.p-flow__info-sub {
  font-size: 16px;
}

/* ピル中央・フル幅 */
.p-flow__pills--center {
  justify-content: center;
}

.p-flow__pill--full {
  width: 100%;
  text-align: center;
}

/* ステップ */
.p-flow__steps {
  margin: 24px 0 0;
}

.p-flow__steps--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.p-flow__step {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 24px 0;
  position: relative;
}

.p-flow__step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 510px;
  border-bottom: 1px solid #969696;
}

.p-flow__steps--grid .p-flow__step:nth-child(n+3)::after {
  display: none;
}

.p-flow__step--last::after {
  display: none;
}

.p-flow__step-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.015em;
  color: #EE3823;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.p-flow__step-body {
  display: flex;
  align-items: center;
  gap: 17px;
  flex: 1;
  min-width: 0;
}

.p-flow__step-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.6px;
  color: #231815;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.p-flow__step-note {
  font-size: 16px;
}

.p-flow__step-icon {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

/* カード詳細テキスト */
.p-flow__card-detail {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin: 12px 0 0;
}

.p-flow__card--half .p-flow__card-detail {
  font-size: 18px;
  text-align: center;
}

.p-flow__card--half .p-flow__pills {
  justify-content: center;
}

.p-flow__card--half .p-flow__pill {
  font-size: 20px;
  width: 100%;
  text-align: center;
}


/* レスポンシブ（カードレイアウト） */
@media screen and (max-width: 1024px) {
  .p-flow__cards-row {
    flex-direction: column;
    gap: 20px;
  }

  .p-flow__steps--grid {
    grid-template-columns: 1fr;
  }

  .p-flow__steps--grid .p-flow__step:nth-child(n+3)::after {
    display: block;
  }

  .p-flow__steps--grid .p-flow__step:last-child::after {
    display: none;
  }

  .p-flow__steps,
  .p-flow__steps--grid {
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-flow__step::after {
    width: 100%;
  }
}

/* レスポンシブ（全体） */
@media screen and (max-width: 768px) {
  .p-flow {
    padding-bottom: 40px;
  }

  .p-flow__heading {
    height: 70px;
    gap: 20px;
    margin: 30px auto 0;
  }

  .p-flow__heading-bar {
    width: 10px;
    height: 90px;
  }

  .p-flow__heading-text {
    font-size: 18px;
  }

  .p-flow__period,
  .p-flow__method-header,
  .p-flow__method-lead,
  .p-flow__card--web,
  .p-flow__cards-row {
    width: 94%;
  }

  .p-flow__period-label-text,
  .p-flow__method-label-text {
    font-size: 18px;
  }

  .p-flow__method-lead {
    font-size: 16px;
  }

  .p-flow__card {
    padding: 20px;
  }

  .p-flow__card-catch {
    font-size: 17px;
  }

  .p-flow__card-catch--small {
    font-size: 17px;
      min-height: 40px;
  }

  .p-flow__card-header {
    height: auto;
    min-height: 70px;
    margin: 0 -20px;
  }

  .p-flow__card-header:first-child {
    margin-top: -20px;
  }

  .p-flow__card-title {
    font-size: 18px;
  }

  .p-flow__pill {
    font-size: 18px;
    padding: 6px 18px;
  }

  .p-flow__step-num {
    font-size: 30px;
  }

  .p-flow__step-text {
    font-size: 16px;
  }

  .p-flow__step-icon {
    height: 60px;
    width: 70px;
  }

  .p-flow__info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .p-flow__pill--fixed {
    width: 100%;
  }

  .p-flow__info-text {
    font-size: 18px;
  }

  .p-flow__info-note,
  .p-flow__info-sub {
    font-size: 12px;
  }

  .p-flow__info-sub {
    display: block;
    line-height: 1.4;
  }

  .p-flow__card-detail {
    font-size: 22px;
  }

  .p-flow__card--half .p-flow__card-detail {
    font-size: 18px;
  }

  .p-flow__card--half .p-flow__pill {
    font-size: 18px;
  }


  .p-flow__period-date .p-period__year {
    font-size: 20px;
  }

  .p-flow__period-date .p-period__day {
    font-size: 32px;
  }

  .p-flow__period-date .p-period__text {
    font-size: 14px;
  }

  .p-flow__period-date .p-period__paren {
    font-size: 14px;
  }

    .p-flow__period-date {
        display: block;
    }
}

/*-----------------------
利用方法（新デザイン）
------------------------*/
.p-usage {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 80px;
  background: #fff;
  max-width: 1366px;
  width: 94%;
  margin: 0 auto;
}

.p-usage__heading {
  display: flex;
  align-items: center;
  gap: 45px;
  background: #FFF1EE;
  width: 100%;
  max-width: 1166px;
  height: 70px;
  margin: 60px auto 0;
  overflow: hidden;
}

.p-usage__heading-bar {
  width: 16px;
  height: 126px;
  background: #EE3823;
  flex-shrink: 0;
}

.p-usage__heading-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.33;
  letter-spacing: 0.07em;
  color: #000;
  margin: 0;
}

.p-usage__block {
  width: 100%;
  max-width: 1166px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.p-usage__sub-label {
  width: 100%;
}

.p-usage__sub-label-text {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

.p-usage__label-mark {
  color: #EE3823;
}

.p-usage__sub-label-line {
  width: 100%;
  height: 3px;
  background: #969696;
  margin-top: 4px;
}

.p-usage__period-date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  color: #EE3823;
}

.p-usage__method-lead {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin: 0;
  width: 100%;
}

/* カード共通 */
.p-usage__card {
  border: 1px solid #969696;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
}

.p-usage__card--web {
  background: #FFFDEB;
  width: 100%;
  max-width: 1166px;
  margin: 24px auto 0;
}

/* カードヘッダー */
.p-usage__card-header {
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin: -30px -30px 0;
  background: #EE3823;
}

.p-usage__card-title {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

/* ステップ */
.p-usage__steps {
  margin: 24px 0 0;
}

.p-usage__steps--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.p-usage__step {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 24px 0;
  position: relative;
}

.p-usage__step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #969696;
}

.p-usage__steps--grid .p-usage__step:nth-last-child(-n+1)::after {
  display: none;
}

.p-usage__steps--grid .p-usage__step:nth-child(odd):nth-last-child(2)::after,
.p-usage__steps--grid .p-usage__step:nth-child(even):last-child::after {
  display: none;
}

.p-usage__step-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.015em;
  color: #EE3823;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.p-usage__step-body {
  display: flex;
  align-items: center;
  gap: 17px;
  flex: 1;
}

.p-usage__step-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #231815;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.p-usage__step-note {
  font-size: 16px;
}

.p-usage__step-icon {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

/* カード2: 店舗決済型 */
.p-usage__card--shop {
  background: #fff;
  width: 100%;
  max-width: 1166px;
  margin: 24px auto 0;
}

.p-usage__subsections {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.p-usage__subsection {
  flex: 1;
  min-width: 0;
}

.p-usage__subsection-header {
  background: #F1F1F1;
  border-radius: 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-usage__subsection-title {
  font-family: 'YuGothic', 'Yu Gothic', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 60px;
  color: #EE3823;
}

/* 決済完了アイコン カラーオーバーレイ */
.p-usage__step-icon-overlay {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px;
  height: 80px;
}

.p-usage__step-icon-overlay .p-usage__step-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.p-usage__step-icon-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C37BB1;
  mix-blend-mode: color;
  pointer-events: none;
}

/* 単列ステップ（カード2用、最後のステップは下線なし） */
.p-usage__card--shop .p-usage__step:last-child::after {
  display: none;
}

/* スマホアプリおすすめバナー */
.p-usage__recommend {
  width: 100%;
  max-width: 948px;
  margin: 60px auto;
  border: 2px solid #969696;
  border-radius: 5px;
  background: #fff;
  padding: 40px 30px;
  text-align: center;
}

.p-usage__recommend-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #EE3823;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.p-usage__recommend-title::before,
.p-usage__recommend-title::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #EE3823;
  flex-shrink: 0;
}

.p-usage__recommend-title::before {
  transform: rotate(45deg);
}

.p-usage__recommend-title::after {
  transform: rotate(-45deg);
}

.p-usage__recommend-items {
  display: flex;
  justify-content: space-evenly;
  margin-top: 30px;
}

.p-usage__recommend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.p-usage__recommend-img {
  width: 180px;
  height: 160px;
  object-fit: contain;
}

.p-usage__recommend-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #231815;
  margin: 0;
  text-align: center;
}

/* 利用方法 レスポンシブ */
@media screen and (max-width: 768px) {
  .p-usage {
    padding-bottom: 40px;
  }

  .p-usage__heading {
    height: 70px;
    gap: 20px;
    margin: 30px auto 0;
  }

  .p-usage__heading-bar {
    width: 10px;
    height: 90px;
  }

  .p-usage__heading-text {
    font-size: 18px;
  }

  .p-usage__block {
    width: 94%;
    margin: 30px auto 0;
  }

  .p-usage__sub-label-text {
    font-size: 18px;
  }

  .p-usage__method-lead {
    font-size: 16px;
  }

  .p-usage__period-date .p-period__year {
    font-size: 20px;
  }

  .p-usage__period-date .p-period__day {
    font-size: 32px;
  }

  .p-usage__period-date .p-period__text {
    font-size: 14px;
  }

  .p-usage__period-date .p-period__paren {
    font-size: 14px;
  }

  .p-usage__card--web,
  .p-usage__card--shop {
    width: 94%;
  }

  .p-usage__card {
    padding: 20px;
  }

  .p-usage__card-header {
    height: auto;
    min-height: 70px;
    margin: -20px -20px 0;
    padding: 12px 20px;
  }

  .p-usage__card-title {
    font-size: 18px;
  }

  .p-usage__subsections {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .p-usage__subsection {
    width: 100%;
  }

  .p-usage__subsection-header {
    height: 60px;
  }

  .p-usage__subsection-title {
    font-size: 18px;
  }

  .p-usage__steps--grid {
    grid-template-columns: 1fr;
  }

  .p-usage__step::after {
    width: 100%;
  }

  .p-usage__step-text {
    font-size: 16px;
  }

  .p-usage__step-num {
    font-size: 30px;
  }

  .p-usage__step-icon {
    height: 60px;
    width: 70px;
  }

  .p-usage__step-icon-overlay {
    width: 70px;
    height: 60px;
  }

  .p-usage__recommend {
    width: 94%;
    padding: 24px 16px;
  }

  .p-usage__recommend-title {
    font-size: 20px;
  }

  .p-usage__recommend-items {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
  }

  .p-usage__recommend-img {
    width: 140px;
    height: 124px;
  }

  .p-usage__recommend-text {
    font-size: 16px;
  }

    .p-usage__period-date {
        display: block;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .p-usage__card--web,
  .p-usage__card--shop {
    width: 94%;
  }

  .p-usage__subsections {
    flex-direction: column;
    gap: 20px;
  }

  .p-usage__steps--grid {
    grid-template-columns: 1fr;
  }

  .p-usage__subsection-title {
    font-size: 28px;
  }
}

/*-----------------------
お知らせ（旧デザイン）
------------------------*/
.p-news .contents {
  margin-top: 50px;
  margin-bottom: 50px;
  background: rgba(170, 139, 34, 0.07);
  padding-top: 30px;
  padding-bottom: 50px;
}

.p-news .c-sub_title {
  color: var(--news-brown);
  margin-bottom: 1rem;
}
.p-news .news_list {
  margin-bottom: 0;
}

.p-news .news_list_box {
  width: 100%;
  margin: auto;
}

.p-news__btn_box {
  max-width: 900px;
  width: fit-content;
  margin: 20px 0 0 auto;
  position: relative;
}

.c-more_btn {
  color: var(--news-brown);
  border: var(--news-brown) 1px solid;
  max-width: 200px;
  width: 40%;
  font-size: 2rem;
  margin-left: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.c-more_btn .arrow::before {
  background: rgba(170, 139, 34, 0);
}

.c-more_btn .arrow::after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  transform: skew(45deg);
  width: 3rem;
  height: 1rem;
  border-right: 1px solid var(--news-brown);
  border-bottom: 1px solid var(--news-brown);
  background: rgba(170, 139, 34, 0);
  right: 15px;
  top: -10px;
}

.c-border_btn.p-news__btn--more,
.c-border_btn.p-news__btn--back {
  border: 2px solid var(--news-brown);
  color: var(--news-brown);
}

.c-border_btn.p-news__btn--more .arrow:before,
.c-border_btn.p-news__btn--more .arrow:after {
  background-color: var(--news-brown);
}

.c-border_btn.p-news__btn--back .arrow::before,
.c-border_btn.p-news__btn--back .arrow::after {
  background-color: var(--news-brown);
}
.c-border_btn.p-news__btn--back .arrow {
  transform: scale(-1, 1);
  left: -20px;
}

/*-----------------------
お知らせ一覧（Figma準拠）
------------------------*/
.p-news-list .page-title,
.p-news-detail .page-title {
  padding-bottom: 0;
}

.p-news-list .p-title,
.p-news-detail .p-title {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

.p-news-list .p-sub-title,
.p-news-detail .p-sub-title {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  color: #EE3823;
  text-align: center;
}

.p-news-list__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  padding: 100px 0 70px;
}

.p-news-list__items {
  width: 100%;
  max-width: 1102px;
  padding: 0 20px;
  box-sizing: border-box;
}

.p-news-list__item {
  display: flex;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid #000;
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #404040;
  text-decoration: none;
  transition: opacity 0.2s;
}

.p-news-list__item:first-child {
  border-top: 1px solid #000;
}

.p-news-list__item:hover {
  opacity: 0.7;
}

.p-news-list__date {
  margin-right: 2em;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-news-list__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.p-news-list__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 500px;
}

/* 戻るボタン（一覧） */
.p-news-list__back,
.p-news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #EE3823;
  text-decoration: none;
  border: 1px solid #EE3823;
  border-radius: 9999px;
  padding: 12px 28px;
  transition: opacity 0.2s;
}

.p-news-list__back:hover,
.p-news-detail__back:hover {
  opacity: 0.7;
}

.p-news-list__back-arrow,
.p-news-detail__back-arrow {
  font-size: 18px;
  flex-shrink: 0;
}

.p-news-list__back-arrow::before,
.p-news-detail__back-arrow::before {
  content: "‹";
}

/* ページネーション（paginationjs） */
#news_pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

#news_pagination .paginationjs {
  width: fit-content;
}

#news_pagination .paginationjs-pages ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

#news_pagination .paginationjs-pages li {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}

#news_pagination .paginationjs-pages li.J-paginationjs-page a {
  border: 1px solid #231815;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

#news_pagination .paginationjs-pages li.paginationjs-next {
  margin-right: 0;
}

#news_pagination .paginationjs-pages li.disabled a {
  cursor: initial;
  border: none;
}

#news_pagination .paginationjs-pages li.disabled a:hover {
  opacity: 1;
}

#news_pagination .paginationjs-pages li.paginationjs-ellipsis {
  display: none;
}

#news_pagination .paginationjs-pages li:hover:not(.disabled, .active) {
  background-color: #fce8e6;
}

#news_pagination .paginationjs-pages li a {
  text-decoration: none;
  color: #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 34px;
}

#news_pagination .J-paginationjs-page.active {
  background-color: #EE3823;
  cursor: initial !important;
}

#news_pagination .paginationjs-pages .active a {
  color: #fff;
}

#news_pagination .pagination_loading {
  font-size: 1.4rem;
  color: #EE3823;
  text-align: center;
}

/* paginationjs first/last/prev/next テキストボタン */
#news_pagination .paginationjs-prev,
#news_pagination .paginationjs-next,
#news_pagination .paginationjs-first,
#news_pagination .paginationjs-last {
  width: auto;
  cursor: pointer;
}

#news_pagination .paginationjs-prev a,
#news_pagination .paginationjs-next a,
#news_pagination .paginationjs-first a,
#news_pagination .paginationjs-last a {
  border: none !important;
  font-size: 20px;
  color: #231815;
}

#news_pagination .paginationjs-prev.disabled,
#news_pagination .paginationjs-next.disabled {
  display: none;
}

/*-----------------------
お知らせ詳細（Figma準拠）
------------------------*/
.p-news-detail__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  padding: 60px 139px;
}

.p-news-detail__article {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  max-width: 1087px;
}

.p-news-detail__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #969696;
  padding-bottom: 12px;
}

.p-news-detail__title {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

.p-news-detail__date {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #EE3823;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-news-detail__content {
  font-family: "YuGothic", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
}

.p-news-detail__content p {
  margin: 0;
}

.p-news-detail__link {
  margin: 0;
}

.p-news-detail__link a {
  color: #EE3823;
  text-decoration: underline;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .p-news-list .p-title,
  .p-news-detail .p-title {
    font-size: 28px;
  }

  .p-news-list .p-sub-title,
  .p-news-detail .p-sub-title {
    font-size: 18px;
  }

  .p-news-list__body {
    padding: 60px 0 50px;
    gap: 50px;
  }

  .p-news-list__items {
    padding: 0 15px;
  }

  .p-news-list__item {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    overflow: hidden;
  }

  .p-news-list__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .p-news-list__date {
    margin-right: 0;
    font-size: 16px;
  }

  .p-news-list__back,
  .p-news-detail__back {
    font-size: 14px;
    padding: 10px 24px;
  }

  .p-news-list__back-arrow,
  .p-news-detail__back-arrow {
    font-size: 16px;
  }

  #news_pagination .paginationjs-pages li {
    width: 28px;
    height: 28px;
    margin-right: 8px;
  }

  #news_pagination .paginationjs-pages li a {
    font-size: 12px;
    line-height: 28px;
  }

  .p-news-detail__body {
    padding: 60px 20px 50px;
    gap: 50px;
  }

  .p-news-detail__article {
    gap: 25px;
  }

  .p-news-detail__header {
    flex-direction: column;
    gap: 4px;
  }

  .p-news-detail__title {
    font-size: 16px;
  }

  .p-news-detail__date {
    font-size: 14px;
  }

  .p-news-detail__content {
    font-size: 16px;
  }
}

/*-----------------------
お問い合わせ(利用者)
------------------------*/
.c-contact {
  padding-bottom: 50px;
}

.c-contact--user {
  background-color: #FFFDEF;
  padding: 0 0 70px;
}

.c-contact--user .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.c-contact__card {
  max-width: 758px;
  width: 100%;
  border: 1px solid #969696;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  padding-bottom: 25px;
}

.c-contact__header {
  background-color: #EE3823;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 0.8rem 0;
  line-height: 1.33;
  border-radius: 10px 10px 0 0;
}

.c-contact__body {
  text-align: center;
  padding: 30px 20px 20px;
}

.c-contact--user .c-contact__num {
  display: block;
  font-weight: 800;
  font-size: 5rem;
  line-height: 1.5;
  letter-spacing: 0.012em;
  color: #EE3823;
}

.c-contact--user .c-contact__num a {
  font-size: 5rem;
  color: #EE3823;
}

.c-contact__info {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.95rem;
  line-height: 1.54;
  letter-spacing: 0.0308em;
  color: #EE3823;
  text-align: center;
  margin-top: 5px;
}

.c-contact__caution {
  background-color: #FFF23F;
  padding: 12px 20px;
  text-align: center;
}

.c-contact__caution p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 0.0333em;
  color: #EE3823;
}

.c-contact__faq-btn {
  width: 471px;
  margin: 0 auto;
}

.c-contact__faq-btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 24px;
  box-sizing: border-box;
  background-color: #EE3823;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.0252em;
  line-height: 1.51;
  border-radius: 50px;
  box-shadow: 0px 6px 0px 0px rgba(131, 45, 34, 1);
  text-decoration: none;
  transition: opacity 0.2s;
}

.c-contact__faq-btn a:hover {
  opacity: 0.85;
}

.c-contact__faq-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 687px) {
  .c-contact {
    padding-bottom: 20px;
  }

  .c-contact--user {
    padding: 40px 15px;
  }

  .c-contact__card {
    max-width: 100%;
  }

  .c-contact__header {
    font-size: 2rem;
    letter-spacing: 0.03em;
  }

  .c-contact--user .c-contact__num {
    font-size: 3.6rem;
  }

  .c-contact--user .c-contact__num a {
    font-size: 3.6rem;
  }

  .c-contact__info {
    font-size: 1.5rem;
  }

  .c-contact__caution {
    padding: 10px 15px;
  }

  .c-contact__caution p {
    font-size: 1.4rem;
  }

  .c-contact__faq-btn {
    max-width: 100%;
  }

  .c-contact__faq-btn a {
    font-size: 1.8rem;
    height: 50px;
  }
}

/*-----------------------
お問い合わせ(事業者)
------------------------*/

.c-contact--company .c-contact__num,
.c-contact--company .c-contact__note {
  color: var(--navy);
}

.c-contact--company .c-contact__num,
.c-contact--company .c-contact__num a {
  font-size: 5rem;
}

.c-contact--company .white_box {
  border: 2px var(--navy) solid;
  border-radius: 4px;
  max-width: 850px;
  width: 80%;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.c-contact--company .c-contact__num,
.c-contact--company .c-contact__note {
  color: var(--navy);
}

.c-contact--company .c-contact__announce {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.c-contact--company .c-contact__announce span {
  letter-spacing: 0;
}

@media screen and (max-width: 687px) {
  .c-contact__time {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 445px) {
  .c-contact .u-fs40 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 687px) {
  .c-contact .white_box {
    width: 100%;
  }

  .c-contact__time {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 445px) {
  .c-contact .u-fs40 {
    font-size: 3rem;
  }
}

/*0901公開分*/
.release_0901 {
  color: var(--text-black);
  font-size: 2.8rem;
  padding: 50px 0;
  display: block;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 600px) {
  .release_0901 {
    padding: 20px 0;
  }
}

/* kvのDL禁止 */
.no_dl{
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}

/* pagetopボタン */
#page-top a{
  display: block;
  justify-content:center;
  align-items:center;
  background: #EE3823;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  padding: 15%;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size:10px;
  transition:all 0.3s;
  line-height: normal;
  box-shadow: 0px 3px 0px 0px #005EAD, 0px 3px 0px 0px #00000080;
}

#page-top i{
  display: block;
  margin-bottom: 5px;
}

#page-top {
  position: fixed;
  right: 20px;
  bottom:20px;
  z-index: 10;
  opacity: 0;
  transform: translateY(100px);
}

/*アニメーション*/
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 0.8;
  transform: translateY(0);
  }
}

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

@media screen and (max-width: 600px) {
  #page-top {
    right: 10px;
    bottom: 10px;
  }
}

/*申し込み終了時*/
.c-mask{
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.c-mask__bg{
  position: absolute;
  width: 100vw;
  padding: 2rem 2rem;
  top: calc(-2rem - 2px);
  height: calc(100% + 2rem);
  background: rgba(0, 0, 0, 0.8);
}

.c-mask__text{
    color: #fff;
    line-height: 1.7;
    padding: 0;
    position: absolute;
    margin: auto;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.c-mask__text p{
  color: #fff;
}

.c-mask h2{
  position: initial;
}

.c-mask__text p:first-of-type {
  font-size: 3rem;
}

.c-mask__text p:last-of-type {
  font-size: 1.6rem;
}

#user .c-mask .heading::before{
  position: initial;
}

@media screen and (max-width: 992px) {
  .c-mask__text p{
    letter-spacing: 0;
  }

  .c-mask__text p:first-of-type{
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.4;
    padding: 0;
    margin-bottom: 1rem;
  }

  .c-mask__text p:last-of-type{
    letter-spacing: 0;
  }
}

@media screen and (max-width: 600px) {
    .c-mask__text p:first-of-type{
      font-size: 2.2rem;
    }
}

/*申し込み結果*/
.p-kv--user{
  padding-top: 4rem;
}
.p-result{
  text-align: center;
  padding-top: 3.6rem;
  border: 2px solid var(--pink);
  padding: 2rem;
  background: #FFEDED;
  width: 70%;
  margin: auto;
}
.p-result__ttl{
  font-size: 3rem;
  color: var(--pink);
}
.p-result__text,
.p-result__text--big,
.p-result__text--small
{
  color: var(--text-black);
}
.p-result__text--big{
  font-size: 3rem;
}
.p-result__text--small{
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .p-kv--user{
    padding-top: 2rem;
  }
  .p-result{
    width: 95%;
  }
  .p-result__ttl{
    font-size: 2.2rem;
    color: var(--pink);
    line-height: 1.4;
    margin-bottom: 1.4rem;
  }
  .p-result__text{
    font-size: 1.7rem;
    letter-spacing: 0;
    text-align: left;
  }
}

select,input{
  font-family: sans-serif;
}

/* 2次販売告知 */
.p-target{
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  display: flex;
}
.p-target__sub{
  background: var(--pink);
  color: #fff;
  border-radius: 10px;
  padding: 2rem;
}
.p-target__text{
  text-align: left;
  font-size: 2.8rem;
  margin-left: 4rem;
  list-style-type: unset;
}
.p-overview__table.p-application_amount{
  margin-bottom: 0;
}
.p-overview__table.p-application_amount tr th{
  font-size: 2rem;
  width: 40%;
}
.p-overview__table.p-application_amount tr td{
  font-size: 2rem;
  -webkit-border-before-width: 60%;
}
.p-top .white_box{
  padding: 2rem;
}

@media screen and (max-width: 768px) {
  .p-target{
    display: block;
    margin-bottom: 1rem;
  }
  .p-target__sub{
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .p-overview__table.p-application_amount tr th{
    width: 50%;
  }
  .p-overview__table.p-application_amount tr th{
    width: 50%;
  }
}

.p-kv__slogan{
  font-size: 9rem;
  width: fit-content;
  color: var(--pink);
  text-align: center;
  position: relative;
  margin: auto;
}

.p-kv__slogan:before{
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100px;
  height: 100px;
  background-image: url("../img/slogan_left.svg");
  position: absolute;
  left: -150px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

.p-kv__slogan:after{
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100px;
  height: 100px;
  background-image: url("../img/slogan_right.svg");
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

.p-period-box__heading{
  color: var(--pink);
  font-size: 2.6rem;
}

.p-fs12{
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .p-kv__slogan{
    font-size: 5rem;
  }
  .p-kv__slogan:before,
  .p-kv__slogan:after{
    width: 40px;
    height: 40px;
  }
  .p-kv__slogan:before{
    left: -50px;
  }
  .p-kv__slogan:after{
    right: -45px;
  }
  .p-fs12 {
    font-size: 1.4rem;
  }
}

.noto {
  font-family: avantgarde, 'Noto Sans JP', sans-serif;
  font-weight: bolder;
  font-size: 2.2rem;
}

.margin-fix {
  margin-top: 2rem;
}

.box--note {
  position: relative;
}

.end_note {
  color: #FF0000;
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  width: 100%;
  margin-top: 1rem;
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .box--note {
    position: relative;
  }

  .end_note {
    color: #FF0000;
    position: relative;
    text-align: center;
  }
}

/* SP専用改行（768px以下で有効） */
.br-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .br-sp {
    display: inline;
  }
}