@charset "UTF-8";
/* kv - component
-----------------------------*/
.u-pt-14{
  padding-top: 14px !important;
}
.u-pb-14{
  padding-bottom: 14px !important;
}
.u-pl-24{
  padding-left: 24px;
}
.u-mt-8{
  margin-top: 8px;
}

.c-kv {
  width: 100%;
  background-color: #F7F2ED;
}
.c-kv__inner {
  max-width: 1400px;
  margin: 0 auto;
  background: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/kv_bg.png) no-repeat top center/1400px;
}
@media screen and (max-width: 768px) {
  .c-kv__inner {
    background: none;
  }
}
.c-kv__title {
  width: 888px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-kv__title {
    width: 100%;
  }
}

/* inner - component
-----------------------------------*/
.c-inner {
  width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .c-inner {
    width: 100%;
    padding: 0 4.1666666667%;
  }
}

.header {
  width: 100%;
  background: #fff;
  padding: 6px 0;
}
@media screen and (max-width: 768px) {
  .header {
    position: relative;
    z-index: 2;
    padding: 10px 0;
  }
}
.header__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.header__inner a {
  width: 84px;
  display: inline-block;
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .header__inner a {
    width: 70px;
    margin-left: 12px;
  }
}

.footer-area {
  background-color: #fff;
  padding-top: 60px;
}

.cont_footer {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 50px;
  padding: 0 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cont_footer {
    padding: 0 5%;
    text-align: center;
  }
}
.cont_footer p {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .cont_footer p {
    font-size: 4.1666666667vw;
    margin-top: 23px;
  }
}
.cont_footer button {
  color: #0044CC;
  text-decoration: underline;
  font-weight: 700;
}

#copywright {
  padding: 0;
  text-align: center;
  line-height: 3.2;
  background: #f4ede5;
  font-size: 15px;
  color: #3f0000;
  padding-bottom: 126px;
}
@media screen and (max-width: 768px) {
  #copywright {
    padding-bottom: calc(15vw + 16px);
  }
}

/* accordion - component
-----------------------------*/
.c-accordion {
  width: 100%;
  cursor: pointer;
}
.c-accordion__ttl {
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.c-accordion__icon {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  right: 42px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .c-accordion__icon {
    width: 100%;
    width: 3.6363636364%;
    height: auto;
    aspect-ratio: 1/1;
    right: 4.5454545455%;
  }
}
/* .c-accordion__icon.-active {
  transform: rotate(90deg);
} */
.c-accordion__icon.-active::before {
  opacity: 0;
}
.c-accordion__icon::before, .c-accordion__icon::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  inset: 0;
  margin: auto;
  transform-origin: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-accordion__icon::before, .c-accordion__icon::after {
    height: 2px;
  }
}
.c-accordion__icon::before {
  opacity: 1;
  transition: 0.5s;
}
.c-accordion__icon::after {
  transform: rotate(-90deg);
}
.c-accordion__content {
  display: none;
}

/* tab - component
-----------------------------------*/
.tabs {
  display: flex;
  align-items: stretch;
}

.tab {
  list-style: none;
  cursor: pointer;
  flex: 1;
}
.tab:hover {
  opacity: 0.6;
}
.tab.is-active .tab__ttl {
  background-color: #fff;
  color: #CC0033;
  line-height: 1.087;
}
.tab__ttl {
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  padding: 7px 0;
  background-color: #D1D1D1;
  color: #848484;
  border-radius: 10px 10px 0 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.087;
}
@media screen and (max-width: 768px) {
  .tab__ttl {
    font-size: 4.17vw;
		line-height: 1.2;
    padding: 6px 0;
  }
}

.panel {
  display: none;
  background-color: #fff;
}
.panel.is-show {
  display: block;
}

/* modal - component
-----------------------------*/
.c-modalOpen {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
}
.modal__bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  min-width: 820px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal__bg {
    min-width: unset;
  }
}
.modal .modalBox {
  width: 100%;
  max-width: 1000px;
  min-width: 820px;
  height: fit-content;
  max-height: 80%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .modal .modalBox {
    min-width: unset;
    width: 91.6666666667%;
  }
}
.modal .modalBox .modalCloseBtn {
  position: absolute;
  display: inline-block;
  z-index: 1;
  cursor: pointer;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 32px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
  top: -20px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .modal .modalBox .modalCloseBtn {
    width: min(48px, 10vw);
    height: min(3px, 0.625vw);
    top: min(-24px, -5vw);
  }
}
.modal .modalBox .modalCloseBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transform: rotate(90deg);
}
.modal .modalBox__inner {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  height: max-content;
  max-height: 80vh;
}

