@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@600&display=swap");

html {
  font-size: 10px;
}

a{
  color: #ea6094;
}


body {
  font-size: 14px;
  color: #403c3c;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.inner {
  max-width: 1030px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 800px) {
  .inner {
    max-width: 430px;
  }
}

@media screen and (max-width: 800px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 801px) {
  .sp-only {
    display: none;
  }
}

.l-header {
  padding: 12px 10px 10px;
}

.l-header__logo {
  max-width: 566px;
  margin: 0 auto;
}

.l-footer {
  background-color: #ea6094;
  color: #fff;
  padding: 80px 0 40px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .l-footer {
    padding: 30px 0 20px;
  }
}

.l-footer__logo {
  max-width: 256px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 800px) {
  .l-footer__logo {
    max-width: 160px;
    margin-bottom: 30px;
  }
}

.l-footer__add {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .l-footer__add {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

.l-footer__nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
}

@media screen and (max-width: 800px) {
  .l-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
}

.l-footer__copy small {
  font-size: 1.2rem;
}

@media screen and (max-width: 800px) {
  .l-footer__copy small {
    font-size: 1rem;
  }
}

.btn-cv {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  height: 100px;
  padding: 10px 70px;
  border-radius: 50px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  background-color: #4dd393;
  border: 3px solid #403c3c;
  position: relative;
  box-shadow: 10px 10px 0 #403c3c;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s;
  top: 0px;
  left: 0px;
}

@media screen and (max-width: 800px) {
  .btn-cv {
    width: calc(100% - 4px);
    box-shadow: 4px 4px 0 #403c3c;
    padding: 15px 40px;
    height: auto;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.btn-cv--orange {
  background-color: #ffa41c;
}

.btn-cv__catch {
  position: absolute;
  left: 30px;
  top: -22px;
  max-width: 184px;
}

.btn-cv::before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 2.4rem;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 800px) {
  .btn-cv::before {
    font-size: 1.6rem;
    right: 20px;
  }
}

.btn-cv:hover {
  top: 5px;
  left: 5px;
  box-shadow: 5px 5px 0 #403c3c;
}

@media screen and (max-width: 800px) {
  .btn-cv:hover {
    top: 4px;
    left: 4px;
    box-sizing: 0 0 0 #403c3c;
  }
}

.btn-mote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 60px;
  border: 2px solid #39b97c;
  background-color: #fff;
  padding: 10px 50px;
  position: relative;
  font-weight: bold;
  color: #39b97c;
  font-size: 1.8rem;
  border-radius: 40px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s, background-color 0.3s;
}

@media screen and (max-width: 800px) {
  .btn-mote {
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
    padding: 10px 40px;
  }
}

.btn-mote::before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 800px) {
  .btn-mote::before {
    right: 20px;
  }
}

.btn-mote:hover {
  background-color: #39b97c;
  color: #fff;
}

.btn-footer {
  width: 300px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #ea6094;
  font-size: 2rem;
  font-weight: bold;
  padding: 10px 20px 10px 10px;
  border-radius: 40px;
  position: relative;
}

@media screen and (max-width: 800px) {
  .btn-footer {
    width: 250px;
    height: 50px;
    font-size: 1.6rem;
    padding: 10px;
  }
}

.btn-footer::before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 800px) {
  .btn-footer::before {
    right: 20px;
  }
}

.btn-footer--blank::before {
  content: "\f08e";
}

.notes-list__item {
  padding-left: 2.5em;
  position: relative;
}

.notes-list__item span {
  position: absolute;
  left: 0;
  top: 0;
}

.dots-list__item {
  padding-left: 1.5em;
  position: relative;
}

.dots-list__item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.fixed-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
}

.fixed-btn .btn-cv {
  font-size: 2rem;
}

.fixed-btn .btn-cv::before {
  right: 27px;
  font-size: 2rem;
}

.fv img {
  width: 100%;
}

