@charset "UTF-8";
/* デザイン崩れ調整 */
.nb{
    display: block;
}
.pc-menu__logo a,
.ctaBox{
  display: none;
}
h2{
  margin: 0;
}
p{
  padding: 0;
}
h2.comparison-title,
.lastcta-content h2{
  text-align: left;
}
h1 {margin-top: 0;}
@media screen and (max-width: 1023px) {

}
@media screen and (max-width: 768px) {
  .hero img{
    margin: auto;
  }
}

/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #017cde 0%, #00ebbc 100%);
  min-height: 100vh;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width:540px) {
  h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
}

p {
  font-size: 1.2rem;
}
@media screen and (max-width:768px) {
  p {
    font-size: 1rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.sub-container {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

a.cta-button {
  background: #eca52c;
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
a.cta-button:hover {
  background: #d4941f;
}
@media screen and (max-width:768px) {
  a.cta-button {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 300px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: url(../img/key-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero img.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 180px;
}
@media screen and (max-width:540px) {
  .hero img.logo {
    width: 120px;
  }
}
.hero .container {
  max-width: 1300px;
}
.hero .hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
  min-height: 100vh;
}
@media screen and (max-width:768px) {
  .hero .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 100px 0 30px;
    justify-content: flex-end;
    min-height: auto;
  }
}
.hero .hero-content .hero-image {
  flex: 1;
  max-width: 500px;
}
.hero .hero-content .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.hero .hero-content .hero-text {
  flex: 1;
  color: white;
}
@media screen and (max-width:768px) {
  .hero .hero-content .hero-text {
    flex: 0;
  }
}
.hero .hero-content .hero-text img {
  width: 400px;
}
@media screen and (max-width:768px) {
  .hero .hero-content .hero-text img {
    width: 400px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width:540px) {
  .hero .hero-content .hero-text img {
    width: 80%;
  }
}
.hero .hero-content .hero-text img.text-logo {
  margin-bottom: 10px;
}
.hero .hero-content h1.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
  font-size: 55px;
}
@media screen and (max-width:768px) {
  .hero .hero-content h1.hero-title {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width:540px) {
  .hero .hero-content h1.hero-title {
    font-size: 35px;
  }
}
.hero .hero-content h1.hero-title span {
  font-size: 45px;
}
@media screen and (max-width:768px) {
  .hero .hero-content h1.hero-title span {
    font-size: 35px;
  }
}
@media screen and (max-width:540px) {
  .hero .hero-content h1.hero-title span {
    font-size: 30px;
  }
}
.hero p.hero-subtitle {
  margin-bottom: 40px;
  opacity: 0.9;
  color: white;
}
@media screen and (max-width:768px) {
  .hero p.hero-subtitle {
    text-align: center;
  }
}
@media screen and (max-width:540px) {
  .hero p.hero-subtitle {
    margin-bottom: 40px;
  }
}

.about {
  padding-bottom: 80px;
}
@media screen and (max-width:768px) {
  .about {
    padding: 80px 0;
  }
}
@media screen and (max-width:540px) {
  .about {
    padding: 60px 0;
  }
}
.about .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .about .flex {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about .flex .text h2 {
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .about .flex .text h2 {
    text-align: center;
    margin-bottom: 25px;
  }
}
.about .flex .text p {
  color: white;
}
@media screen and (max-width:768px) {
  .about .flex .text p {
    text-align: center;
  }
}
.about .flex img {
  max-width: 377px;
}
@media screen and (max-width:540px) {
  .about .flex img {
    width: 90%;
  }
}

/* Features Section */
.features {
  padding: 0 0 60px;
  text-align: center;
}
.features .features-subtitle {
  color: white;
  margin-top: 40px;
  margin-bottom: 60px;
  opacity: 0.9;
}
@media screen and (max-width:540px) {
  .features .features-subtitle {
    margin-bottom: 40px;
  }
}
.features .features-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width:540px) {
  .features .features-grid {
    gap: 20px;
  }
}
.features .features-grid .feature-card {
  width: 280px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 10px;
}
@media screen and (max-width:540px) {
  .features .features-grid .feature-card {
    width: 100%;
  }
}
.features .features-grid .feature-card .feature-card-inner {
  width: 100%;
  background: white;
  border-radius: 15px;
  padding: 30px 10px;
}
.features .features-grid .feature-card .feature-card-inner img{
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width:540px) {
  .features .features-grid .feature-card .feature-card-inner {
    padding: 20px;
  }
}
.features .features-grid .feature-card .feature-card-inner img.feature-icon {
  max-width: 217px;
  margin-bottom: 20px;
}
@media screen and (max-width:540px) {
  .features .features-grid .feature-card .feature-card-inner img.feature-icon {
    width: 180px;
  }
}
.features .features-grid .feature-card .feature-card-inner p.feature-text {
  font-weight: bold;
  line-height: 1.5;
  font-size: 17px;
}
@media screen and (max-width:540px) {
  .features .features-grid .feature-card .feature-card-inner p.feature-text {
    font-size: 16px;
  }
}
.features .features-achive {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
}
@media screen and (max-width:540px) {
  .features .features-achive {
    padding: 20px 12px;
  }
}
.features .features-achive h3 {
  text-align: left;
  padding: 0 0 10px 20px;
  border-bottom: 2px solid #00A59C;
  margin-bottom: 20px;
  margin-top: 0;
}
@media screen and (max-width:540px) {
  .features .features-achive h3 {
    padding: 0 0 5px 15px;
  }
}
.features .features-achive ul {
  padding-left: 40px;
}
@media screen and (max-width:540px) {
  .features .features-achive ul {
    padding-left: 25px;
  }
}
.features .features-achive ul li {
  text-align: left;
  list-style: disc;
}
@media screen and (max-width:540px) {
  .features .features-achive ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.steps-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width:540px) {
  .steps-section {
    padding-bottom: 50px;
  }
}
.steps-section::before {
  position: absolute;
  content: "";
  width: 392px;
  height: 354px;
  left: 0;
  top: 0;
  background: url(../img/step-gz.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width:540px) {
  .steps-section::before {
    width: 200px;
    height: 182px;
  }
}
.steps-section .steps-title {
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}
@media screen and (max-width:540px) {
  .steps-section .steps-title {
    margin-bottom: 15px;
  }
}
.steps-section .badge {
  display: inline-block;
  background: white;
  color: #017ede;
  font-weight: 700;
  font-size: 18px;
  padding: 5px 20px 3px;
  border-radius: 100px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width:540px) {
  .steps-section .badge {
    font-size: 16px;
  }
}
.steps-section .step-card {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  padding: 15px 25px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  position: relative;
}
@media screen and (max-width:540px) {
  .steps-section .step-card {
    padding: 15px;
  }
}
.steps-section .step-card .step-number {
  width: 83px;
  height: 83px;
  background: #00a59c;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-number {
    width: 70px;
    height: 70px;
  }
}
.steps-section .step-card .step-number .step-label {
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-number .step-label {
    font-size: 15px;
  }
}
.steps-section .step-card .step-number .step-num {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-number .step-num {
    font-size: 25px;
  }
}
.steps-section .step-card .step-title {
  font-size: 23px;
  font-weight: 700;
  color: #333333;
  text-align: left;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-title {
    font-size: 18px;
    line-height: 1.4;
  }
}
.steps-section .step-card .step-title span {
  font-size: 18px;
  color: #00A59C;
}
@media screen and (max-width:540px) {
  .steps-section .step-card .step-title span {
    font-size: 15px;
    display: block;
    margin-top: 10px;
  }
}
.steps-section .arrow {
  width: 0;
  height: 0;
  border-left: 19.5px solid transparent;
  border-right: 19.5px solid transparent;
  border-top: 13.5px solid #ffffff;
  opacity: 0.7;
  margin: 0 auto 9px;
}
.steps-section a.cta-button {
  margin-top: 40px;
}

.pricing-section {
  padding: 80px 0;
  position: relative;
  /* テーブル共通スタイル */
}
.pricing-section::before {
  position: absolute;
  content: "";
  width: 370px;
  height: 330px;
  top: 0;
  right: 0;
  background: url(../img/plan-gz.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width:768px) {
  .pricing-section::before {
    width: 266px;
    height: 236px;
  }
}
@media screen and (max-width:540px) {
  .pricing-section::before {
    width: 178px;
    height: 157px;
  }
}
.pricing-section .header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
@media screen and (max-width:540px) {
  .pricing-section .header {
    margin-bottom: 45px;
  }
}
.pricing-section .header .main-title {
  font-size: 40px;
  font-weight: 700;
  color: white;
  line-height: 60px;
  margin-bottom: 7px;
  position: relative;
}
@media screen and (max-width:540px) {
  .pricing-section .header .main-title {
    font-size: 30px;
  }
}
.pricing-section .header .badge {
  display: inline-block;
  background: white;
  color: #017ede;
  font-weight: 700;
  font-size: 18px;
  padding: 5px 20px 3px;
  border-radius: 100px;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width:540px) {
  .pricing-section .header .badge {
    font-size: 16px;
  }
  .pricing-section .header .badge:first-child {
    margin-bottom: 10px;
  }
}
.pricing-section .header ul {
  background: white;
  border-radius: 10px;
  padding: 20px;
  list-style: disc;
}
.pricing-section .header ul li {
  text-align: left;
  margin-left: 30px;
}
@media screen and (max-width:540px) {
  .pricing-section .header ul li {
    margin-left: 20px;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .pricing-section .header ul li:last-child {
    margin-bottom: 0;
  }
}
.pricing-section h3.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 25px;
  line-height: 35px;
  white-space: nowrap;
  padding: 0 10px 10px 10px;
  border-bottom: 2px solid white;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}
.pricing-section h3.section-title.mt {
  margin-top: 60px;
}
@media screen and (max-width:540px) {
  .pricing-section h3.section-title {
    font-size: 20px;
  }
}
.pricing-section p.section-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: white;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}
.pricing-section .table-container {
  width: 100%;
}
@media screen and (max-width:540px) {
  .pricing-section .table-container {
    overflow: scroll;
  }
}
.pricing-section .table-container table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width:540px) {
  .pricing-section .table-container table {
    width: 650px;
  }
}
.pricing-section .table-container table.comparison-table {
  /* ひと目でわかる早見表のテーブル */
}
.pricing-section .table-container table.comparison-table th, .pricing-section .table-container table.comparison-table td {
  padding: 23.5px 17px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.pricing-section .table-container table.comparison-table .plan-header {
  width: 176px;
  background-color: #3a3838;
  color: white;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
}
.pricing-section .table-container table.comparison-table .monthly-fee-header {
  width: 317px;
  background-color: #535353;
  color: white;
  font-size: 23px;
  line-height: 23px;
}
@media screen and (max-width:540px) {
  .pricing-section .table-container table.comparison-table .monthly-fee-header {
    font-size: 16px;
  }
}
.pricing-section .table-container table.comparison-table .partner-reward-header {
  width: 317px;
  background-color: #00a59c;
  color: white;
  font-size: 23px;
  line-height: 23px;
}
@media screen and (max-width:540px) {
  .pricing-section .table-container table.comparison-table .partner-reward-header {
    font-size: 16px;
  }
}
.pricing-section .table-container table.comparison-table .plan-cell {
  width: 176px;
  background-color: #535353;
  color: white;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  border-bottom: 2px solid #01a9d1;
}
@media screen and (max-width:768px) {
  .pricing-section .table-container table.comparison-table .plan-cell {
    width: 200px;
  }
}
@media screen and (max-width:540px) {
  .pricing-section .table-container table.comparison-table .plan-cell {
    font-size: 14px;
  }
}
.pricing-section .table-container table.comparison-table .monthly-fee-cell {
  width: 317px;
  background-color: #f5f5f5;
  color: #333333;
  font-size: 22px;
  line-height: 30.8px;
  border-right: 2px solid #01a9d1;
  border-bottom: 2px solid #01a9d1;
}
.pricing-section .table-container table.comparison-table .partner-reward-cell {
  width: 316px;
  background-color: #effff9;
  color: #007872;
  font-size: 26px;
  line-height: 36.4px;
  border-bottom: 2px solid #01a9d1;
}
.pricing-section .table-container table.pricing-table {
  /* 月次報酬シミュレーションのテーブル */
}
.pricing-section .table-container table.pricing-table th, .pricing-section .table-container table.pricing-table td {
  padding: 23.5px 17px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.pricing-section .table-container table.pricing-table .combination-header {
  width: 176px;
  height: 52px;
  background-color: #3a3838;
  color: white;
  font-size: 16px;
  line-height: 16px;
  text-align: left;
}
.pricing-section .table-container table.pricing-table .monthly-reward-header {
  width: 317px;
  height: 52px;
  background-color: #017ede;
  color: white;
  font-size: 23px;
  line-height: 23px;
}
@media screen and (max-width:540px) {
  .pricing-section .table-container table.pricing-table .monthly-reward-header {
    font-size: 16px;
  }
}
.pricing-section .table-container table.pricing-table .annual-header {
  width: 317px;
  height: 52px;
  background-color: #00a59c;
  color: white;
  font-size: 23px;
  line-height: 23px;
}
@media screen and (max-width:540px) {
  .pricing-section .table-container table.pricing-table .annual-header {
    font-size: 16px;
  }
}
.pricing-section .table-container table.pricing-table .combination-cell {
  width: 200px;
  background-color: #535353;
  color: white;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  border-bottom: 2px solid #01a9d1;
  white-space: pre-line;
}
.pricing-section .table-container table.pricing-table .combination-cell.pd0 {
  padding-right: 0;
}
@media screen and (max-width:768px) {
  .pricing-section .table-container table.pricing-table .combination-cell {
    width: 250px;
  }
}
@media screen and (max-width:540px) {
  .pricing-section .table-container table.pricing-table .combination-cell {
    font-size: 14px;
  }
}
.pricing-section .table-container table.pricing-table .monthly-reward-cell {
  width: 317px;
  background-color: #edf7ff;
  color: #333333;
  font-size: 22px;
  line-height: 30.8px;
  border-right: 2px solid #01a9d1;
  border-bottom: 2px solid #01a9d1;
}
.pricing-section .table-container table.pricing-table .annual-cell {
  width: 317px;
  background-color: #effff9;
  color: #007872;
  font-size: 26px;
  line-height: 36.4px;
  border-bottom: 2px solid #01a9d1;
}
.pricing-section .annual-comparison-section p {
  color: white;
  font-size: 14px;
  margin-top: 15px;
  text-align: right;
}

.faq {
  background: #E1F8F7;
  padding: 80px 0;
}
.faq h2 {
  color: #00A59C;
  text-align: center;
}
.faq .aco-block {
  margin-bottom: 30px;
}
.faq .aco-last {
  margin-bottom: 0;
}
.faq .aco-content {
  display: flex;
  align-items: center;
}
@media screen and (max-width:540px) {
  .faq .aco-content {
    align-items: flex-start;
    gap: 3px;
  }
}
.faq .aco-content-left {
  margin-right: 15px;
}
@media screen and (max-width:540px) {
  .faq .aco-content-left {
    margin-right: 5px;
  }
}
.faq .aco-content-left p {
  font-size: 40px;
  line-height: 1;
}
.faq .aco .content-q {
  background-color: #ffffff;
  padding: 17px 25px;
  border-radius: 5px;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q {
    padding: 15px;
    padding-right: 30px;
  }
}
@media screen and (max-width:320px) {
  .faq .aco .content-q {
    padding: 15px 20px;
  }
}
.faq .aco .content-q.q {
  position: relative;
}
.faq .aco .content-q.q::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #00A59C transparent transparent transparent;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.5s;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q.q::before {
    right: 15px;
    border-width: 10px 7px 0 7px;
  }
}
.faq .aco .content-q.q:hover {
  cursor: pointer;
}
.faq .aco .content-q.q.close::before {
  border-width: 0 10px 15px 10px;
  border-color: transparent transparent #00A59C transparent;
  transition: all 0.7s;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q.q.close::before {
    border-width: 0 7px 10px 7px;
  }
}
.faq .aco .content-q .aco-content-left p {
  font-size: 35px;
  color: #00A59C;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q .aco-content-left p {
    font-size: 25px;
  }
}
.faq .aco .content-q .aco-content-right p {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width:540px) {
  .faq .aco .content-q .aco-content-right p {
    font-size: 16px;
  }
}
.faq .aco .content-a {
  padding: 25px 25px 0;
  align-items: flex-start;
}
@media screen and (max-width:540px) {
  .faq .aco .content-a {
    padding: 25px;
  }
}
@media screen and (max-width:320px) {
  .faq .aco .content-a {
    padding: 20px;
  }
}
.faq .aco .content-a .aco-content-left p {
  font-size: 30px;
  color: #00AECF;
}
@media screen and (max-width:540px) {
  .faq .aco .content-a .aco-content-left p {
    font-size: 27px;
  }
}
.faq .aco .content-a .aco-content-right p {
  font-size: 18px;
  line-height: 27px;
  color: #333333;
}
@media screen and (max-width:540px) {
  .faq .aco .content-a .aco-content-right p {
    font-size: 16px;
  }
}
.faq .aco .qa-last {
  margin-bottom: 0;
}

.last-cta {
  background: url(../img/last-cta_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 35px 0;
}
@media screen and (max-width:540px) {
  .last-cta {
    padding: 50px 0;
  }
}
.last-cta .lastcta-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width:540px) {
  .last-cta .lastcta-flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.last-cta .lastcta-flex img {
  width: 384px;
}
@media screen and (max-width:768px) {
  .last-cta .lastcta-flex img {
    width: 250px;
  }
}
.last-cta .lastcta-flex .lastcta-content h2 {
  margin-bottom: 15px;
  line-height: 1.4;
}
@media screen and (max-width:768px) {
  .last-cta .lastcta-flex .lastcta-content h2 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width:540px) {
  .last-cta .lastcta-flex .lastcta-content h2 {
    text-align: center;
    font-size: 1.5rem;
  }
}
.last-cta .lastcta-flex .lastcta-content p {
  color: white;
  margin-bottom: 30px;
}
@media screen and (max-width:540px) {
  .last-cta .lastcta-flex .lastcta-content p {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */
