/* CSS Document */
@charset "UTF-8";
* {
  box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333;
  position: relative;
  font-size: 14px;
}
a {
  color: #e40177;
}
a:hover{
 border-bottom: none;
  text-decoration: none;
}
a[target="_blank"]::after {
  color: #e40177;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f35d';
  font-size: 10px;
  padding-left: 0.5em;
}
a[href*="tel:"] {
  cursor: pointer;
  text-decoration: none;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
}
.anchor {
  display: block;
  margin-top: -51px;
  padding-top: 1px;
}
.anchor#cont01,.anchor#cont04,.anchor#cont05 {
  margin-top: -180px;
  padding-top: 130px;
}

/* レスポンシブ */
.sp { display: block; }
.pc { display: none; }
section:last-child { margin-bottom: 0; }
.container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .sp { display: none; }
  .pc { display: block; }
  section { margin: 0 auto; }
  .container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 30px;
  }
  .cont-inner { padding: 40px; }
}
@media screen and (min-width: 1200px) {
  .container { max-width: 1080px; }
}
/* レスポンシブ */

/* 共通 */
h1 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
}
h2 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.3;
  text-align: center;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
h4 {
  font-size: 20px;
  font-weight: 600;
}
p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
p:last-of-type {
  margin-bottom: 0;
}
p.text {
  text-align: left;
  text-indent: 1em;
}
ul.note {
  font-size: 13px;
  padding-left: 1em;
  margin-top: 10px;
}
ul.note li {
  text-indent: -1em;
  line-height: 1.2;
}
ul.note li:not(:last-of-type) {
  margin-bottom: 4px;
}
.tal { text-align: left !important; justify-content: flex-start !important; }
.tac { text-align: center !important; justify-content: center !important; }
.mb-0 { margin-bottom: 0 !important; }

@media screen and (min-width:768px) {
  h2 { font-size: 30px; }
  h3 { font-size: 25px; }
  h4 { font-size: 25px; }
  p { font-size: 16px; }
}
/* 共通 */

/* flex */
.flex-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.flex-box .flex-content {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width:768px) {
  .flex-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .flex-box .flex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* flex */

/* header */
header {
  width: 100%;
  height: 70px;
  padding: 0 10px;
  z-index: 10;
  background: #FFF;
  border-bottom: 1px solid #e40177;
}
header .header_inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
header h1 img {
  width: 100%;
  max-width: 170px;
}
a.button {
  width: auto;
  display: inline-block;
  line-height: 1;
  margin: auto 0 auto auto;
  padding: 8px 5px;
  text-align: center;
  color: #e40177;
  text-decoration: none;
  font-size: 12px;
}

@media screen and (min-width: 767px) {
  header { height: 100px; }
  header .header_inner { max-width: 900px; }
  header h1 img {
    width: 100%;
    max-width: 365px;
  }
  a.button { font-size: 18px; padding: 8px 15px; }
  a.button:after { font-size: 10px; }

}
@media screen and (min-width: 1200px) {
  header .header_inner { max-width: 1160px; }
}
/* header */

/* main */
main { margin-top: 20px; }

@media screen and (min-width: 767px) {
  main { margin-top: 30px; }
}
/* main */

/*pagetop*/
#pagetop {
  width: 60px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #6a3906;
  opacity: 0.6;
  border-radius: 10px;
  margin-bottom: 10px;
  z-index: 10;
  transition: unset;
}
 /* pagetop - ^マーク */
#pagetop::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 40px;
  height: 30px;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  padding: 5px 0;
  text-align: center;
}
/*pagetop*/

/* footer */
footer {
  width: 100%;
  position: relative;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  padding: 0;
}
footer .footer_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 15px;
  gap: 0 6px;
}
footer .footer_info .logo_corp img {
  width: 100%;
  max-width: 200px;
}
footer .footer_info a, .footer_info a::after {
  text-decoration: none;
  color: #555;
}
footer a.link_agr {
  text-decoration: underline;
  font-size: 12px;
}
footer p.copyright {
  display: block;
  width: 100%;
  padding: 10px;
  background: #e40177;
  font-size: 12px;
  color: #fff;
  letter-spacing: .05em;
  padding-left: calc(10px + .05em);
  margin-bottom: 0;
}
@media screen and (min-width:767px) {
  footer .footer_info {
    flex-direction: row;
    padding: 10px 30px;
    gap: 0 20px;
  }
  footer .footer_info .logo_corp {
    padding-right: 10px;
  }
  footer .footer_info .logo_corp img {
    width: 100%;
    max-width: 200px;
  }
  footer a.link_agr { font-size: 14px; }
}
/* footer */

@media screen and (min-width:767px) {
  #pagetop {
    width: 80px;
    height: 60px;
  }
  #pagetop::before {
    font-size: 40px;
    height: 40px;
    padding: 0;
  }
  #pagetop::after {
    content: 'TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    bottom: 8px;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
}
/*pagetop*/


/** index.html **/

/* mainvisual slider */
#mainvisual {
  max-width: 560px;
  margin: 0 auto 50px;
  padding: 0 20px;
  position: relative;
}
.swiper {
  width: 100%;
  max-width: 580px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border: 10px solid #e40177;
  border-radius: 20px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* spiwer-button */
.swiper-button-prev,.swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #e40177;
  color: #fff;
}
.swiper-button-prev {
  left: 5px;
}
.swiper-button-next {
  right: 5px;
}
.swiper-button-prev:after,.swiper-button-next:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 38px;
  color: #fff;
}
.swiper-button-prev:after {
  content: '\f104';
  padding-right: 4px;
}
.swiper-button-next:after {
  content: '\f105';
  padding-left: 4px;
}

.swiper-pagination {
  bottom: -20px;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

@media screen and (min-width: 767px) {
  #mainvisual {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 30px;
  }
  .swiper {
    max-width: 850px;
  }
  /* spiwer-button */
  .swiper-button-prev,.swiper-button-next {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
  .swiper-button-prev:after,.swiper-button-next:after {
    font-size: 50px;
  }
  .swiper-button-prev {
    left: 5px;
  }
  .swiper-button-next {
    right: 5px;
  }
}
@media screen and (min-width: 1200px) {
  #mainvisual {
    max-width: 1160px;
    margin: 0 auto 60px;
  }
  .swiper {
    max-width: 1100px;
  }
}
/* mainvisual slider */

/* melit */
#merit {
  width: 100%;
  background-color: #ffebf5;
  margin: 60px 0;
  padding: 0 0 1px;
}
#merit .container {
  max-width: none;
  background: transparent;
}
#merit .content {
  max-width: 500px;
  border-radius: 20px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
}
#merit img {
  width: 100%;
  max-width: 240px;
  margin-bottom: 10px;
}
#merit .flex-box {
  justify-content: center;
}
#merit .flex-box .flex-content {
  width: auto;
}
#merit .f-text {
  align-items: flex-start;
  text-align: left;
  padding: 0 5px;
}

#merit span.icon-card {
  content: '';
  background: url("../img/icon-card.png") no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 25px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