.mobile-wrap {
  background: repeating-linear-gradient(-45deg, #fff, #fff 8px, #f2dee7 8px, #f2dee7 20px);
}

.limit {
  padding: 50px 0 30px 0px;
}

@media screen and (max-width: 800px) {
  .limit {
    padding: 35px 0 30px;
  }
}

.limit-ttl-wrap {
  position: relative;
  border-radius: 16px;
  border: 4px solid #403c3c;
  background-color: #fff;
  padding: 20px 30px 12px;
  width: fit-content;
  margin: 0 auto 30px;
}

@media screen and (max-width: 800px) {
  .limit-ttl-wrap {
    width: 100%;
    max-width: 345px;
    border-radius: 10px;
    border: 2px solid #403c3c;
    padding: 20px 5px 15px;
    margin-bottom: 20px;
  }
}

.limit-ttl-wrap p {
  font-size: 2.3rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  gap: 5px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .limit-ttl-wrap p {
    font-size: 1.6rem;
    gap: 3px;
  }
}

.limit-ttl-wrap p span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 35px;
  background-color: #403c3c;
  border-radius: 5px;
  position: relative;
}

@media screen and (max-width: 800px) {
  .limit-ttl-wrap p span {
    width: 28px;
    height: 28px;
  }
}

.limit-ttl-wrap p span::before {
  content: "";
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  left: -4px;
  top: -4px;
  background-color: #fff;
  position: absolute;
  z-index: -1;
  border-radius: 8px;
}

@media screen and (max-width: 800px) {
  .limit-ttl-wrap p span::before {
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    left: -2px;
    top: -2px;
  }
}

