* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  color: rgba(42, 42, 42, 1);
}
.flex {
  display: flex;
}
.col {
  flex-direction: column;
}
.a-c {
  align-items: center;
}
.a-b {
  align-items: baseline;
}
.j-c {
  justify-content: center;
}
.j-b {
  justify-content: space-between;
}
.j-a {
  justify-content: space-around;
}
a {
  text-decoration: none;
  color: #000;
}
button {
  cursor: pointer;
}

/* ======== Header ========= */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease-out;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
header .container {
  width: 100%;
  max-width: 1340px;
  height: 100px;
  align-items: center;
}
.logo a {
  font-size: 21px;
  color: #fe002e;
  font-weight: 600;
  text-align: center;
}
.logo p {
  font-size: 12px;
}
.request-btn {
  background-color: #fe002e;
  width: 160px;
  height: 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.request-btn::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50%;
  width: 60%;
  height: 200px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  transform: rotate(25deg); /* slope angle */
  animation: shine 1.5s infinite;
}
@keyframes shine {
  0% {
    transform: translateX(-150%) rotate(25deg);
  }
  100% {
    transform: translateX(250%) rotate(25deg);
  }
}
.request-btn:hover {
  transform: scale(1.1);
}
.request-btn:hover::before {
  animation: shine 1s forwards;
  opacity: 1;
}

.header-btn-group {
  gap: 20px;
  font-family: "Roboto";
  align-items: flex-start;
}

.phone-number {
  background-color: rgba(42, 42, 42, 1);
  width: 160px;
  height: 35px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 13px;
}

.phone-number img {
  width: 17px;
  margin-right: 3.5px;
  margin-top: 2px;
}

.phone-number-sp {
  background-color: rgba(42, 42, 42, 1);
  width: 183px;
  height: 61px;
  border-top-left-radius: 20px;
  font-size: 18px;
  font-family: "Roboto";
  font-weight: 600;
  color: #ffffff;
  position: fixed;
  bottom: 0;
  right: 0;
  display: none;
  z-index: 1000;
  line-height: 17px;
}

.phone-number-sp img {
  width: 13px;
  margin-right: 6px;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .phone-number-wrapper {
    display: none !important;
  }
  .phone-number-sp {
    display: flex;
  }
}

/* ======== Main ============ */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
}
.fv {
  width: 100%;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: -2;
  overflow: hidden;
}
.fv .video-bg {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fv .video-bg iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.fv-container {
  width: 100%;
  position: relative;
  padding-bottom: 100px;
  background: linear-gradient(to bottom, #ffffff, #f2f2f2);
}
.fv .title-img {
  position: absolute;
  bottom: 45px;
  transform: translateY(50px); /* start position: below */
  opacity: 0;
  transition: all 0.6s ease-out;
  width: 100%;
  display: flex;
  justify-content: center;
}
.fv .title-img.animate-in {
  transform: translateY(0); /* final position: normal */
  opacity: 1;
}
.fv .title-img img {
  width: 100%;
  max-width: 870px;
}
.nav-bar {
  gap: 9.5px;
}
.nav-bar span {
  font-size: 18px;
  font-weight: 600;
  width: 127px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(to top, #c73030, #d9341b);
  transform: translateY(50px); /* start position: below */
  opacity: 0;
  transition: all 0.4s ease-out;
}
.nav-bar span.animate-in {
  transform: translateY(0); /* final position: normal */
  opacity: 1;
}
/* Sequential animation delays for each nav item */
.nav-bar span:nth-child(1) {
  transition-delay: 0.1s;
}
.nav-bar span:nth-child(2) {
  transition-delay: 0.3s;
}
.nav-bar span:nth-child(3) {
  transition-delay: 0.5s;
}
.nav-bar span:nth-child(4) {
  transition-delay: 0.7s;
}
.nav-bar span:nth-child(5) {
  transition-delay: 0.9s;
}
.nav-bar span:nth-child(6) {
  transition-delay: 1.1s;
}
.nav-group {
  margin-top: -25px;
}
.outline-txt {
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff,
    2px 2px 0 #fff; /* white outline */
}

.fv .fv-txt {
  width: 100%;
  max-width: 850px;
  background-color: #ffffff;
  padding-block: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 73px;
  text-align: center;
}
.fv .fv-txt p .is-md-show {
  display: none;
}
.fv .fv-txt p:nth-of-type(1) {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}
.fv .fv-txt p:nth-of-type(2) {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.7;
}
.fv .fv-txt p span {
  color: #fe002e;
}
.fv .fv-txt a {
  width: 280px;
  height: 62px;
  background-color: #fe002e;
  border-radius: 200px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  transition: transform 0.3s ease; /* 0.3秒かけて変化させる設定 */
}
.fv .fv-txt a:hover {
  transform: scale(1.1); /* 1.1倍に拡大 */
}
.video-bg.sp {
  display: none;
}
.subtract-img {
  width: 100%;
  position: absolute;
  bottom: 0;
  margin: -1px;
}
/* ------ Msg Video Section ------ */
.msg-section {
  width: 100%;
  position: relative;
  background: linear-gradient(to bottom, #e6e6e6, #fbfdfe);
  z-index: 1;
  overflow: hidden;
}
.msg-container {
  width: 100%;
  max-width: 927px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 80px;
  padding-block: 100px;
}
.section-title {
  line-height: 47px;
  margin-bottom: 80px;
  color: rgba(42, 42, 42, 1);
}
.section-title p {
  transform: translateY(50px); /* start position: below */
  opacity: 0;
  transition: all 0.8s ease-out;
}
.section-title p:nth-of-type(1) {
  font-size: 28px;
  text-align: center;
  transition-delay: 0.2s; /* slight delay for first line */
}
.section-title p:nth-of-type(2) {
  font-size: 46px;
  font-weight: 600;
  text-align: center;
  transition-delay: 0.4s; /* delay for second line */
}
.section-title.animate-on-scroll p {
  transform: translateY(0); /* final position: normal */
  opacity: 1;
}
.section-tip {
  position: absolute;
  font-size: 161px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
}
.section-tip p {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
}
.msg-video {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.msg-section iframe {
  width: 100%;
  aspect-ratio: 16/9;
  z-index: 1000;
  position: relative;
}
.oval {
  display: none;
  width: 2200px;
  height: 550px;
  border-radius: 50%;
  background-color: #d0cdcd;
  position: initial;
  z-index: -1;
  margin-top: -365px;
}

.msg-content {
  width: 100%;
}
.msg-content p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
}
.msg-content p span {
  color: #fe002e;
  font-weight: 700;
}
.msg-content-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.msg-content .notes {
  font-size: 16px;
  margin-top: 20px;
}
.msg-content-title p {
  width: fit-content;
  font-size: 46px;
  color: #ffffff;
  font-weight: 600;
  background-color: #fe002e;
  padding-inline: 18px;
  line-height: normal;
}
.msg-content-title p:nth-of-type(1) {
  padding-right: 0;
}
.msg-section .pr-img-set {
  width: 100%;
  max-width: 1080px;
}
.msg-section .pr-img-box {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.msg-section .pr-img-box img {
  width: 100%;
  max-width: 400px;
}
/* --------------------- */
.effects-section {
  width: 100%;
  background: linear-gradient(to bottom, #d23922, #c73030);
  padding-block: 100px 210px;
  position: relative;
  z-index: -10;
}
.effects-section .tls-word {
  color: #ffffff;
}
.effects-section .section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.benefits-txt {
  width: 100%;
  padding-block: 12px 100px;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  color: #ffffff;
}
.effects-container {
  width: 100%;
  max-width: 1440px;
}
.effect {
  gap: 25px;
  padding-left: 120px;
  background: linear-gradient(to top, #c73030, #d9341b);
  transform: translateY(60px); /* start position: below */
  opacity: 0;
  transition: all 0.8s ease-out;
}
.effect:nth-of-type(2),
.effect:nth-of-type(4) {
  padding-left: unset;
  padding-right: 120px;
}
.effect.animate-on-scroll {
  transform: translateY(0); /* final position: normal */
  opacity: 1;
}
.effect-txt p {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  padding-left: 80px;
  line-height: 30px;
}
.effect-txt-top p {
  font-size: 38px;
  color: #ffffff;
  font-family: "Noto Serif JP", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: normal;
  padding-left: 0;
}
.effect-txt-top span {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 46px;
  color: #ffffff;
  font-weight: 500;
  min-width: 70px;
}
.effect-img img {
  width: 670px;
}
.effects-section .section-tip {
  bottom: -35px;
  left: 70px;
}
.effects-spImg {
  display: none;
  width: 274px;
}
.effects-spImg img {
  width: 100%;
}
.effect-txt-top .is-md-show {
  display: none;
}
.effects-section .benefits-gallery {
  width: 100%;
  padding-block: 80px;
  gap: 60px;
}
.benefits-gallery .gallery-item {
  width: 100%;
  max-width: 900px;
}
.benefits-gallery .gallery-item p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
}
.benefits-gallery .gallery-item img {
  width: 100%;
}
.benefits-gallery .gallery-item .ai-video {
  width: 100%;
  border: 5px solid #fe002e;
  max-width: 900px;
}
.benefits-gallery .gallery-item .ai-video iframe {
  width: 100%;
}
/* ------------------------ */
.flow-section {
  width: 100%;
  background: linear-gradient(to top, #ececec, #ffffff);
  padding-block: 100px 200px;
  position: relative;
}
.tls-word {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.flow-section .tls-word {
  color: #c5341e;
}
.flow-container {
  width: 100%;
  max-width: 1164px;
  gap: 15px;
  flex-wrap: wrap;
  /* Hide scrollbar by default */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}
.flow-container::-webkit-scrollbar {
  display: none; /* WebKit browsers */
}
/* Show scrollbar when actively scrolling */
.flow-container.scrolling {
  scrollbar-width: thin; /* Firefox */
  -ms-overflow-style: auto; /* Internet Explorer 10+ */
}
.flow-container.scrolling::-webkit-scrollbar {
  display: block; /* WebKit browsers */
  width: 8px;
  height: 8px;
}
.flow-container.scrolling::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.flow-container.scrolling::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.flow-container.scrolling::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s ease-out;
}
.step {
  width: 75px;
  height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #c5341e;
  color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: -35px;
  position: inherit;
  z-index: 1;
  line-height: 20px;
  transition: transform 0.5s ease-out;
}
.flow-content {
  background-color: #ffffff;
  width: 340px;
  height: 370px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 27px;
  padding-block: 50px 40px;
  transition: transform 0.5s ease-out;
}

.step p {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
}
.step p:nth-of-type(2) {
  font-size: 28px;
}

.flow-icon img {
  width: 67px;
}
.flow-txt {
  margin-top: 13px;
}
.flow-txt p {
  font-family: "Noto Serif JP", Georgia, "Times New Roman", Times, serif;
  text-align: center;
}
.flow-txt p:nth-of-type(1) {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}
.flow-txt p:nth-of-type(1) span {
  font-family: "Noto Serif JP", Georgia, "Times New Roman", Times, serif;
  font-size: 21px;
  color: #fe002e;
}
.flow-txt p:nth-of-type(2) {
  font-size: 14px;
  margin-top: 12px;
}
.flow-section .section-tip {
  top: unset;
  bottom: -37px;
  left: unset;
  right: 0;
}
.arrow img {
  width: 23px;
}
.flow-content a {
  width: 200px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fe002e;
  border-radius: 100px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 24px;
  transition: transform 0.3s ease; /* 0.3秒かけて変化させる設定 */
}
.flow-content a:hover {
  transform: scale(1.1); /* 1.1倍に拡大 */
}
.flow-txt .is-md-show {
  display: none;
}
/* ----------------------- */
.faq-section {
  width: 100%;
  background: url("../images/faq-bg.png") no-repeat center / cover;
  padding-block: 100px;
  position: relative;
}
.faq-section .tls-word {
  color: #c5341e;
}
.faq-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.q-a {
  background-color: #ffffff;
  padding: 60px 40px;
  border-bottom: 1px solid #c5341e;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(60px); /* start position: below */
  opacity: 0;
  transition: all 0.8s ease-out;
}
.q-a.animate-on-scroll {
  transform: translateY(0); /* final position: normal */
  opacity: 1;
}
.qa {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 24px;
}
.qa img {
  width: 26px;
}
.question {
  font-weight: 600;
}

/* ==== Footer ===== */
footer {
  width: 100%;
  background-color: #2a2a2a;
  font-size: 11px;
  color: #ffffff;
  margin-top: -1px;
}
.footer-container {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer a {
  font-size: 11px;
  color: #ffffff;
  text-decoration: underline;
}

/* ==== Responsive ====== */

@media (max-width: 1365px) {
  header .container {
    padding-inline: 30px;
  }
  .fv-container {
    width: 100%;
    padding-inline: 30px;
  }
  .msg-section {
    padding-inline: 20px;
  }
  .msg-section .section-tip {
    bottom: -100px;
    z-index: -1;
  }
  .effect-img img {
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .flow-container {
    padding-inline: 20px;
    justify-content: center;
  }
}
@media (max-width: 1100px) {
  .title h1 {
    font-size: 60px;
  }
  .title-btm p {
    font-size: 45px;
  }
  .title-btm h2 {
    font-size: 45px;
  }
  .nav-bar span {
    width: 100px;
    height: 40px;
  }
  .female-photo {
    right: -41px;
  }
  .female-photo img {
    width: 520px;
  }
  .msg-section .section-tip {
    font-size: 140px;
  }
  .effect {
    padding-left: 40px;
    gap: 15px;
  }
  .effect:nth-of-type(2) {
    padding-right: 40px;
  }
  .effect-txt .effect-txt-top p,
  .effect-txt .effect-txt-top span {
    font-size: 32px;
  }
  .effect-img img {
    width: 450px;
  }
}
@media (max-width: 950px) {
  .title {
    margin-top: 75px;
  }
  .title-btm {
    display: block;
  }
}
@media (max-width: 820px) {
  .flow-content {
    width: 240px;
    height: 356px;
    padding: 44px 10px 30px 10px;
  }
  .step {
    width: 67px;
    height: 67px;
    margin-bottom: -30px;
  }
  .flow-icon img {
    width: 74px;
  }
  .flow-txt p:nth-of-type(1) {
    font-size: 20px;
  }
  .flow-txt p:nth-of-type(2) {
    font-size: 12px;
    line-height: 1.5;
  }
  .flow-content a {
    width: 220px;
    height: 54px;
    margin-top: 12px;
  }
  .flow-txt .is-md-hide {
    display: none;
  }
  .flow-txt .is-md-show {
    display: block;
  }
}
@media (max-width: 768px) {
  header .container {
    background-color: #ffffff;
    height: 60px;
    padding-inline: 20px;
  }
  .video-bg.pc {
    display: none;
  }
  .video-bg.sp {
    display: flex;
  }
  .fv .title-img {
    bottom: 160px;
  }
  .fv-container {
    height: fit-content;
    padding: 40px 20px;
  }
  .fv .fv-txt {
    margin-top: 0;
    padding: 40px 10px;
  }
  .fv .fv-txt p:nth-of-type(1) {
    font-size: 21px;
  }
  .fv .fv-txt p:nth-of-type(2) {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .fv-container .nav-group {
    display: none;
  }
  .fv .title-img img {
    max-width: 355px;
  }
  .nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav-bar span {
    width: 31%;
    height: 60px;
    transform: translateY(50px);
  }
  .nav-bar span.animate-in {
    transform: translateY(0);
  }
  .subtract-img {
    display: none;
  }
  .msg-section {
    background: unset;
    background: linear-gradient(to bottom, #e6e6e6, #fbfdfe);
  }
  .msg-section .pr-img-set {
    display: none;
  }
  .msg-section .pr-img-box {
    display: flex;
  }
  .oval {
    display: block;
    position: absolute;
    bottom: -100px;
    width: 1000px;
    height: 280px;
  }
  .msg-container {
    gap: 40px;
    padding-block: 60px;
  }
  .msg-content-title {
    gap: 12px;
  }
  .msg-content-title p {
    font-size: 28px;
    padding-inline: 12px;
  }
  .section-tip {
    display: none;
  }
  .section-title {
    line-height: 40px;
  }
  .section-title p {
    transform: translateY(50px);
  }
  .section-title.animate-on-scroll p {
    transform: translateY(0);
  }
  .section-title p:nth-of-type(1) {
    font-size: 24px;
  }
  .section-title p:nth-of-type(2) {
    font-size: 35px;
  }
  .effects-section {
    padding-block: 60px;
  }
  .effects-container {
    padding-inline: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .effect {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 20px;
    padding: 20px 10px;
    transform: translateY(60px);
  }
  .effect.animate-on-scroll {
    transform: translateY(0);
  }
  .effect-txt p:nth-of-type(1) {
    margin-bottom: 20px;
    padding-left: 0;
  }
  .effect-txt p:nth-of-type(2) {
    padding: 0;
  }
  .effect:nth-of-type(2),
  .effect:nth-of-type(4) {
    padding-right: 10px;
  }
  .effects-section .benefits-gallery {
    padding-block: 40px 0;
    padding-inline: 20px;
    gap: 40px;
  }
  .pc {
    display: none;
  }
  .effects-spImg {
    display: block;
  }
  .flow-section {
    padding-block: 60px;
  }
  .flow-container {
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: unset;
  }
  .faq-section {
    padding-block: 60px;
    padding-inline: 30px;
  }
  .benefits-txt {
    display: none;
  }
  .effect-txt .effect-txt-top span {
    font-size: 28px;
  }
  .effect-txt .effect-txt-top p {
    font-size: 24px;
  }
  .effect-txt .is-md-hide {
    display: none;
  }
  .effect-txt-top .is-md-show {
    display: block;
  }
  .footer-container {
    height: 120px;
  }
}
@media (max-width: 600px) {
  .fv .fv-txt p .is-md-show {
    display: block;
  }
}
@media (max-width: 500px) {
  header .container {
    height: 55px;
  }
  .logo {
    line-height: 16px;
  }
  .logo a {
    font-size: 18px;
  }
  .logo p {
    font-size: 11px;
  }
  .request-btn {
    width: 90px;
  }
  .fv-container {
    padding-top: 55px;
  }
  .fv .title-img {
    bottom: 114px;
  }
  .nav-group p {
    font-size: 15px;
  }
  .nav-bar span {
    height: 45px;
    transform: translateY(50px);
  }
  .nav-bar span.animate-in {
    transform: translateY(0);
  }
  .msg-content p {
    font-size: 18px;
  }
  .msg-content-title p {
    font-size: 25px;
  }
  .msg-content p .is-md-hide {
    display: none;
  }
  .section-title {
    line-height: 30px;
    margin-bottom: 60px;
  }
  .section-title p {
    transform: translateY(50px);
  }
  .section-title.animate-on-scroll p {
    transform: translateY(0);
  }
  .section-title p:nth-of-type(1) {
    font-size: 18px;
  }
  .section-title p:nth-of-type(2) {
    font-size: 28px;
  }
  .oval {
    bottom: -80px;
    width: 729px;
    height: 182px;
  }
  .flow-txt p:nth-of-type(1) {
    font-size: 24px;
  }
  .flow-txt {
    margin-top: 0;
  }
  .flow-content {
    width: 240px;
    height: 305px;
    padding: 34px 10px 19px 10px;
  }

  .faq-section {
    padding-inline: 20px;
  }
  .q-a {
    padding: 20px 10px;
    gap: 16px;
    transform: translateY(60px);
  }
  .q-a.animate-on-scroll {
    transform: translateY(0);
  }
  .qa {
    gap: 10px;
  }
  .fv-ad-tp {
    font-size: 24px;
  }
  .fv-ad-btm {
    font-size: 14px;
  }
  .fv-ad-btm p::after {
    bottom: 0;
  }
  footer {
    font-size: 14px;
  }
  .footer-container {
    height: fit-content;
    padding-block: 42px 60px;
  }
}
@media (max-width: 375px) {
  .nav-bar span {
    font-size: 15px;
  }
}

/* ------ OPTION ------- */
.option-section {
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(210, 57, 34, 1),
    rgba(199, 48, 48, 1)
  );
  padding-block: 100px;
  position: relative;
}
.option-section .option-box {
  width: 100%;
  max-width: 1204px;
  padding-block: 45.5px;
}
.option-box-txt {
  padding: 46px 60px;
}
.option-box-txt h2 {
  width: 100%;
  font-size: 46px;
  color: #c5341e;
  background-color: #ffffff;
  text-align: center;
  padding-inline: 18px;
  margin-bottom: 24px;
}
.option-box-txt p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
  letter-spacing: 1px;
}
.option-box-txt p span {
  color: #c5341e;
  font-weight: 600;
  background-color: #ffffff;
  padding-left: 8px;
  line-height: 1;
}
.option-box img {
  width: 100%;
  max-width: 540px;
}
.option-section .section-tip {
  bottom: -25px;
  right: 99px;
  line-height: 1;
}
@media (max-width: 1204px) {
  .option-box img {
    max-width: 362px;
  }
}
@media (max-width: 1024px) {
  .option-box-txt {
    padding: 30px 10px;
  }
  .option-box-txt h2 {
    font-size: 28px;
  }
  .option-box-txt p {
    font-size: 16px;
  }
  .option-section .section-tip {
    right: 0;
  }
}
@media (max-width: 768px) {
  .option-section {
    padding: 60px 20px;
  }
  .option-section .option-box {
    flex-direction: column;
    padding-block: 0;
  }
  .option-box-txt {
    padding: 0;
    margin-bottom: 24px;
  }
  .option-box-txt h2 {
    padding-inline: 10px;
  }
}

.brand-section {
  width: 100%;
  background: url("../images/brand-bg.png") no-repeat center / cover;
  padding-block: 160px 100px;
  position: relative;
}
.brand-section img {
  width: 481px;
  position: absolute;
  bottom: 0;
  right: 57px;
  z-index: 1;
}
.brand-section .brand-container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}
.brand-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.brand-title p {
  font-size: 46px;
  font-weight: bold;
  width: fit-content;
  padding-inline: 18px;
  background-color: #fe002e;
  color: #ffffff;
}
.brand-title p:nth-of-type(1) {
  padding-right: 0;
}
.brand-content {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
}
.brand-content .brand-content-top {
  margin-bottom: 20px;
}
.brand-content span {
  color: #fe002e;
  font-weight: 700;
}
.brand-content .is-md-show {
  display: none;
}
@media (max-width: 1024px) {
  .brand-section {
    padding-inline: 20px;
  }
  .brand-section img {
    width: 390px;
  }
}
@media (max-width: 768px) {
  .brand-section {
    padding-block: 60px 50px;
    overflow: hidden;
  }
  .brand-title {
    gap: 12px;
  }
  .brand-title p {
    font-size: 25px;
    padding-inline: 10px;
  }
  .brand-content {
    font-size: 18px;
  }
  .brand-section img {
    width: 268px;
    right: -69px;
  }
}
@media (max-width: 600px) {
  .brand-content p:nth-of-type(2) {
    width: 200px;
  }
  .brand-content .brand-content-top br {
    display: none;
  }
  .brand-content .is-md-hide {
    display: none;
  }
  .brand-content .is-md-show {
    display: block;
  }
}