#merit p:has(span.icon-card) {
  padding-left: 35px;
  text-indent: -35px;
}
#merit p span.underline {
  display: inline-block;
  font-size: 140%;
  font-weight: 600;
  background: linear-gradient(transparent 75%, #e6d728 25%);
  padding: 0 3px 0 38px;
}
/* merit - m_title */
#merit .m_title {
  background: #e40177;
  color: #fff;
  position: relative;
  display: block;
  width: 100%;
  padding: 4px 0;
  margin-bottom: 50px;
}
#merit .m_title::before,#merit .m_title::after {
  content: '';
  position: absolute;
  width: 100%;
}
#merit .m_title::before {
  top: 4px;
  border-top: 6px solid #fff;
}
#merit .m_title::after {
  bottom: 4px;
  border-bottom: 6px solid #fff;
}
#merit .m_title h2 {
  position: relative;
  margin-bottom: 0.2rem;
  line-height: 1.2;
  margin: 0 auto;
  padding: 0.75em 0;
  z-index: 1;
  display: block;
  max-width: 500px;
}
#merit .m_title h2::before {
  content: '';
  width: 80px;
  height: 52px;
  position: absolute;
  top: -28px;
  left: 10px;
  z-index: 2;
}
#merit .m_title.happy h2::before { background: url("../img/ribbon_01.png") no-repeat center/contain; }
#merit .m_title.easy h2::before { background: url("../img/ribbon_02.png") no-repeat center/contain; }
#merit .m_title.gift h2::before { background: url("../img/ribbon_03.png") no-repeat center/contain; }
/* merit - headline */
#merit h3.headline01 {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 auto 30px;
  padding: 10px;
  text-align: center;
  color: #333;
  background: #fffcdb;
  border: solid 3px #444;
  border-radius: 8px;
}
#merit h3.headline01::before,#merit h3.headline01:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f0d7";
  font-weight: 600;
  font-size: 30px;
  position: absolute;
  left: calc(50% - 9.375px);
}
#merit h3.headline01::before {
  color: #fffcdb;
  bottom: -19px;
  z-index: 2;
}
#merit h3.headline01:after {
  color: #444;
  bottom: -23px;
  z-index: 1;
}
#merit h4.headline02 img {
  font-size: 14px;
  display: inline-block;
  width: 40px;
  margin: 0;
  padding-right: 4px;
  vertical-align: text-bottom;
}
#merit h4.headline03 {
  display: block;
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 10px 0;
  border-top: 2px solid #444;
  border-bottom: 2px solid #444;
  margin: 0 auto 20px;
}
#merit h4.headline03 span {
  font-size: 16px;
  font-weight: 400;
  display: block;
}

@media screen and (min-width: 767px) {
  #merit .content { 
    max-width: 820px;
    padding: 30px;
  }
  #merit img { max-width: 300px; }

  #merit .m_title h2 { 
    max-width: 820px;
  }
  #merit .m_title h2::before {
    width: 100px;
    height: 68px;
  }
  #merit span.icon-card {
    width: 40px;
    height: 28px;
  }
  #merit p:has(span.icon-card) {
    padding-left: 45px;
    text-indent: -45px;
  }
  #merit p span.underline {
    padding-left: 48px;
  }

  #merit h4.headline02 img {
    width: 60px;
  }
  #merit .flex-box { align-items: center; }
  
  #merit .flex-box .f-text { max-width: 600px; }
  #merit .flex-box .f-img { width: 230px; }
  #merit .flex-box.fbox01, #merit .flex-box.fbox02 {
    margin: 0 10px;
    flex-wrap: nowrap;
  }
  #merit .flex-box.fbox01 {
    flex-direction: row;
  }
  #merit .flex-box.fbox02 {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1200px) {
  #merit .flex-box.fbox01, #merit .flex-box.fbox02 {
    margin: 0 40px;
  }
  #merit .flex-box .f-img { width: 300px; }
  #merit .content, #merit .m_title h2 {
    max-width: 1080px;
  }
  #merit .m_title h2::before {
    width: 150px;
    height: 98px;
    top: -35px;
  }
}
/* merit */

/* cardbalance */
#cardbalance h2 {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 auto 30px;
  padding: 10px;
  text-align: center;
  color: #FFF;
  font-weight: 400;
  background: #e40177;
  border-radius: 8px;
}
#cardbalance h2::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  content: "\f0d7";
  font-size: 30px;
  position: absolute;
  left: calc(50% - 9.375px);
  color: #e40177;
  bottom: -20px;
  z-index: 2;
}
#cardbalance .flex-box {
  margin-top: 20px;
}

#cardbalance .check_step {
  background: #f8f4cb;
  padding: 14px;
  border-radius: 8px;
  grid-gap: 30px;
}
#cardbalance .check_step dl {
  text-align: left;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#cardbalance .check_step dl dt {
  align-items: flex-start;
  position: relative;
}
#cardbalance .check_step dl dt img {
  width: 42px;
}
#cardbalance .check_step dl:not(:last-of-type) dt::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  width: 40px;
  text-align: center;
  content: "\f0d7";
  display: block;
  color: #e40177;
  font-size: 25px;
  bottom: -35px; 
}
#cardbalance .check_step dl dd {
  width: 100%;
  line-height: 1.2;
}
@media screen and (min-width: 767px) {
  #cardbalance .flex-box {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
  }
  #cardbalance .check_step {
    width: 40%;
    min-width: 350px; 
  }

  #cardbalance .card_back {
    width: 60%;
    max-width: 600px;
  }
  #cardbalance .card_back img {
    width: 100%;
  }

}
/* cardbalance */

/* info */
#info {
  width: 100%;
  background-color: #ffebf5;
  margin: 60px 0 0;
  padding: 60px 0;
}
#info .notice {
  border: 1px solid #aaa;
  background: #fff;
  margin-top: 10px;
  padding: 1em;
}
#info .notice ul {
  padding-left: 1em;
}
#info .notice ul li {
  list-style: "●";
  padding-left: 2px;
  line-height: 1.4;
}
#info .notice ul li:not(:last-of-type) {
  margin-bottom: 4px;
}

#info .contact {
  border: 1px solid #aaa;
  background: #fff;
  margin-top: 30px;
  text-align: center;
}
#info .contact h3 {
  color: #fff;
  background: #e40177;
  padding: 8px 0;
  font-weight: 400;
}
#info .contact p {
  display: block;
  padding: 0.5em 1em;

}
#info .contact p span.tel {
  font-size: 30px;
  font-weight: 600;
    vertical-align: text-bottom;

}
#info .contact p span.tel::before {
  content: '';
  background: url("../img/icon-freedial.png") no-repeat left/contain;
  width: 48px;
  height: 26px;
  display: inline-block;
}

#info p.note {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
}
/* info */
/** index.html **/

/** agreement **/
#agreement section {
  margin-bottom: 40px;
}
#agreement h2 {
  width: 100%;
  margin-bottom: 1em;
}
#agreement h3 {
  border-left: 6px solid #e40177;
  border-bottom: 0;
  margin-bottom: 0;
  padding: 0 0 0 0.5em;
  margin: 0.5em 0;
}

#agreement #info {
  margin-bottom: 0;
}
#agreement #info .contact {
  margin: 0 auto;
  max-width: 600px;
}
#agreement #info .contact h3 {
  border: none;
  font-weight: 600;
  background: inherit;
  color: #333;
  padding: 0;
}
#agreement #info .contact p {
  display: inline-block;
  text-align: left;
  padding: 0 1em 1em;
  margin: 0 auto;
}
#agreement #info .contact p b {
  font-weight: 600;
  padding-right: 0.5em;
}

/*agreement list*/
#agreement dl, #agreement ol {
  margin-bottom: 1.5em;
}
#agreement dt, #agreement dd, #agreement li {
  font-size: 14px;
  line-height: 1.8;
}
#agreement dt {
  font-weight: 600;
}
#agreement dd {
  margin-bottom: 1em;
}
#agreement dd:last-of-type, #agreement li:last-of-type {
  margin-bottom: 0;
}
#agreement ol {
  padding-left: 1.5em;
}
#agreement ol li {
  list-style: decimal;
  margin-bottom: 0.5em;
}
#agreement ul.circle_list li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0;
}

@media screen and (min-width:767px) {
  #agreement dt, #agreement dd, #agreement li {
    font-size: 16px;
  }
}
/*agreement list*/

/** agreement **/


/* 印刷設定 */
@media print {
    body { width: 767px !important; }
}
