@charset "UTF-8";
/*
    リセットCSS等の基本設定
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
a, p, span,
blockquote, code,
ol, ul, li, dl, dt, dd,
div, section, article, main, aside,
nav, header, footer,
img, figure, figcaption,
address, time, audio, video,
iframe, fieldset,
form, label, table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, footer, header, nav, section, main {
  display: block;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

li {
  list-style-type: none;
}

a {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #363636;
}

th, td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #363636;
}

input, textarea {
  padding: 8px;
  border: 1px solid #363636;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}
input:focus, textarea:focus {
  outline: 1px solid #3b82f6;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

textarea {
  resize: none;
}

input[type=submit] {
  cursor: pointer;
  border: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
  border: none;
}
input[type=submit] ::-moz-focus-inner {
  padding: 0;
  border: none;
}
input[type=radio] {
  display: none;
}
input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
}
input[type=radio] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #363636;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
}
input[type=radio] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=radio] + span:focus, input[type=radio] + span:checked {
  outline: none;
  border: 1px solid #fff;
  box-shadow: none;
  background: #a52a2a;
}
input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.2em;
  transform: translateY(-50%);
  background: #363636;
  border-radius: 50%;
  width: 0.6em;
  height: 0.6em;
  display: block;
  opacity: 1;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 2em;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
input[type=checkbox] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #363636;
  border-radius: 2px;
  width: 1.5em;
  height: 1.5em;
  display: block;
}
input[type=checkbox] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 43%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 1.5em;
  height: 0.8em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #a52a2a;
  border-bottom: 3px solid #a52a2a;
  opacity: 1;
}

select {
  width: 100%;
  padding: 8px 24px 8px 8px;
  border-radius: 0;
  background-image: none;
  border: 1px solid #363636;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: 1px solid #3b82f6;
  box-shadow: none;
  border: none;
}

.hidden {
  display: none;
}

.wrapper {
  overflow: hidden;
}

.inner--large {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.sec-ttl {
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .sec-ttl {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .sec-ttl {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.section-ttl--01 {
  font-size: 72px;
  color: #2c2c2c;
  margin-bottom: 32px;
  font-family: "Rajdhani", sans-serif;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-ttl--01 {
    font-size: 48px;
    margin-bottom: 24px;
  }
}
.section-ttl--01 span {
  display: block;
  font-size: 20px;
}

.section-ttl--02 {
  font-size: 28px;
  padding-left: 8px;
  margin-bottom: 48px;
  border-left: 4px solid transparent;
  -o-border-image: linear-gradient(180deg, #A52A2A 0%, #DC6343 100%);
     border-image: linear-gradient(180deg, #A52A2A 0%, #DC6343 100%);
  border-image-slice: 1;
}
@media (max-width: 768px) {
  .section-ttl--02 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.section-caption {
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media (max-width: 992px) {
  .section-caption {
    font-size: 14px;
  }
}

.primary-btn {
  max-width: 240px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  padding: 20px;
  background: linear-gradient(135deg, #A52A2A 0%, #DC6343 100%);
  color: #fff;
  border-radius: 100px;
  font-weight: bold;
  display: block;
  transition: all 0.3s ease-in-out;
}
.primary-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #8b2c2c 0%, #b85c4d 100%);
}
@media (max-width: 992px) {
  .primary-btn {
    font-size: 14px;
    padding: 16px 8px;
  }
}
@media (max-width: 768px) {
  .primary-btn {
    max-width: 100%;
    padding: 16px 8px;
  }
}

.primary-btn02 {
  text-align: center;
  font-size: 16px;
  line-height: 1;
  padding: 16px 16px;
  background: linear-gradient(135deg, #A52A2A 0%, #DC6343 100%);
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  display: block;
  transition: all 0.3s ease-in-out;
}
.primary-btn02:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #8b2c2c 0%, #b85c4d 100%);
}
@media (max-width: 768px) {
  .primary-btn02 {
    max-width: 100%;
    padding: 16px 8px;
  }
}

.header__nav-links li .primary-btn02 {
  text-align: center;
  font-size: 16px;
  line-height: 1;
  padding: 16px;
  background: #a52a2a;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  display: block;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header__nav-links li .primary-btn02 {
    background-color: transparent;
    border-radius: 0;
    line-height: 1.75;
    padding: 24px;
  }
}
.header__nav-links li .primary-btn02:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: #8b2c2c;
  color: #fff;
}

.secondary-btn {
  display: block;
  max-width: 240px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  padding: 20px;
  background: #fff;
  color: #a52a2a;
  border: 1px solid #a52a2a;
  border-radius: 100px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.04em;
}
.secondary-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: #f0f0f0;
}
@media (max-width: 992px) {
  .secondary-btn {
    font-size: 14px;
    padding: 15px 8px;
  }
}
@media (max-width: 768px) {
  .secondary-btn {
    max-width: 100%;
  }
}

.card-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .card-cont {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .card-cont {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.card {
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (max-width: 768px) {
  .card {
    padding: 20px;
  }
}

.cta-section {
  padding: 48px 40px 64px;
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
}
@media (max-width: 768px) {
  .cta-section {
    padding: 24px 20px;
  }
}

.cta__ttl {
  font-size: 32px;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cta__ttl {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.cta__caption {
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 48px;
  color: #555;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media (max-width: 768px) {
  .cta__caption {
    margin-bottom: 24px;
    font-size: 14px;
    text-align: left;
  }
}

.cta__btn-cont {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .cta__btn-cont {
    gap: 16px;
    flex-wrap: wrap;
  }
}

.mb32 {
  margin-bottom: 32px;
}

.mb24 {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .mb24 {
    margin-bottom: 16px;
  }
}

.mainvisual {
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
  color: #2c2c2c;
  padding: 160px 40px 40px;
}
@media (max-width: 768px) {
  .mainvisual {
    padding: 120px 20px 40px;
  }
}

.mv__cont {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .mv__cont {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .mv__cont {
    flex-direction: column;
  }
}

.mv__cont-text {
  width: calc(52% - 12px);
}
@media (max-width: 992px) {
  .mv__cont-text {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .mv__cont-text {
    order: 2;
    width: 100%;
  }
}

.mv__ttl {
  font-size: 44px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  line-height: normal;
  margin-bottom: 32px;
  max-width: 600px;
}
@media (max-width: 992px) {
  .mv__ttl {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .mv__ttl {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.mv__caption {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  color: #555;
}
@media (max-width: 992px) {
  .mv__caption {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .mv__caption {
    width: 100%;
  }
}

.mv__btn-cont {
  display: flex;
  gap: 24px;
}
@media (max-width: 992px) {
  .mv__btn-cont {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .mv__btn-cont {
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
  }
}

.mv__cont-img {
  width: calc(48% - 12px);
}
@media (max-width: 992px) {
  .mv__cont-img {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .mv__cont-img {
    order: 1;
    width: 100%;
  }
}
.mv__cont-img img {
  width: 100%;
  height: auto;
  display: block;
}

.worry {
  background-color: #fff;
  padding: 48px 40px 64px;
}
@media (max-width: 768px) {
  .worry {
    padding: 24px 20px;
  }
}

.worry__cont {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 992px) {
  .worry__cont {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .worry__cont {
    gap: 20px;
    flex-direction: column;
  }
}

.worry__img {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .worry__img {
    width: 100%;
  }
}
.worry__img img {
  width: 100%;
  height: auto;
  display: block;
}

.worry__text {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .worry__text {
    width: 100%;
  }
}

.worry__list li {
  vertical-align: middle;
  margin-bottom: 24px;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.75;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 992px) {
  .worry__list li {
    margin-bottom: 16px;
    font-size: 14px;
  }
}
.worry__list li img {
  width: 32px;
}
@media (max-width: 992px) {
  .worry__list li img {
    width: 24px;
  }
}

.worry__message {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.75;
}
@media (max-width: 992px) {
  .worry__message {
    font-size: 16px;
  }
}
.worry__message span {
  font-size: 28px;
  color: #a52a2a;
  font-weight: bold;
}
@media (max-width: 992px) {
  .worry__message span {
    font-size: 20px;
  }
}

.service {
  padding: 48px 40px 64px;
  background: linear-gradient(135deg, #FFF 0%, #F0F0F0 100%);
}
@media (max-width: 768px) {
  .service {
    padding: 24px 20px;
  }
}

.ser__desc {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: #555;
}
@media (max-width: 992px) {
  .ser__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.ser__card-cont {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .ser__card-cont {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .ser__card-cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.ser__card img {
  display: block;
  margin: 0 auto 12px;
  width: 56px;
}
.ser__card .ser__card-ttl {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  text-align: center;
}
@media (max-width: 992px) {
  .ser__card .ser__card-ttl {
    font-size: 16px;
  }
}
.ser__card .ser__card-text {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #555;
}
@media (max-width: 768px) {
  .ser__card .ser__card-text {
    font-size: 14px;
  }
}

.select {
  padding: 48px 40px 64px;
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
}
@media (max-width: 768px) {
  .select {
    padding: 24px 20px;
  }
}

.sele__cont {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .sele__cont {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sele__cont {
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.sele__card-number {
  color: #a52a2a;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
@media (max-width: 992px) {
  .sele__card-number {
    font-size: 40px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .sele__card-number {
    font-size: 32px;
  }
}

.sele__card-ttl {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .sele__card-ttl {
    font-size: 16px;
  }
}

.sele__card-text {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #555;
}
@media (max-width: 768px) {
  .sele__card-text {
    font-size: 14px;
  }
}

.example {
  padding: 48px 40px 64px;
  background: linear-gradient(135deg, #FFF 0%, #F0F0F0 100%);
  color: #2c2c2c;
}
@media (max-width: 768px) {
  .example {
    padding: 24px 20px;
  }
}

.exam__cont {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .exam__cont {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .exam__cont {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 32px;
    gap: 20px;
  }
}

.exam__card {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.exam__card-img {
  width: 100%;
  height: auto;
}

.exam__card-text {
  padding: 12px 20px;
}

.exam__card-ttl {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 8px;
}

.exam__card-caption {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #a52a2a;
  font-weight: bold;
  margin-bottom: 16px;
}

.exam__issue-ttl {
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.exam__issue-list {
  color: #555;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .exam__issue-list {
    margin-bottom: 16px;
  }
}
.exam__issue-list li {
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.exam__issue-list img {
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  margin-right: 8px;
}

.exam__result-ttl {
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.exam__result-list li {
  margin-bottom: 8px;
  color: #555;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.exam__result-list li span {
  font-weight: bold;
  font-size: 16px;
  color: #a52a2a;
}
.exam__result-list li img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: bottom;
}

.exam__btn-cont {
  display: flex;
  gap: 32px;
  justify-content: center;
}
@media (max-width: 768px) {
  .exam__btn-cont {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.plan {
  padding: 48px 40px 64px;
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
  position: relative;
}
@media (max-width: 768px) {
  .plan {
    padding: 24px 20px;
  }
}

.plan__caption {
  max-width: 800px;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #555;
  margin: 0 auto 40px;
}
@media (max-width: 992px) {
  .plan__caption {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 14px;
  }
}

.plan__card-cont {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .plan__card-cont {
    margin-bottom: 40px;
  }
}

.plan__card {
  position: relative;
}

.plan__label {
  position: absolute;
  top: 0;
  left: -12px;
  color: #fff;
  background-color: #a52a2a;
  padding: 8px 12px;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  transform: rotate(-15deg);
}

.plan__card-ttl {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .plan__card-ttl {
    font-size: 16px;
  }
}

.plan__card-price {
  font-weight: bold;
  font-size: 20px;
  color: #a52a2a;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .plan__card-price {
    font-size: 16px;
  }
}

.plan__card-for {
  text-align: center;
  margin-bottom: 12px;
  color: #555;
  letter-spacing: 0.02em;
  font-size: 14px;
}

.plan__function-ttl {
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.plan__function-list li {
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .plan__function-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
  }
}
.plan__function-list li .fas {
  font-size: 24px;
  margin-right: 8px;
  color: #a52a2a;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .plan__function-list li .fas {
    font-size: 16px;
  }
}

.comparison {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .comparison {
    margin-bottom: 24px;
  }
}

.comp__ttl {
  font-size: 24px;
  padding-left: 16px;
  margin-bottom: 40px;
  border-left: 4px solid transparent;
  -o-border-image: linear-gradient(180deg, #A52A2A 0%, #DC6343 100%);
     border-image: linear-gradient(180deg, #A52A2A 0%, #DC6343 100%);
  border-image-slice: 1;
}
@media (max-width: 992px) {
  .comp__ttl {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .comp__ttl {
    margin-bottom: 24px;
  }
}

.comp__table {
  width: 100%;
  border: none;
}
.comp__table .comp__head-none {
  border: none;
}
.comp__table th, .comp__table td {
  text-align: center;
  padding: 12px;
  vertical-align: middle;
  border: none;
  font-size: 16px;
}
@media (max-width: 768px) {
  .comp__table th, .comp__table td {
    padding: 12px 8px;
    font-size: 12px;
  }
}
.comp__table th {
  padding: 16px;
}
@media (max-width: 768px) {
  .comp__table th {
    padding: 16px 8px;
  }
}
.comp__table td img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .comp__table td img {
    width: 24px;
    height: 24px;
  }
}
.comp__table thead th:nth-child(3) {
  border: 2px solid #a52a2a;
}
.comp__table tbody td:nth-child(2) {
  border-left: 1px solid #eee;
}
.comp__table tbody td:nth-child(3) {
  border-left: 2px solid #a52a2a;
  border-right: 2px solid #a52a2a;
}
.comp__table tbody .bb-red {
  border-bottom: 2px solid #a52a2a;
}

.comp__head-light {
  background-color: #f7f7f7;
}

.comp__head-standard {
  background-color: #a52a2a;
  color: #fff;
}

.comp__head-pro {
  background-color: #f7f7f7;
}

.comp__table-row--orange {
  background-color: #f7f7f7;
}

.comp__table-row--white {
  background-color: #fff;
}

.plan__banner-cont {
  margin: 0 auto;
  max-width: 400px;
}
.plan__banner-cont img {
  width: 100%;
  display: block;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.question {
  padding: 48px 40px 64px;
  background: linear-gradient(135deg, #FFF 0%, #F0F0F0 100%);
}
@media (max-width: 768px) {
  .question {
    padding: 24px 20px;
  }
}

.ques__card {
  max-width: 1000px;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin: 0 auto 24px;
  border: 1px solid #f0f0f0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.ques__card:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .ques__card {
    padding: 16px 20px;
  }
}
@media (max-width: 768px) {
  .ques__card {
    padding: 16px;
  }
}

.ques__card-upper {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: top;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .ques__card-upper {
    margin-bottom: 0;
    gap: 8px;
  }
}

.ques__card-ttl {
  font-size: 16px;
}
@media (max-width: 768px) {
  .ques__card-ttl {
    font-size: 14px;
  }
}

.ques__card-number {
  font-size: 20px;
  color: #a52a2a;
  font-weight: bold;
}
@media (max-width: 768px) {
  .ques__card-number {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ques__card-ttl {
    width: 65%;
  }
}

.ques__card-answer {
  color: #555;
}
@media (max-width: 768px) {
  .ques__card-answer {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 2;
  }
}

.ques__card-btn {
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #a52a2a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: none;
}
@media (max-width: 768px) {
  .ques__card-btn {
    display: block;
  }
}

.ques__card-btn::before,
.ques__card-btn::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.ques__card-btn::before {
  width: 60%;
  height: 2px;
  top: 19px;
  left: 8px;
}

.ques__card-btn::after {
  width: 2px;
  height: 60%;
  top: 8px;
  left: 19px;
}

.turn.ques__card-btn::before,
.turn.ques__card-btn::after {
  transform: translateY(0) rotate(135deg);
}

.ques__card-lower {
  display: flex;
  gap: 16px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .ques__card-lower {
    display: none;
    opacity: 0;
    margin-top: 8px;
    gap: 8px;
  }
}
.ques__card-lower img {
  width: 24px;
}
@media (max-width: 768px) {
  .ques__card-lower img {
    width: 20px;
  }
}

.ques__card-lower.show {
  display: flex;
  opacity: 1;
}

.ques__card-check {
  display: block;
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .ques__card-check {
    width: 24px;
    height: 24px;
  }
}

.ques__btn-cont {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .ques__btn-cont {
    gap: 24px;
    flex-wrap: wrap;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
}

.scroll-fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/*
    header
*/
.header {
  padding: 20px 40px;
  background: #fff;
  color: #2c2c2c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .header {
    padding: 16px 40px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 16px 20px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo a {
  display: block;
  width: 180px;
  height: auto;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .header__logo a {
    width: 170px;
    padding-top: 8px;
  }
}
@media (max-width: 768px) {
  .header__logo a {
    width: 140px;
  }
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo a img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-toggle {
  display: none;
}
@media (max-width: 992px) {
  .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 48px;
    width: 44px;
    padding: 0;
    position: relative;
    z-index: 100;
  }
}

.menu-icon {
  background-color: #a52a2a;
  height: 3px;
  width: 100%;
  border-radius: 5px;
  transition: all 0.4s ease-in-out 0s;
  position: absolute;
}
.menu-icon:nth-child(1) {
  top: 8px;
}
.menu-icon:nth-child(2) {
  top: 16px;
}
.menu-icon:nth-child(3) {
  top: 24px;
}

.menu-label {
  font-size: 14px;
  color: #a52a2a;
  padding: 0 4px;
  transition: all 0.3s ease-in-out 0s;
  position: absolute;
  top: 34px;
}

.header__nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 24px;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .header__nav-links {
    display: none;
  }
}
.header__nav-links li {
  list-style: none;
}
@media (max-width: 992px) {
  .header__nav-links li {
    width: 100%;
  }
}
.header__nav-links li a {
  color: #2c2c2c;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.header__nav-links li a:hover {
  color: #a52a2a;
}
@media (max-width: 992px) {
  .header__nav-links li a {
    font-size: 16px;
    transform: rotate(0.05deg);
  }
}