.limit-ttl {
  font-size: 2.3rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media screen and (max-width: 800px) {
  .limit-ttl {
    font-size: 1.5rem;
  }
}

.limit-ttl__num {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 1.3;
  margin: 0 0.1em;
  letter-spacing: 0.05em;
  transform: scaleX(1.1);
}

@media screen and (max-width: 800px) {
  .limit-ttl__num {
    font-size: 2.3rem;
  }
}

.limit-ttl__num--l {
  font-size: 5rem;
  letter-spacing: 0.1em;
  margin-right: 0;
  line-height: 1.2;
}

@media screen and (max-width: 800px) {
  .limit-ttl__num--l {
    font-size: 3.2rem;
  }
}

.limit-ttl__week {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding-bottom: 2px;
  padding-left: 1px;
  border-radius: 50%;
  background-color: #403c3c;
  color: #fff;
  font-size: 1.9rem;
  margin: 0 0.1em 0.2em;
}

@media screen and (max-width: 800px) {
  .limit-ttl__week {
    width: 21px;
    height: 21px;
    font-size: 1.3rem;
    padding-bottom: 0;
  }
}

.limit .u-tac {
  font-size: 2.2rem;
  font-weight: bold;
  /* text-shadow: 3px 3px 2px #fff, -3px -3px 2px #fff, -3px 3px 2px #fff, 3px -3px 2px #fff, 0px 3px 2px #fff, -3px 2px #fff, -3px 0 2px #fff, 3px 0 2px #fff; */
}

@media screen and (max-width: 800px) {
  .limit .u-tac {
    font-size: 1.5rem;
  }
}

.column3 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.column3__item {
  max-width: 300px;
  flex: 1;
}

.data {
  padding: 0px 0px 0px 20px;
  margin-top: 0px;
}

@media screen and (max-width: 800px) {
  .data {
    padding: 10px 0 20px;
  }
}

.data .ttl {
  max-width: 554px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 800px) {
  .data .ttl {
    width: calc(100% - 60px);
    margin: 0 auto 20px;
  }
}

.data .column3 {
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .data .column3 {
    gap: 7px;
    margin-bottom: 15px;
  }
}

.data-cont {
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .data-cont {
    margin-bottom: 5px;
  }
}

.data-waribiki {
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .data-waribiki {
    margin-bottom: 8px;
  }
}

.data-waribiki+.u-tac {
  margin-bottom: 60px;
}

@media screen and (max-width: 800px) {
  .data-waribiki+.u-tac {
    margin-bottom: 10px;
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
}

.cv {
  background: url(../img/cv-bg.png) no-repeat center top/cover;
  padding: 65px 0 70px;
}

@media screen and (max-width: 800px) {
  .cv {
    background-image: url(../img/cv-bg_sp.png);
    padding: 30px 0 35px;
  }
}

.cv .ttl {
  max-width: 752px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 800px) {
  .cv .ttl {
    margin-bottom: 5px;
  }
}

.option {
  padding: 56px 0 10px;
}

@media screen and (max-width: 800px) {
  .option {
    padding-top: 10px;
  }
}

.option .ttl {
  max-width: 554px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 800px) {
  .option .ttl {
    width: calc(100% - 60px);
    margin-bottom: 20px;
  }
}

.option .column3 {
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .option .column3 {
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    gap: 20px;
    margin: 0 auto 10px;
  }
}

.option .column3+.u-tac {
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .option .column3+.u-tac {
    margin-bottom: 20px;
  }
}

.option .notes {
  padding: 30px 15px 50px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.option .notes li {
  font-size: 12px;
}

@media screen and (max-width: 800px) {
  .option .notes {
    padding: 15px;
  }
}

.option .notes__inner {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.option .notes__inner .notes-list {
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .option .notes__inner .notes-list {
    margin-bottom: 15px;
  }
}

.option .notes__inner .dots-list {
  padding-left: 1em;
}

.option .smartphone {
  position: relative;
  z-index: 1;
  padding-bottom: 35px;
}

@media screen and (max-width: 800px) {
  .option .smartphone {
    padding: 0 15px 20px;
  }
}

.option .smartphone::after {
  content: "";
  width: 100%;
  height: calc(100% - 35px);
  background-color: #f2dee7;
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .option .smartphone::after {
    height: calc(100% - 20px);
    border-radius: 10px;
  }
}

.option .smartphone .ttl {
  max-width: 758px;
}

.option .smartphone .item {
  max-width: 825px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 800px) {
  .option .smartphone .item {
    max-width: 270px;
    margin-bottom: 15px;
  }
}

.option .smartphone .dots-list {
  max-width: 850px;
  margin: 0 auto;
}

.internet-wrap {
  background-color: #f4e29e;
  background-image: radial-gradient(circle, #ffffff 4px, transparent 4px), radial-gradient(circle, #ffffff 4px, transparent 4px);
  background-position: 10px 0, 18px 16px;
  background-size: 16px 32px;
}

.internet {
  padding: 55px 0 120px;
}

@media screen and (max-width: 800px) {
  .internet {
    padding: 30px 0 60px;
  }
}

.internet .bg-gradation {
  padding-bottom: 55px;
  margin-bottom: 5px;
  background: rgb(255, 164, 28);
  background: linear-gradient(180deg, rgba(255, 164, 28, 0) 0%, rgb(255, 164, 28) 50%, rgba(255, 164, 28, 0) 100%);
}

@media screen and (max-width: 800px) {
  .internet .bg-gradation {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.internet .bg-gradation .ttl {
  max-width: 667px;
  margin: 0 auto 10px;
}

@media screen and (max-width: 800px) {
  .internet .bg-gradation .ttl {
    width: calc(100% - 20px);
  }
}

.internet .bg-gradation .img {
  max-width: 575px;
  margin: 0 auto 20px;
}

.internet .bg-gradation .bg-white {
  max-width: 650px;
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .internet .bg-gradation .bg-white {
    padding: 15px;
  }
}

.internet .bg-gradation .bg-white .notes {
  padding-left: 1.2em;
  position: relative;
}

.internet .bg-gradation .bg-white .notes::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.internet__info {
  background-color: #f8f3e9;
  position: relative;
  border-radius: 20px;
  padding: 50px 50px 40px;
}

@media screen and (max-width: 800px) {
  .internet__info {
    padding: 30px 15px;
  }
}

.internet__info__ttl {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  background-color: #403c3c;
  text-align: center;
  border-radius: 60px;
  position: absolute;
  width: fit-content;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: 5px 40px 10px;
  line-height: 1.2;
  white-space: nowrap;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .internet__info__ttl {
    font-size: min(4.5vw, 18px);
    padding: 5px 20px 7px;
  }
}

.internet__info__ttl::after {
  content: "\f04b";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  color: #403c3c;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 60%) rotate(90deg);
  z-index: -1;
}

.internet__info.kouji {
  max-width: 900px;
  margin: 0 auto 60px;
}

@media screen and (max-width: 800px) {
  .internet__info.kouji {
    margin-bottom: 44px;
  }
}

.internet__info.kouji .img {
  max-width: 742px;
  margin: 0 0 30px auto;
}

@media screen and (max-width: 800px) {
  .internet__info.kouji .img {
    margin: 0 auto 15px;
  }
}

.internet__info.cashback {
  max-width: 900px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 800px) {
  .internet__info.cashback {
    margin-bottom: 20px;
  }
}

.internet__info.cashback .txt {
  width: fit-content;
  margin: 0 auto;
}

.internet__info.cashback .notes-txt {
  padding-left: 1.5em;
  position: relative;
}

.internet__info.cashback .notes-txt::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.internet__info.cashback .cashback1 {
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .internet__info.cashback .cashback1 {
    margin-bottom: 20px;
  }
}

.internet__info.cashback .cashback1 .ttl {
  max-width: 636px;
  margin: 0 auto;
}

.internet__info.cashback .cashback1 .dots-list {
  margin-bottom: 10px;
}

.internet__info.cashback .cashback2 {
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .internet__info.cashback .cashback2 {
    margin-bottom: 20px;
  }
}

.internet__info.cashback .cashback2 .ttl {
  max-width: 545px;
  margin: 0 auto;
}

.internet__info.cashback .bg-white {
  padding: 15px 25px;
  border-radius: 5px;
}

@media screen and (max-width: 800px) {
  .internet__info.cashback .bg-white {
    padding: 15px 10px;
  }
}

.internet__info.wifi {
  padding-top: 95px;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .internet__info.wifi {
    padding-top: 40px;
    margin-bottom: 20px;
  }
}

.internet__info.wifi .internet__info__flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 840px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 800px) {
  .internet__info.wifi .internet__info__flex {
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
  }
}

.internet__info.wifi .internet__info__flex .txt {
  max-width: 480px;
  font-size: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 800px) {
  .internet__info.wifi .internet__info__flex .txt {
    font-size: 1.4rem;
  }
}

.internet__info.wifi .internet__info__flex .txt .u-bold {
  color: #ea6094;
}

.internet__info.wifi .internet__info__flex .txt .free {
  max-width: 359px;
  margin: 20px auto 0;
}

@media screen and (max-width: 800px) {
  .internet__info.wifi .internet__info__flex .txt .free {
    margin-top: 10px;
    max-width: 290px;
  }
}

.internet__info.wifi .internet__info__flex .img {
  max-width: 310px;
}

@media screen and (max-width: 800px) {
  .internet__info.wifi .internet__info__flex .img {
    max-width: 200px;
  }
}

.internet__info.wifi+.btn-cv {
  margin-bottom: 80px;
}

@media screen and (max-width: 800px) {
  .internet__info.wifi+.btn-cv {
    margin-bottom: 40px;
  }
}

.internet__cv {
  margin-bottom: 130px;
}

@media screen and (max-width: 800px) {
  .internet__cv {
    margin-bottom: 74px;
  }
}

.internet__cv .ttl {
  max-width: 707px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 800px) {
  .internet__cv .ttl {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 801px) {
  .internet__cv .btn-cv {
    font-size: 2rem;
  }
}

.internet__notes {
  padding: 30px 50px;
  border-radius: 10px;
}

@media screen and (max-width: 800px) {
  .internet__notes {
    padding: 15px;
  }
}

.internet__notes .ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .internet__notes .ttl {
    font-size: 1.8rem;
    margin-bottom: 10p;
  }
}

.fz16 {
  font-size: 1.6rem;
}

.u-tac {
  /* text-align: center; */
}

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

.bg-pink {
  background-color: #f2dee7;
}

.bg-gray {
  background-color: #f2f2f2;
}

.bg-white {
  background-color: #fff;
}

/*# sourceMappingURL=style.css.map */





/* ==========================
   LP用追記CSS（接頭辞 lp-） 
========================== */

/* 基本ラッパー */
.lp-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}

.lp-inner {
  max-width: 1030px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 800px) {
  .lp-inner {
    max-width: 430px;
  }
}

/* ヘッダー */
.lp-l-header {
  padding: 12px 10px 10px;
}

.lp-l-header__logo {
  max-width: 566px;
  margin: 0 auto;
}

/* フッター */
.lp-l-footer {
  background-color: #ea6094;
  color: #fff;
  padding: 80px 0 40px;
}

@media screen and (max-width: 800px) {
  .lp-l-footer {
    padding: 30px 0 20px;
  }
}

.lp-l-footer__logo {
  max-width: 256px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 800px) {
  .lp-l-footer__logo {
    max-width: 160px;
    margin-bottom: 30px;
  }
}

.lp-l-footer__add {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .lp-l-footer__add {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

.lp-l-footer__nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
}

@media screen and (max-width: 800px) {
  .lp-l-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
  }
}

.lp-l-footer__copy small {
  font-size: 1.2rem;
}

@media screen and (max-width: 800px) {
  .lp-l-footer__copy small {
    font-size: 1rem;
  }
}

/* ボタン */
.lp-btn-cv {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  height: 100px;
  padding: 10px 70px;
  border-radius: 50px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  background-color: #4dd393;
  border: 3px solid #403c3c;
  position: relative;
  box-shadow: 10px 10px 0 #403c3c;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s;
  top: 0;
  left: 0;
}

.lp-btn-cv:hover {
  top: 5px;
  left: 5px;
  box-shadow: 5px 5px 0 #403c3c;
}

@media screen and (max-width: 800px) {
  .lp-btn-cv {
    width: calc(100% - 4px);
    box-shadow: 4px 4px 0 #403c3c;
    padding: 15px 40px;
    height: auto;
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .lp-btn-cv:hover {
    top: 4px;
    left: 4px;
    box-shadow: 0 0 0 #403c3c;
  }
}

/* 小ボタン */
.lp-btn-mote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 60px;
  border: 2px solid #39b97c;
  background-color: #fff;
  padding: 10px 50px;
  position: relative;
  font-weight: bold;
  color: #39b97c;
  font-size: 1.8rem;
  border-radius: 40px;
  margin-left: auto;
  margin-right: auto;
  transition: color 0.3s, background-color 0.3s;
}

.lp-btn-mote:hover {
  background-color: #39b97c;
  color: #fff;
}

@media screen and (max-width: 800px) {
  .lp-btn-mote {
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
    padding: 10px 40px;
  }
}

/* リミットセクション */
.lp-limit {
  padding: 50px 0 20px;
}

@media screen and (max-width: 800px) {
  .lp-limit {
    padding: 35px 0 20px;
  }
}



/* データセクション */
.lp-data {
  padding: 50px 0 40px;
}

@media screen and (max-width: 800px) {
  .lp-data {
    padding: 25px 0 20px;
  }
}

.lp-data .lp-ttl {
  max-width: 554px;
  margin: 0 auto 30px;
}

/* CVセクション */
.lp-cv {
  background: url(../img/cv-bg.png) no-repeat center top/cover;
  padding: 65px 0 70px;
}

@media screen and (max-width: 800px) {
  .lp-cv {
    background-image: url(../img/cv-bg_sp.png);
    padding: 30px 0 35px;
  }
}

/* 注釈リスト */
.lp-notes-list__item {
  padding-left: 2.5em;
  position: relative;
}

.lp-notes-list__item span {
  position: absolute;
  left: 0;
  top: 0;
}





/* ==========================
   LP用追記CSS（lp-プレフィックス付き）
   既存CSSと衝突しない形
   レスポンシブ対応
========================== */



/* LP専用H2 */
.lp-ttl {
  font-size: 3rem;
  font-weight: 900;
  color: #ea6094;
  text-align: center;
  /* text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff; */
  margin-bottom: 1em;
}

@media screen and (max-width: 800px) {
  .lp-ttl {
    font-size: 2.2rem;
  }
}


/* --------------------------
   共通ラッパー
-------------------------- */
.lp-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* --------------------------
   見出し
-------------------------- */
.lp-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* --------------------------
   ドットリスト
-------------------------- */
.lp-dots-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.lp-dots-list__item {
  margin-bottom: 10px;
}

/* --------------------------
   2カラムリスト
-------------------------- */

.p_main {
  margin-bottom: 5px;
  font-size: 16px;
}


.lp-column3__item {
  display: block;
  /* 1カラムにする */
  width: 100%;
  /* 横幅いっぱい */
  margin-bottom: 15px;
  /* 下の余白 */
  /* background-color: #fff; */
  padding: 10px;
  box-sizing: border-box;
  /* border-radius: 8px; */
  /* border: 1px solid #f2f2f2; 薄い枠線 */
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); 軽い影で浮き上がり感 */
  color: #333;
  /* 文字色は濃いめで読みやすく */
  line-height: 1.6;
  /* 行間で読みやすく */
  font-size: 16px;
}

.lp-column3__item strong {
  color: #079952;
  font-size: 18px;
  display: block;
  margin: 5px 0;
  padding: 3px 0;
  text-align: center;
  position: relative;
}

.lp-column3__item strong::before,
.lp-column3__item strong::after {
  content: "";
  display: block;
  width: 100%;
  /* ラインの長さ */
  height: 1px;
  /* ラインの太さ */
  background-color: #079952;
  /* ライン色は見出しと同じ */
  margin: 5px auto;
  /* 上下にスペースを作って中央寄せ */
}



/* --------------------------
   ボタン
-------------------------- */
.lp-btn-cv {
  display: inline-block;
  background-color: #0072bc;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
}

.lp-btn-cv:hover {
  background-color: #005a99;
}

/* --------------------------
   背景色
-------------------------- */
.lp-bg-light {
  background-color: #f5f5f5;
}

.lp-bg-green {
  background-color: #e7f5ed;
}


/* --------------------------
   スマホ対応
-------------------------- */
@media screen and (max-width: 800px) {
  .lp-inner {
    padding: 25px 15px;
  }

  .lp-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .lp-column3 {
    flex-direction: column;
    gap: 15px;
  }

  .lp-column3__item {
    flex: 1 1 100%;
  }

  .lp-dots-list {
    padding-left: 15px;
  }

  .lp-dots-list__item {
    margin-bottom: 8px;
  }

  .lp-btn-cv {
    width: 100%;
    padding: 12px 0;
    font-size: 1.6rem;
  }
}



/* LPスマホ風 */
.lp-smartphone {
  position: relative;
  z-index: 1;
  padding: 30px 15px 60px;
  /* 下余白を広めに */
  max-width: 900px;
  margin: 0 auto 40px;
  /* 下のセクションとの間隔 */
}

.lp-smartphone::after {
  content: "";
  width: 100%;
  height: calc(100% - 35px);
  background-color: #f2dee7;
  border-radius: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .lp-smartphone {
    padding: 20px 10px 20px;
  }

  .lp-smartphone::after {
    height: calc(100% - 20px);
    border-radius: 10px;
  }
}

.lp-smartphone .inner {
  position: relative;
  /* ::after が下になるように */
  z-index: 1;
}

.lp-smartphone .ttl {
  max-width: 700px;
  /* 内側に収める */
  margin: 0 auto 20px;
  text-align: center;
  /* 広告チックに中央寄せ */
}

.lp-smartphone .dots-list,
.lp-smartphone .item {
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  .lp-smartphone .item {
    max-width: 270px;
    margin-bottom: 15px;
  }
}



/* ==========================
   LP 流れセクション
========================== */



.lpflow-section {
  width: 100%;
  background-color: #fff5f8;
  padding: 60px 0 40px;
  box-sizing: border-box;
  /* margin-top: 20px; */
}

.lpflow-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  counter-reset: step;
}

.lpflow-ttl {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #ea6094;
  /* 基本色 */
  margin-bottom: 40px;
}

.lpflow-dots-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lpflow-dots-list__item {
  position: relative;
  background-color: #fff;
  border: 2px solid #ea6094;
  border-radius: 10px;
  padding: 20px 20px 20px 80px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.6;
  counter-increment: step;
  transition: transform 0.3s, box-shadow 0.3s;
}

.lpflow-dots-list__item::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #ea6094;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
}

/* .lpflow-dots-list__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
} */

/* スマホ対応 */
@media screen and (max-width: 800px) {
  .lpflow-inner {
    padding: 0 10px;
  }

  .lpflow-ttl {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .lpflow-dots-list__item {
    padding: 15px 15px 15px 60px;
    font-size: 15px;
    transition: none;
  }

  .lpflow-dots-list__item::before {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    left: 15px;
  }
}


/* 縦矢印追加 */
.lpflow-dots-list__item::after {
  content: "";
  position: absolute;
  left: 40px; /* 番号丸の中心に合わせる */
  top: 100%;
  width: 2px;
  height: 30px; /* 矢印の長さ */
  background-color: #ea6094;
}

.lpflow-dots-list__item:last-child::after {
  display: none; /* 最後のステップは矢印なし */
}

/* スマホ対応 */
@media screen and (max-width: 800px) {
  .lpflow-dots-list__item::after {
    left: 25px; /* 番号丸の中心に合わせる */
    height: 20px;
  }
}



/* ==========================
   LP用FAQ CSS（シンプル版）
   接頭辞 lp-
========================== */

/* ==========================
   LP FAQ アコーディオン
========================== */
.lp-faq-ttl {
  font-size: 28px;
  font-weight: bold;
  color: #ea6094;
  text-align: center;
  margin-bottom: 30px;
}

.lp-faq-notes {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  margin-top: 30px;
  padding: 0 15px;
}

.lp-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-faq-list__item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.lp-faq-question {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.lp-faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #ea6094;
  transition: transform 0.3s ease;
}

.lp-faq-list__item.active .lp-faq-question::after {
  content: "-";
  transform: translateY(-50%);
}

.lp-faq-answer {
  display: none;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
  color: #333;
}

/* レスポンシブ */
@media screen and (max-width: 800px) {
  .lp-faq-ttl {
    font-size: 22px;
  }

  .lp-faq-question {
    font-size: 16px;
  }

  .lp-faq-answer {
    font-size: 14px;
  }
}




.lp-what-mobile p {

  font-size: 16px;
  margin: 0;



}



.lp-anshin li {

  font-size: 16px;

}


/* ==========================
   画像
========================== */

.img_left {
  float: left;
  width: 60%;
}


@media screen and (max-width: 800px) {
  .img_left {
    width: 100%;
  }
}


.docomo {
  float: left;
  width: 35%;
  margin-bottom: 10px;
  margin-right: 20px;
}


@media screen and (max-width: 800px) {
  .docomo {
    width: 68%;
    display: block;
    float: none;
    margin: 0 auto 20px;
  }
}


.clearfix::after {
  content: "";
  display: table;
  clear: both;
}


.mb-10 {
  margin-bottom: 10px;

}

.ml-10 {
  margin-left: 10px;

}

.p_small {
  font-size: 0.8em;
}