/* intro - project
-----------------------------------*/
.p-intro {
  padding: 64px 0;
  background-color: #F7F2ED;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/intro_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1400px;
}
@media screen and (max-width: 768px) {
  .p-intro {
    padding: 14px 0 48px;
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/intro_bg_sp.png);
    background-size: 100%;
  }
}
.p-intro__ttl {
  width: 837px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 768px) {
  .p-intro__ttl {
    width: 94.5833333333%;
    margin-bottom: 18px;
  }
}
.p-intro__panel {
  padding: 22px 70px 48px;
}
@media screen and (max-width: 768px) {
  .p-intro__panel {
    padding: 30px 2.2727272727% 40px;
  }
}
.p-intro__panel__head {
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .p-intro__panel__head {
    width: 90.9523809524%;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-reward__icon__plus{
  position: relative;
}
.p-reward__icon__plus::before{
  position: absolute;
  content: "";
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/reward_icon_after.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 72px;
  height: 72px;
  display: block;
  bottom: -43px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.p-reward__icon__sarani{
  position: relative;
	margin-bottom: 8px;
}
.p-reward__icon__sarani::before{
  position: absolute;
  content: "";
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/reward_icon2_after.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 50px;
  display: block;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.p-intro__wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-intro__wrap {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.p-intro__wrap__item {
  width: 274px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-intro__wrap__item {
    width: 100%;
    padding-left: 0;
  }
}
.p-intro__wrap__item .p-img{
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-intro__wrap__item .p-img{
    width: 46.45833333333333vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-intro__wrap__item+.p-img{
    width: 100%;
    margin: 0 auto;
  }
}
.p-intro__wrap__item ul {
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin-top: 2px;
  line-height: 1.671;
	text-indent: -1em; /* 1文字分左に出す */
	padding-left: 1em; /* 本文を揃えるための余白 */
}
.p-intro__wrap__item p.link_kiyaku{
	font-size: 14px;
  font-weight: 400;
	text-align: center;
}
@media screen and (max-width: 768px) {
  .p-intro__wrap__item ul {
    margin-top: 0.4166666666666667vw;
    text-indent: -1.2em;
    padding-left: 10.208333333333334vw;
    text-align: left;
    padding-top: 4px;
  }
	.p-intro__wrap__item p.link_kiyaku{
		text-align: center;
	}

}
.p-intro__panel__txt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  margin: 24px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-intro__panel__txt {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .p-intro__panel__txt span {
    display: inline-block;
    text-indent: -1.2em;
    padding-left: 1.5em;
    padding-right: 1em;
  }
}

/*  - project
-----------------------------------*/
.p-reward {
  background-color: #BF0000;
  padding: 56px 0 70px;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-reward {
    padding: 40px 0 28px;
    margin-bottom: 4.5833333333vw;
  }
}
.p-reward::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/202405_1cm/cpn-dcardtsumitate-reggold/images/reward_icon_after.png) center center/contain no-repeat;
  z-index: 2;
  transform: translateX(-50%) translateY(100%);
}
@media screen and (max-width: 768px) {
  .p-reward::after {
    width: min(68px, 14.1666666667vw);
    height: min(68px, 14.1666666667vw);
    bottom: min(23px, 4.7916666667vw);
  }
}
.p-reward__head {
  width: 700px;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  background-color: #7A0000;
  padding: 18.5px 0 17.5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-reward__head {
    width: 91.6666666667%;
    font-size: 4.1666666667vw;
    padding: 14px 0 12px;
    border-radius: 10px;
  }
}
.p-reward__head::after {
  display: block;
  content: "";
  width: 22px;
  height: 14px;
  background: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/202405_1cm/cpn-dcardtsumitate-reggold/images/reward_head_icon.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) translateY(100%);
}
@media screen and (max-width: 768px) {
  .p-reward__head::after {
    width: 20px;
    height: 13px;
    bottom: 1px;
    background: url(//d1mts1n1u0bek1.cloudfront.net/std/campaigns/202405_1cm/cpn-dcardtsumitate-reggold/images/reward_head_icon_sp.png) no-repeat center/contain;
  }
}
.p-reward__ttl {
  width: 500px;
  margin: 26px auto 24px;
}
@media screen and (max-width: 768px) {
  .p-reward__ttl {
    width: 91.6666666667%;
    margin: 16px auto;
  }
}
.p-reward__contain {
  width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-reward__contain {
    width: 91.6666666667%;
  }
}
.p-reward__tabs {
  display: flex;
  width: 100%;
  height: 100%;
}
.p-reward__tab {
  display: block;
  width: 50%;
  max-width: 420px;
  padding: 21px 0 20px;
  color: #CC0033;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  background-color: #D6D6CE;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-reward__tab {
    max-width: unset;
    padding: 4.1666666667vw;
    font-size: 5vw;
    line-height: 1;
  }
}
.p-reward__tab.jsTabButtonActive {
  font-size: 24px;
  line-height: 1;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-reward__tab.jsTabButtonActive {
    font-size: 5vw;
  }
}
.p-reward__contents {
  display: none;
  background-color: #fff;
  padding: 16px 0 48px;
  border-radius: 0 0 10px 10px;
}
.p-reward__contents.jsTabItemActive {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-reward__contents {
    padding: 23px 0 43px;
  }
}
.p-reward__txt {
  font-size: 1.4rem;
  font-weight: 400;
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.4285714286;
}
@media screen and (max-width: 768px) {
  .p-reward__txt {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.p-reward__txt a {
  color: #0044CC;
}
.p-reward__txt__caution {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-reward__txt__caution {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.p-reward__hdg {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: initial;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg {
    margin: 0 auto;
    width: 66vw;
  }
}
.p-reward__hdg02 {
align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg02 {
    margin: 0 auto 0 25px;
    width: 66vw;
  }
}
.p-reward__hdg.p-reward__merit2 {
  align-items: flex-start;
}
.p-reward__hdg__icon {
  width: 70px;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg__icon {
    display: block;
    width: 15.625vw;
  }
}
.p-reward__hdg__txt {
  flex: 1;
  padding-left: 13px;
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1.2413793103;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg__txt {
    padding-left: 10px;
    font-size: 5vw;
    line-height: 1.5;
  }
}
.p-reward__hdg__ttl01 .p-reward__hdg__img {
  width: 292px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg__ttl01 .p-reward__hdg__img {
    width: 100%;
    display: block;
  }
}
.p-reward__hdg__ttl02 .p-reward__hdg__img {
  width: 460px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg__ttl02 .p-reward__hdg__img {
    width: 100%;
  }
}
.p-reward__hdg__txt .c-accordion__icon {
  /* left: 100%; */
  right: 0;
}
.p-reward__hdg__txt .c-accordion__icon::after, .p-reward__hdg__txt .c-accordion__icon::before {
  background-color: #CC0033;
  width: 24px;
  height: 3px;
}
.p-reward__container {
  margin-top: 10px;
  padding: 40px;
  border: 4px solid #CC0033;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-reward__container {
    padding: 8.3333vw 0;
  }
}
.p-reward__container02 {
  padding-top: 35px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-reward__container {
    padding: 8.3333vw 0;
  }
}
.p-reward__container--icon {
  position: relative;
}
.p-reward picture {
  display: block;
  height: auto;
}
.p-reward img {
  width: 100%;
  height: auto;
}
.p-reward__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-reward__item {
    margin: 0 auto;
    width: 79.16666667vw;
  }
}
.p-reward__item__txt{
  font-size: 14px;
  font-weight: 400;
  padding-top: 16px;
  padding-bottom: 24px;
}
.p-reward__merit {
  margin: 0 auto;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-reward__merit {
    margin: 0 auto;
    width: 75vw;
  }
}
.p-reward__merit.p-reward__merit2 {
  margin-bottom: 0;
  padding-bottom: 4px;
  align-items: center;
}
.p-reward__merit__txt {
  margin-top: 32px;
  margin-bottom: 8px;
  display: inline-block;
  width: auto;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.66667;
}
@media screen and (max-width: 768px) {
  .p-reward__merit__txt__txt {
    margin-top: 8.3333vw;
    margin-bottom: 3.3333vw;
    font-size: 4.0625vw;
    line-height: 1.641025;
    font-feature-settings: "palt";
  }
}
.p-reward__merit__txt span {
  color: #CC0033;
}
.p-reward__merit__txt.p-reward__merit2 {
  margin-bottom: 20px;
}
.p-reward__merit__txt.p-reward__merit2 span {
  background-color: #FFEB94;
}
.p-reward__merit__note {
  font-size: 0.6em;
}
.p-reward__notes__txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  text-align: left;
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .p-reward__notes__txt {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.p-reward__notes__txt span:nth-of-type(1) {
  flex-shrink: 0;
}
.p-reward__always {
  background-color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-reward__always {
    margin-top: 5vw;
    padding: 0 2.083vw 3.333vw;
  }
}
.p-reward__always__txt {
  margin: 0 auto;
  margin-top: 10px;
  display: block;
  width: 46.12%;
}
@media screen and (max-width: 768px) {
  .p-reward__always__txt {
    margin-top: 2.083vw;
    margin-bottom: 5px;
    width: 61.3333333333vw;
  }
}
.p-reward__always__caution {
  margin-bottom: 14px;
  width: 88.7096774194%;
}
@media screen and (max-width: 768px) {
  .p-reward__always__caution {
    margin-bottom: 0;
    width: 100%;
  }
}
.p-reward__always + .p-reward__plusicon {
  display: block;
  margin: 10px auto 8px;
  width: 35px;
}
@media screen and (max-width: 768px) {
  .p-reward__always + .p-reward__plusicon {
    display: block;
    margin: 1.667vw auto;
    width: 5vw;
    height: auto;
  }
}
.p-reward__scene {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.p-reward__scene__item {
  padding: 16px 13px 20px;
  background-color: #FFF6D6;
  width: calc(50% - 4px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-reward__scene__item {
    padding: 3.75vw 1.875vw;
    width: 39.167vw;
  }
}
.p-reward__scene__list {
  margin-top: 12px;
}
.p-reward__scene__list li {
  margin-left: -10px;
  margin-right: -10px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .p-reward__scene__list li {
    width: 35.417vw;
    font-size: max(9.6px, 2.917vw);
    line-height: 1.42857;
    margin: 0;
    letter-spacing: -0.03em;
    font-feature-settings: normal;
  }
}
.p-reward__scene__list li::before {
  content: "●";
  color: #FF9900;
}
.p-reward__scene + .p-reward__arrowicon {
  display: block;
  margin: 16px auto;
  width: 48px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-reward__scene + .p-reward__arrowicon {
    margin: 2.5vw auto 3.333vw;
    width: 7.5vw;
  }
}
.p-reward__detail__txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-reward__detail__txt {
    font-size: max(9.6px, 2.917vw);
    line-height: 1.4285;
    text-align: center;
  }
}
.p-reward__max {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #FFF6D6;
  box-shadow: 5px 5px 0px #FFEB94;
}
@media screen and (max-width: 768px) {
  .p-reward__max {
    width: 96%;
  }
}
.p-reward__max img {
  height: auto;
}
.p-reward__max__txt {
  margin: 40px auto 45px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.66667;
}
@media screen and (max-width: 768px) {
  .p-reward__max__txt {
    margin: 8.333vw auto 7.917vw;
    font-size: 3.333vw;
    line-height: 1.625;
    font-feature-settings: "palt";
  }
}


.p-reward__max-3000 {
	z-index: 2;
	width: 100%;
	background-color: #FAE5EA;
	box-shadow: 5px 5px 0px #FFC3D2;
}

@media screen and (max-width: 768px) {
  .p-reward__max-3000 {
    width: 96%;
  }
}


.p-reward__max-under29__wrap {
	position: relative;
	margin-top: 59px;
}
.p-reward__max-under29 {
	position: absolute;
	top: -45px;
	left: 0;
}
@media screen and (max-width: 768px) {
	.p-reward__max-under29__wrap {
		margin-top: 47px;
	}
	.p-reward__max-under29{
		position: absolute;
    top: -6.458333333333334vw;
    left: -1.4583333333333333vw;
    width: 70.41666666666667vw;
	}
}

.p-reward__use {
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  border: 4px solid #FF9900;
  padding: 40px 32px 30px;
}
@media screen and (max-width: 768px) {
  .p-reward__use {
    padding: 7.083vw 6.042vw 6.042vw 5.208vw;
  }
}
.p-reward__use__ttl {
  width: auto;
  margin: 0 auto;
  margin-top: -20px;
  padding: 0 26px;
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  background-color: #FF9900;
  min-height: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 75px;
}
@media screen and (max-width: 768px) {
  .p-reward__use__ttl {
    font-size: 3.75vw;
    margin-top: -4.583vw;
    padding: 0 5.833vw;
    min-height: 7.5vw;
    left: 14.167vw;
  }
}
@media screen and (max-width: 768px) {
  .p-reward__note {
    margin: 0 -2.708vw;
  }
}

/* profit - project
-----------------------------------*/
.p-profit {
  padding: 40px 0 64px;
  background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/profit_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1400px;
}
@media screen and (max-width: 768px) {
  .p-profit {
    padding: 40px 0;
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/profit_bg_sp.png);
    background-size: 100%;
  }
}
.p-profit__ttl {
  width: 640px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .p-profit__ttl {
    width: 87.5%;
    margin-bottom: 6px;
  }
}
.p-profit__subttl {
  width: 590px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 768px) {
  .p-profit__subttl {
    width: 76.6666666667%;
    margin-bottom: 19px;
  }
}
.p-profit__btn {
  display: flex;
  justify-content: space-between;
  margin-bottom: 95px;
}
@media screen and (max-width: 768px) {
  .p-profit__btn {
    margin-bottom: 83px;
  }
}
.p-profit__btn a {
  display: block;
  width: 264px;
}
@media screen and (max-width: 768px) {
  .p-profit__btn a {
    width: 32.7272727273%;
  }
}
.p-profit__item {
  position: relative;
}
.p-profit__item::before {
  display: block;
  content: "";
  width: 136px;
  height: 136px;
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-profit__item::before {
    width: 86px;
    height: 86px;
    top: -43px;
  }
}
.p-profit__item--shopping {
  background-color: #FAE5EA;
  padding: 96px 20px 21px;
}
@media screen and (max-width: 768px) {
  .p-profit__item--shopping {
    padding: 52px 2.2727272727% 32px;
  }
}
.p-profit__item--shopping::before {
  background: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/profit_icon_01.png) no-repeat center/contain;
}
.p-profit__item--shopping .p-profit__lead {
  width: 445px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 768px) {
  .p-profit__item--shopping .p-profit__lead {
    width: 93.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  .p-profit__item--shopping .p-profit__list {
    row-gap: 16px;
  }
}
.p-profit__item--poikatsu {
  background-color: #FDEDC9;
  padding: 84px 70px 32px;
  margin-top: 92px;
  margin-bottom: 92px;
}
@media screen and (max-width: 768px) {
  .p-profit__item--poikatsu {
    padding: 52px 2.2727272727% 40px;
    margin-top: 66px;
    margin-bottom: 66px;
  }
}
.p-profit__item--poikatsu::before {
  background: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/profit_icon_02.png) no-repeat center/contain;
}
.p-profit__item--poikatsu .p-profit__lead {
  width: 540px;
  margin: 0 auto 18px;
}
@media screen and (max-width: 768px) {
  .p-profit__item--poikatsu .p-profit__lead {
    width: 95.2380952381%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .p-profit__item--poikatsu .p-profit__list {
    row-gap: 20px;
  }
}
.p-profit__item--poikatsu .p-profit__notes {
  margin-top: 10px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-profit__item--poikatsu .p-profit__notes {
    margin-top: 8px;
    margin-bottom: 24px;
  }
}
.p-profit__item--tsumitate {
  background-color: #DCECFF;
  padding: 76px 70px 32px;
}
@media screen and (max-width: 768px) {
  .p-profit__item--tsumitate {
    padding: 52px 2.2727272727% 40px;
  }
}
.p-profit__item--tsumitate::before {
  background: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/profit_icon_03.png) no-repeat center/contain;
}
.p-profit__item--tsumitate .p-profit__lead {
  width: 697px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 768px) {
  .p-profit__item--tsumitate .p-profit__lead {
    width: 92.8571428571%;
    margin-bottom: 24px;
  }
}
.p-profit__item--tsumitate .p-profit__notes {
  margin-top: 10px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-profit__item--tsumitate .p-profit__notes {
    margin-top: 8px;
    margin-bottom: 24px;
  }
}
.p-profit__item__btn {
  display: block;
  width: 340px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-profit__item__btn {
    width: 80.9523809524%;
  }
}
.p-profit__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-profit__list {
    flex-direction: column;
  }
}
.p-profit__list li {
  position: relative;
}
.p-profit__icon {
  width: 82px;
  position: absolute;
  top: -13px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .p-profit__icon {
    width: 19.5238095238%;
    top: -12px;
    left: 0;
  }
}
.p-profit__notes {
  width: fit-content;
}
.p-profit__notes p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  gap: 8px;
}
.p-profit__detail {
  width: 100%;
}

/* flow - project
-----------------------------------*/
.p-flow {
  background-color: #FFEAEA;
  padding: 48px 0 64px;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding: 32px 0 40px;
  }
}
.p-flow__ttl {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #333333;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-flow__ttl {
    font-size: 7.5vw;
  }
}
.p-flow__ttl::after {
  display: block;
  content: "";
  width: 840px;
  height: 5px;
  background: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/flow_ttl_parts.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-flow__ttl::after {
    width: 80.4166666667vw;
    height: 1.0416666667vw;
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/flow_ttl_parts_sp.png);
  }
}
.p-flow__lead {
  font-size: 2rem;
  line-height: 1.45;
  text-align: center;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .p-flow__lead {
    font-size: 4.1666666667vw;
  }
}
.p-flow__head {
  width: 324px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 768px) {
  .p-flow__head {
    width: 73.6363636364%;
  }
}
.p-flow__accordion {
  width: 572px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 768px) {
  .p-flow__accordion {
    width: 100%;
    margin-bottom: 16px;
  }
}
.p-flow__accordion .c-accordion__icon::before, .p-flow__accordion .c-accordion__icon::after {
  background-color: #16549E;
}
.p-flow__accordion__ttl {
  background-color: #AFCAEB;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .p-flow__accordion__ttl {
    padding: 13px 0;
  }
}
.p-flow__accordion__ttl p {
  color: #333333;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-flow__accordion__ttl p {
    font-size: 3.75vw;
  }
}
.p-flow__accordion__inner {
  background-color: #E4EEF8;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-flow__accordion__inner {
    padding: 16px 4.5454545455%;
  }
}
.p-flow__accordion__img {
  width: 184px;
}
@media screen and (max-width: 768px) {
  .p-flow__accordion__img {
    width: 46%;
  }
}
.p-flow__accordion__txt {
  width: 268px;
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-flow__accordion__txt {
    width: 50%;
    font-size: 3.75vw;
  }
}
.p-flow__tab {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-flow__tab__ttl {
    font-size: 4.1666666667vw;
    line-height: 1.4;
  }
}
.p-flow__tab__img {
  width: 796px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-flow__tab__img {
    width: 95.4545454545%;
  }
}
.p-flow__panel {
  padding: 32px 0 40px;
}
@media screen and (max-width: 768px) {
  .p-flow__panel {
    padding: 24px 2.2727272727%;
  }
}
.p-flow__panel__step {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-flow__panel__step {
    flex-direction: column;
    row-gap: 45px;
  }
}
.p-flow__panel__step div {
  width: 280px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow__panel__step div {
    width: 100%;
    display: flex;
    gap: 3.5714285714%;
  }
}
.p-flow__panel__step div:nth-child(1)::after {
  display: block;
  content: "";
  width: 12px;
  height: 28px;
  background: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/flow_shop_icon.png) no-repeat center/contain;
  position: absolute;
  top: 72px;
  right: -16px;
  transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  .p-flow__panel__step div:nth-child(1)::after {
    width: 40px;
    height: 20px;
    background-image: url(//d1mts1n1u0bek1.cloudfront.net/std/topics/1cm/sh-benefits/images/flow_shop_icon_sp.png);
    top: auto;
    right: auto;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
  }
}
@media screen and (max-width: 768px) {
  .p-flow__panel__step figure {
    width: 50%;
  }
}
.p-flow__panel__step p {
  margin-top: 6px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-flow__panel__step p {
    margin-top: 0;
    font-size: 3.75vw;
    line-height: 1.5;
    width: 47.1428571429%;
  }
}
.p-flow__attention {
  width: 776px;
  margin: 24px auto 0;
  background-color: #E5E5E5;
  padding: 16px 38px;
}
@media screen and (max-width: 768px) {
  .p-flow__attention {
    width: 100%;
    padding: 16px 2.380952381% 20px;
  }
}
.p-flow__attention__lead {
  color: #333333;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-flow__attention__lead {
    font-size: 4.1666666667vw;
    text-align: center;
  }
}
.p-flow__attention__red {
  color: #CC0033;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 6px 0;
  border: 2px #CC0033 solid;
}
@media screen and (max-width: 768px) {
  .p-flow__attention__red {
    font-size: 4.5833333333vw;
    padding: 8px 0;
  }
}
.p-flow__attention__detail {
  display: flex;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6714285714;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-flow__attention__detail {
    gap: 2%;
    font-size: 3.25vw;
    line-height: 1.5;
  }
}

/* qa - project
-----------------------------------*/
.p-qa {
  background-color: #F7F2ED;
  padding: 48px 0 64px;
}
@media screen and (max-width: 768px) {
  .p-qa {
    padding: 24px 0 40px;
  }
}
.p-qa__inner {
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-qa__inner {
    width: 87.5%;
  }
}
.p-qa__ttl {
  font-size: 36px;
  font-weight: 700;
  color: #74380C;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .p-qa__ttl {
    font-size: 2.8rem;
    margin-bottom: 18px;
  }
}
.p-qa__box {
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 28px 26px 20px;
}
@media screen and (max-width: 768px) {
  .p-qa__box {
    padding: 16px 6.1904761905%;
  }
}
.p-qa__box p {
  line-height: 1.5;
}
.p-qa__box:not(:nth-child(1)) {
  margin-top: 16px;
}
.p-qa__q {
  display: flex;
  gap: 16px;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: #C0BFB8 1px solid;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-qa__q {
    gap: 4.347826087%;
    padding-bottom: 8px;
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.p-qa__q::before {
  display: block;
  content: "Q";
  font-size: 2.1rem;
  color: #74380C;
  font-weight: 700;
}
.p-qa__a {
  display: flex;
  gap: 16px;
  font-weight: 500;
  word-break: break-all;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-qa__a {
    gap: 4.347826087%;
  }
}
.p-qa__a span {
  display: inline-block;
}
.p-qa__a__indent {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.p-qa__a::before {
  display: block;
  content: "A";
  font-size: 2.1rem;
  color: #74380C;
  font-weight: 700;
}

/*  - project
-----------------------------------*/
.p-compare {
  margin-top: 48px;
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .p-compare {
    margin-top: 24px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-compare__inner {
    padding-left: 4.1666666667%;
    overflow-x: scroll;
  }
}
.p-compare__ttl {
  background-color: #8F5528;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  width: 840px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 768px) {
  .p-compare__ttl {
    width: 100%;
    font-size: 1.8rem;
    padding: 12px 0;
  }
}
.p-compare__notes {
  width: 840px;
  margin: 8px auto 0;
}
@media screen and (max-width: 768px) {
  .p-compare__notes {
    width: 91.6666666667%;
    margin-top: 8px;
  }
}
.p-compare__notes p {
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  gap: 8px;
  color: #504F4F;
}
@media screen and (max-width: 768px) {
  .p-compare__notes p {
    font-size: 1.56rem;
    line-height: 1.4;
  }
}
.p-compare__notes a {
  color: #0044CC;
}

.p-table {
  width: 840px;
  margin: 0 auto;
  border-collapse: collapse;
  border: #D8D8D8 1px solid;
}
@media screen and (max-width: 768px) {
  .p-table {
    width: 151.8181818182%;
  }
}
.p-table th,
.p-table td {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 4px 8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-table th,
  .p-table td {
    font-size: 1.56rem;
    padding: 4px 12px;
  }
}
.p-table th {
  line-height: 1.3571428571;

}
@media screen and (max-width: 768px) {
  .p-table th {
    line-height: 1.2179487179;
		white-space: nowrap;
  }
}
.p-table td {
  line-height: 1.2857142857;
}
@media screen and (max-width: 768px) {
  .p-table td {
    line-height: 1.2179487179;
  }
}
.p-table__head__type {
  color: #000000;
  background-color: #F2F2F2;
}
.p-table__head__platinum, .p-table__head__gold, .p-table__head__gold-u, .p-table__head__reg {
  width: 172px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-table__head__platinum, .p-table__head__gold, .p-table__head__reg {
    width: 26.9461077844%;
  }
}
.p-table__head__platinum {
  background-color: #5C5C5C;
}
.p-table__head__gold {
  background-color: #A47F44;
}
.p-table__head__gold-u {
  background-color: #E1C953;
}
.p-table__head__reg {
  background-color: #B3B3B3;
}
.p-table__data {
  border-top: #D8D8D8 1px solid;
}
.p-table__data.nowrap{
  white-space: nowrap;
	}
@media screen and (max-width: 768px) {
.p-table__data.nowrap{
  white-space: nowrap;
	}
}
.p-table__data__platinum {
  background-color: rgba(51, 51, 51, 0.16);
}
.p-table__data__platinum--light {
  background-color: rgba(216, 216, 216, 0.44);
}
.p-table__data__gold {
  background-color: #FFF5E5;
}
.p-table__data__gold--light {
  background-color: rgba(255, 245, 229, 0.5);
}
.p-table__data__gold-u {
  background-color: #F8F2D6;
}
.p-table__data__gold-u--light {
  background-color: #FFFDF1;
}
.p-table__data__reg {
  background-color: #F2F2F2;
}
.p-table__data__reg__light {
  background-color: rgba(242, 242, 242, 0.2);
}
.p-table__vertical {
  border-right: #D8D8D8 1px solid;
  width: 46px;
}
@media screen and (max-width: 768px) {
  .p-table__vertical {
    width: 26px;
    padding-right: 0;
    padding-left: 0;
  }
}
.p-table__vertical div {
  width: fit-content;
  height: max-content;
  margin-left: auto;
  margin-right: auto;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1;
}
.p-table__red {
  color: #CC0033;
  font-weight: 700;
}
.p-table sup {
  font-size: x-small;
}
.p-table__vertical-top{
	vertical-align: top;
}


/* attention - project
-----------------------------------*/
.p-attention a {
  color: #0044CC;
}
.p-attention__ttl {
  background-color: #8F5528;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  padding: 14px 0;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-attention__ttl {
    font-size: 2.4rem;
    padding: 20px 0;
  }
}
.p-attention__subttl {
  background-color: #656565;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 12px 10px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-attention__subttl {
    font-size: 1.8rem;
    padding: 12px 8px;
  }
}
.p-attention__detail {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-attention__detail {
    font-size: 1.56rem;
    line-height: 1.4;
  }
}
.p-attention__detail__ttl {
  padding: 4px 10px;
  margin-bottom: 8px;
  border: #999999 1px solid;
}
@media screen and (max-width: 768px) {
  .p-attention__detail__ttl {
    padding: 8px;
  }
}
.p-attention__detail__content li {
  display: flex;
  gap: 8px;
}
.p-attention__detail__content li span:nth-child(1) {
  flex-shrink: 0;
}
.p-attention__detail__line {
  margin-bottom: 16px;
}
.p-attention__detail__line dt {
  margin-bottom: 4px;
  border-bottom: #707070 1px solid;
}

/* floating - project
-----------------------------------*/
.p-floating {
  position: fixed;
  z-index: 2;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
}
.p-floating__inner {
  width: 840px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-floating__inner {
    width: 100%;
    padding: 0 3.3333333333%;
  }
}
.p-floating__btn {
  display: block;
  width: 412px;
  position: relative;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .p-floating__btn {
    width: 49.1071428571%;
    height: 15vw;
    font-size: 4.1666666667vw;
    text-align: center;
  }
}
.p-floating__btn::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-floating__btn::after {
    width: 10px;
    height: 10px;
    right: 5.4545454545%;
  }
}
.p-floating__btn:nth-child(1) {
  background-color: #CC0033;
  color: #fff;
  padding-left: 99px;
	display: block;
	align-items: inherit;
}
@media screen and (max-width: 768px) {
  .p-floating__btn:nth-child(1) {
    padding-left: 0;
		display: flex;
		align-items: center;
  }
}
.p-floating__btn:nth-child(2) {
  background-color: #fff;
  color: #CC0033;
  padding-left: 46px;
  border: 2px solid #CC0033;
	display: block;
	align-items: inherit;
}
@media screen and (max-width: 768px) {
  .p-floating__btn:nth-child(2) {
    padding-left: 0;
		display: flex;
		align-items: center;
  }
}
.p-floating__btn:nth-child(2)::after {
  border-color: #CC0033;
}

/* application - project
-----------------------------------*/
.p-application {
  padding: 64px 94px;
}
@media screen and (max-width: 768px) {
  .p-application {
    padding: 40px 4.5454545455%;
  }
}
.p-application__ttl {
  color: #74380C;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  width: 400px;
  margin: 0 auto 24px;
  border-top: #74380C 2px solid;
  border-bottom: #74380C 2px solid;
}
@media screen and (max-width: 768px) {
  .p-application__ttl {
    font-size: 5.2083333333vw;
    margin-bottom: 12px;
    width: 100%;
    margin-bottom: 16px;
  }
}
.p-application__btn {
  display: block;
  width: 46.7980295567%;
}
@media screen and (max-width: 768px) {
  .p-application__btn {
    width: 95%;
  }
}
.p-application__btn--center {
  margin: 0 auto;
}
.p-application__btnarea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 24px;
  /* margin-bottom: 48px; */
}
.p-application__btnarea2 {
	display: flex;
			justify-content: center;
			flex-wrap: wrap;
			row-gap: 24px;
			margin-top: 24px;
			margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-application__btnarea {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
    margin-bottom: 40px;
  }
}

/* entry - project
-----------------------------------*/
.p-entry {
  padding: 64px 80px;
}
@media screen and (max-width: 768px) {
  .p-entry {
    padding: 40px 4.5454545455%;
  }
}
.p-entry__head {
  font-size: 2.4rem;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto 25px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-entry__head {
    font-size: 4.5833333333vw;
    line-height: 1.4545454545;
    margin-bottom: 24px;
  }
}
.p-entry__head::before {
  display: block;
  content: "";
  width: 3px;
  height: 35px;
  border-left: 3px solid #333333;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%) rotate(-30deg);
}
@media screen and (max-width: 768px) {
  .p-entry__head::before {
    width: 2px;
    height: 12.0833333333vw;
    border-width: 2px;
    left: 0;
    transform: translateY(-50%) rotate(-24deg);
  }
}
.p-entry__head::after {
  display: block;
  content: "";
  width: 3px;
  height: 35px;
  border-left: 3px solid #333333;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 768px) {
  .p-entry__head::after {
    width: 2px;
    height: 12.0833333333vw;
    border-width: 2px;
    right: 0;
    transform: translateY(-50%) rotate(24deg);
  }
}
.p-entry__ttl {
  color: #74380C;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 12px 0;
  width: 402px;
  margin: 0 auto 24px;
  border-top: #74380C 2px solid;
  border-bottom: #74380C 2px solid;
}
@media screen and (max-width: 768px) {
  .p-entry__ttl {
    font-size: 4.1666666667vw;
    margin-bottom: 12px;
    width: 100%;
    margin-bottom: 16px;
  }
}
.p-entry__btnarea {
  display: flex;
  justify-content: center;
  row-gap: 1.7142857142857144vw;
	column-gap: 52px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-entry__btnarea {
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
  }
}
.p-entry__btn {
  display: block;
  width: 45.2380952381%;
}
@media screen and (max-width: 768px) {
  .p-entry__btn {
    width: 95%;
  }
}
/* .p-entry__btn--margin {
  margin-right: 20px;
} */
@media screen and (max-width: 768px) {
  .p-entry__btn--margin {
    margin-left: 0;
    margin-right: 0;
  }
}

/* inquiry - project
-----------------------------------*/
.p-inquiry {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-inquiry {
    padding: 32px 0;
  }
}
.p-inquiry__inner {
  width: 740px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 72px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__inner {
    width: 100%;
    flex-direction: column;
    row-gap: 64px;
  }
}
.p-inquiry__item {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-inquiry__item {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .p-inquiry__item:first-child::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    border-bottom: #7C6336 1px solid;
    position: absolute;
    bottom: -32px;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-inquiry__item dt, .p-inquiry__item dd {
    width: 90.9090909091%;
    margin: 0 auto;
  }
}
.p-inquiry__item p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  padding: 0.5em 1em;
}
@media screen and (max-width: 768px) {
  .p-inquiry__item p {
    font-size: 1.7rem;
    padding: 8px 4.5454545455%;
  }
}
.p-inquiry__item p:not(:last-child) {
  border-bottom: #D7D0C2 1px solid;
}
.p-inquiry__item span {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .p-inquiry__item span {
    font-size: 1.56rem;
    margin-top: 5px;
    line-height: 1.5;
  }
}
.p-inquiry__ttl {
  font-size: 1.6rem;
  font-weight: 600;
  color: #7C6336;
}
@media screen and (max-width: 768px) {
  .p-inquiry__ttl {
    font-size: 1.8rem;
  }
}

/* common - utility
-------------------------------*/
.u-common {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  letter-spacing: 0;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.u-common img {
  width: 100%;
}
.u-common a {
  color: #221CCB;
}
.u-common a:hover {
  opacity: 0.6;
}
.u-common button {
  font-family: "Noto Sans JP", sans-serif;
}
.u-common button:hover {
  opacity: 0.6;
}

.u-body {
  min-width: 900px;
}
@media screen and (max-width: 768px) {
  .u-body {
    min-width: 100%;
  }
}

/* margin-center - utility
-----------------------------------*/
.u-m-center {
  margin-left: auto;
  margin-right: auto;
}

/* 241128　追加
-------------------------------*/
.u-fw-nomal {
  font-weight: normal;
}
.p-inquiry__inner--1col {
  display: block;
}
.p-entry__noticeList {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-entry__noticeList {
    font-size: 3.555555vw;
  }
}

/* 241129　追加
-------------------------------*/
.p-cautionArea__inner {
  max-width: 900px;
  width: 100%;
  margin: 12px auto 24px;
  text-align: left;
}
.p-cautionArea__inner .p-cautionTxt {
  margin: 0 8px;
  padding: 16px;
  border: 1px solid #CC0033;
  color: #333;
  line-height: 1.5;
}
.p-cautionArea__inner .p-cautionTxt a {
  color: #CC0033;
}
@media screen and (max-width: 768px) {
  .p-cautionArea__inner {
    margin: 12px auto 20px;
  }
  .p-cautionArea__inner .p-cautionTxt {
    margin: 0px 16px;
  }
}

/* 241218 追加 */
.u-c-red {
  color: #CC0033!important;
}
.u-fw-bold {
  font-weight: bold;
}
.u-bg-white {
  background-color: #fff;
}
.u-mt-0 {
  margin-top: 0;
}
.u-mb-12 {
  margin-bottom: 12px!important;
}
.u-mb-20 {
  margin-bottom: 20px!important;
}
.p-cautionArea__inner02 {
  max-width: 720px;
  margin: 32px auto 0;
  font-weight: normal;
}
#attention .p-cautionArea__inner p {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-cautionArea__inner02 {
    margin: 3.888888vw auto 0;
  }
  .p-cautionArea__inner02 .p-cautionTxt {
    margin: 0px;
    font-size: 3.333333vw;
  }
  #attention .p-cautionArea__inner p {
    font-size: 1.6rem;
    line-height: 1.3461538462;
  }
}

/* 250331追加 */
.notes__pd-l{
  padding-left: 26px;
}
@media screen and (max-width: 768px) {
  .notes__pd-l {
    padding-left: 24px;
  }
}

.notes__pd-t{
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .notes__pd-t {
    padding-top: 8px;
  }
}

.p-reward__hdg02 {
  align-items: center;
  }

.p-reward__hdg__ttl01 .p-reward__hdg__img{
    width: 433px;
  }
@media screen and (max-width: 768px) {
    .p-reward__hdg__ttl01 .p-reward__hdg__img {
      width: 100%;
      display: block;
    }
  }

.p-reward__hdg__txt span{
  font-size: 4rem;
}

.p-reward__hdg.p-reward__merit2{
  align-items: center;
}

.p-reward__hdg__ttl02 .p-reward__hdg__img {
  width: 496px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg__ttl02 .p-reward__hdg__img {
    width: 100%;
  }
}

.p-reward__hdg__txt .c-accordion__icon{
  top: 50%;
  right: 3%;
  bottom: 50%;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg__txt .c-accordion__icon{
    right: 8%;
  }
}

.p-reward__hdg02{
  margin: 0 auto 0 10px;
}

.c-accordion__icon::after{
  opacity: 1;
  transform: rotate(90deg);
  transition: 0.3s;
}