@media (max-width: 992px) {
  .active .menu-toggle .menu-icon:nth-child(1) {
    transform: translateY(0) rotate(225deg);
    position: absolute;
    top: 16px;
    background-color: #fff;
  }
  .active .menu-toggle .menu-icon:nth-child(2) {
    transform: translateY(0) rotate(-225deg);
    background-color: #fff;
  }
  .active .menu-toggle .menu-icon:nth-child(3) {
    display: none;
  }
}
.active .menu-toggle .menu-label {
  color: #fff;
}
@media (max-width: 992px) {
  .active .header__nav-links {
    display: block;
    position: absolute;
    height: 100vh;
    background: linear-gradient(135deg, #A52A2A 0%, #DC6343 100%);
    top: 0;
    width: 100%;
    left: 0;
    padding: 80px 24px 24px;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 992px) {
  .active li a {
    display: block;
    padding: 24px;
    border-bottom: 1px solid #fff;
    color: #fff;
  }
}

/*
    header end
*/
/*
    footer
*/
.footer {
  padding: 48px 40px 64px;
  background-color: #421111;
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    padding: 24px 20px;
  }
}

.footer__cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .footer__cont {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer__cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.footer__logo img {
  width: 200px;
  height: auto;
}
@media (max-width: 992px) {
  .footer__logo img {
    width: 160px;
  }
}

.footer__caption {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media (max-width: 992px) {
  .footer__caption {
    font-size: 14px;
  }
}

.footer__menu-ttl {
  margin-bottom: 16px;
  font-size: 20px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .footer__menu-ttl {
    font-size: 16px;
  }
}

.footer__nav-list {
  margin-left: 24px;
}
.footer__nav-list li {
  margin-bottom: 16px;
}
.footer__nav-list li a {
  color: #fff;
  padding: 8px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.footer__nav-list li a:hover {
  color: #d77a61;
}

.footer__copy {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
}

/*
    footer end
*/
.servicing {
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
  padding: 85px 5% 0;
}
@media (max-width: 992px) {
  .servicing {
    padding-top: 109px;
    padding-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .servicing {
    padding-top: 80px;
  }
}

.servicing__cont {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .servicing__cont {
    flex-wrap: wrap;
    gap: 0;
  }
}

.servicing__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .servicing__text {
    width: 100%;
    order: 2;
  }
}

.servicing__img {
  width: 40%;
  height: auto;
  position: relative;
  top: 0px;
}
@media (max-width: 768px) {
  .servicing__img {
    width: 100%;
    order: 1;
    top: 0;
  }
}

.function {
  padding: 48px 5% 16px;
  background: linear-gradient(135deg, #FFF 0%, #F0F0F0 100%);
}

.func__card-cont {
  flex-wrap: wrap;
  gap: 2%;
}
@media (max-width: 768px) {
  .func__card-cont {
    gap: 0;
  }
}

.func__card {
  width: 32%;
  position: relative;
  padding-top: 40px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .func__card {
    width: 49%;
  }
}
@media (max-width: 768px) {
  .func__card {
    width: 100%;
  }
}

.func__card-number {
  font-size: 32px;
  background-color: #a52a2a;
  padding: 4px 23px;
  color: #fff;
  border-radius: 100%;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .func__card-number {
    font-size: 24px;
    padding: 4px 18px;
    top: -24px;
  }
}

.func__card-ttl {
  font-size: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.func__card-list li {
  font-size: 16px;
  margin-bottom: 16px;
}
.func__card-list li span {
  font-size: 20px;
  color: #a52a2a;
  font-weight: bold;
}
.func__card-list li .fas {
  margin-right: 8px;
  font-size: 24px;
  color: #a52a2a;
}

.merit {
  padding: 48px 5% 16px;
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
}

.merit__card-cont {
  gap: 2%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .merit__card-cont {
    gap: 0;
  }
}

.merit__card {
  width: 49%;
  margin-bottom: 48px;
  padding-top: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .merit__card {
    width: 100%;
  }
}

.merit__card-number {
  font-size: 32px;
  background-color: #a52a2a;
  padding: 4px 23px;
  color: #fff;
  border-radius: 100%;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .merit__card-number {
    font-size: 24px;
    padding: 4px 18px;
    top: -24px;
  }
}

.merit__card-ttl {
  font-size: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.merit__card-list li {
  font-size: 16px;
  margin-bottom: 16px;
}
.merit__card-list li span {
  font-size: 20px;
  color: #a52a2a;
  font-weight: bold;
}
.merit__card-list li .fas {
  margin-right: 8px;
  font-size: 24px;
  color: #a52a2a;
}

.bg-glay {
  background: linear-gradient(135deg, #FFF 0%, #F0F0F0 100%);
}

.planning {
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
  padding: 85px 5% 0;
}
@media (max-width: 992px) {
  .planning {
    padding-top: 109px;
    padding-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .planning {
    padding-top: 80px;
  }
}

.planning__cont {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .planning__cont {
    flex-wrap: wrap;
    gap: 0;
  }
}

.planning__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .planning__text {
    width: 100%;
    order: 2;
  }
}

.planning__img {
  width: 40%;
  height: auto;
  position: relative;
  top: 0px;
}
@media (max-width: 768px) {
  .planning__img {
    width: 100%;
    order: 1;
    top: 0;
  }
}

.selection {
  padding: 48px 5% 64px;
  background-color: #fff;
}

.selec__ttl {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .selec__ttl {
    font-size: 24px;
  }
}

.selec__list {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.selec__list li {
  font-size: 20px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .selec__list li {
    font-size: 16px;
  }
}
.selec__list li:last-child {
  margin-bottom: 0;
}
.selec__list li img {
  width: 40px;
  height: 40px;
  margin-right: 16px;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .selec__list li img {
    width: 32px;
    height: 32px;
  }
}

.company {
  padding: 133px 5% 64px;
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
}

.company__cont {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .company__cont {
    gap: 24px;
    flex-wrap: wrap;
  }
}

.company__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .company__text {
    width: 100%;
    order: 2;
  }
}

.company__img {
  width: 40%;
}
.company__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .company__img {
    width: 100%;
    order: 1;
  }
}

.information {
  padding: 48px 5% 64px;
  background: linear-gradient(135deg, #FFF 0%, #F0F0F0 100%);
}

.info__cont {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .info__cont {
    flex-wrap: wrap;
    gap: 24px;
  }
}

.info__list {
  width: 50%;
}
@media (max-width: 768px) {
  .info__list {
    width: 100%;
  }
}
.info__list li {
  font-size: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .info__list li {
    font-size: 14px;
  }
}

.info__map {
  width: 50%;
}
@media (max-width: 768px) {
  .info__map {
    width: 100%;
  }
}
.info__map iframe {
  width: 100%;
}

.commingsoon {
  background: linear-gradient(135deg, #FFF 0%, #FFE4DD 100%);
  color: #2c2c2c;
  padding: 232px 5%;
}
.commingsoon .secondary-btn {
  margin: 0 auto;
}

.comm__ttl {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .comm__ttl {
    font-size: 24px;
  }
}

.comm__caption {
  font-size: 20px;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .comm__caption {
    font-size: 16px;
  }
}

.contact {
  padding: 133px 5% 64px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto 48px;
}

.form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }
}

.form-row.full {
  flex-direction: column;
  align-items: flex-start;
}
.form-row.full button {
  margin: 0 auto;
}

label {
  width: 200px;
  font-weight: normal;
  padding-top: 10px;
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  label {
    font-size: 14px;
    width: 100%;
  }
}

.required {
  color: #a52a2a;
  font-size: 14px;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .required {
    font-size: 12px;
  }
}

input[type=text],
input[type=email],
select,
textarea {
  flex: 1;
  padding: 16px;
  font-size: 16px;
  background: #f7f7f7;
  border: none;
  border-radius: 8px;
  resize: vertical;
  color: #2c2c2c;
}
@media (max-width: 768px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    font-size: 16px;
    width: 100%;
  }
}

textarea {
  min-height: 200px;
}

.consent {
  font-size: 14px;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
.consent span {
  margin-left: 24px;
}

.consent a {
  color: #3b82f6;
  text-decoration: underline;
}

button {
  border: none;
  cursor: pointer;
}

.contact__desc {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
  color: #555;
}
@media (max-width: 768px) {
  .contact__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.contact__btn {
  text-align: center;
  font-size: 16px;
  line-height: 1;
  padding: 20px 32px;
  background: #a52a2a;
  color: #fff;
  border-radius: 100px;
  font-weight: bold;
  display: block;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.contact__btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: #8b2c2c;
}
@media (max-width: 768px) {
  .contact__btn {
    max-width: 100%;
    width: 100%;
    padding: 16px;
  }
}/*# sourceMappingURL=style.css.map */