.c-accordion__icon.-active::after{
  opacity: 0;
  transform: rotate(180deg);
}

.c-accordion__icon.-active::before{
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .p-reward__hdg__txt .c-accordion__icon::after, .p-reward__hdg__txt .c-accordion__icon::before{
    width: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .p-reward__icon__plus::before{
    width: 12.916666666666668vw;
  }
}

@media screen and (max-width: 768px) {
  .p-reward__icon__plus::before{
    width: 12.916666666666668vw;
  }
}

@media screen and (max-width: 768px) {
  .p-reward__merit__txt{
    font-size: 3.9vw;
  }
}

.p-reward__container{
  padding: 0;
}

.p-reward__hdg02{
  margin: 0 auto ;
  padding: 30px 78px 27px 36px;
}
@media screen and (max-width: 768px) {
  .p-reward__hdg02{
    margin: 0 auto;
    padding: 7.916666666666666vw 11.458333333333332vw 7.916666666666666vw 3.3333333333333335vw;
    width: 83.33333333333334vw;
  }
}

.c-accordion__content{
  width: 620px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .c-accordion__content{
    width: 79.16666666666666vw;
    margin: 0 auto 8.333333333333332vw;
  } 
}

.p-reward__merit__txt{
  margin-top: 0;
}

.c-accordion__content.c-accordion-blue{
  width: 100%;
}

/* 20250601追加
--------------------------------------------------------- */
.l-main .cpEndBox {
  padding: 40px 20px;
  text-align: center;
  background-color: #CC0033;
  max-width: 1400px;
  margin: 0 auto;
}
.l-main .cpEndBox p {
  color: #ffffff;
  font-size: 23px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .l-main .cpEndBox {
    padding: 6.083333vw 3.333333vw;
  }
  .l-main .cpEndBox p {
  font-size: 5.3vw;
  line-height: 1.5;
  }
}