@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
  background: #f9f6f2;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

a {
  color: #667eea;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #764ba2;
  outline-offset: 2px;
}

strong, b {
  font-weight: 700;
}

@media all and (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.wrapper {
  background: #f9f6f2;
}
@media all and (min-width: 751px) {
  .wrapper {
    padding: 11rem 0 0 0;
  }
}
@media all and (max-width: 750px) {
  .wrapper {
    padding: 7rem 0 0 0;
  }
}

.headerfix {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media all and (min-width: 751px) {
  .headerfix {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0 1rem;
  }
}

header {
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
}
@media all and (min-width: 751px) {
  header {
    height: auto;
    margin-bottom: 0.5rem;
  }
}
@media all and (max-width: 750px) {
  header {
    height: 7rem;
    justify-content: space-between;
  }
}

@media all and (min-width: 751px) {
  .header1 {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
@media all and (max-width: 750px) {
  .header1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.header2 {
  width: 100%;
}
.header2 h1 {
  width: 100%;
  text-align: center;
}
.header2 h1 a {
  display: inline-block;
}
@media all and (max-width: 750px) {
  .header2 h1 a {
    height: 3.2rem;
    align-items: center;
  }
}
@media all and (min-width: 751px) {
  .header2 h1 a img {
    width: auto;
    height: 5rem;
  }
}
@media all and (max-width: 750px) {
  .header2 h1 a img {
    height: 5rem;
  }
}

@media all and (min-width: 751px) {
  .openbtn {
    display: none;
  }
}
@media all and (max-width: 750px) {
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 0 0 0 3px;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    right: 1.5rem;
    height: 3px;
    border-radius: 2px;
    background-color: #764ba2;
    width: 3rem;
  }
  .openbtn span:nth-of-type(1) {
    top: 2.2rem;
  }
  .openbtn span:nth-of-type(2) {
    top: 3.2rem;
  }
  .openbtn span:nth-of-type(3) {
    top: 4.2rem;
  }
  .openbtn.active span {
    background-color: #764ba2 !important;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }
}

@media all and (min-width: 751px) {
  #g-nav {
    text-align: center;
    width: 100%;
    padding: 0;
    background: transparent;
  }
  #g-nav ul {
    position: relative;
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  #g-nav ul li {
    display: flex;
    align-items: center;
    border: none;
  }
  #g-nav ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #333333;
    padding: 0.8rem 1.8rem;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    font-weight: 500;
    border-radius: 100px;
    position: relative;
  }
  #g-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #764ba2;
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  #g-nav ul li a:hover,
  #g-nav ul li a:focus-visible {
    color: #764ba2;
  }
  #g-nav ul li a:hover::after,
  #g-nav ul li a:focus-visible::after {
    width: 60%;
  }
}
@media all and (max-width: 750px) {
  #g-nav {
    position: fixed;
    z-index: -1;
    display: none;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    transition: all 0.3s;
  }
  #g-nav.panelactive {
    display: block;
    z-index: 999;
  }
  #g-nav.panelactive ul {
    width: 90%;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    margin: 7rem auto 0;
    padding: 2rem 0;
  }
  #g-nav ul {
    display: none;
    z-index: 999;
  }
  #g-nav li {
    list-style: none;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #e0e0e0;
  }
  #g-nav li:first-child {
    border-top: 1px solid #e0e0e0;
  }
  #g-nav li a {
    color: #333333;
    text-decoration: none;
    padding: 1.2rem 1rem;
    display: flex;
    text-transform: none;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background: transparent;
    border-radius: 0;
    width: 100%;
    margin: 0 auto;
    height: auto;
    justify-content: center;
    align-items: center;
    line-height: 1.8;
    transition: background 0.3s;
  }
  #g-nav li a:hover {
    background: rgba(0, 0, 0, 0.03);
  }
}

footer {
  width: 100%;
}

.footer__w {
  width: 100%;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  position: relative;
}
.footer__w p {
  font-size: 1.2rem;
  text-align: center;
  color: #ffffff;
}
@media all and (min-width: 751px) {
  .footer__w p {
    padding: 0 0 50px 0;
  }
}
@media all and (max-width: 750px) {
  .footer__w p {
    padding: 0 0 2vw 0;
  }
}

.footer1 {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (min-width: 751px) {
  .footer1 {
    width: 1200px;
  }
}
@media all and (max-width: 750px) {
  .footer1 {
    width: 100%;
  }
}
.footer1 img {
  width: 100%;
}

.footer2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.footer3 {
  width: 100%;
  margin-bottom: 2rem;
  font-weight: 400;
}
@media all and (min-width: 751px) {
  .footer3 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 750px) {
  .footer3 {
    font-size: 1.4rem;
  }
}

.footer4 {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media all and (min-width: 751px) {
  .footer4 {
    letter-spacing: 0.2rem;
  }
}
@media all and (max-width: 750px) {
  .footer4 {
    letter-spacing: 0.05rem;
  }
}

.footer5 a {
  color: #ffffff;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media all and (min-width: 751px) {
  .footer5 a {
    font-size: 3rem;
  }
}
@media all and (max-width: 750px) {
  .footer5 a {
    font-size: 2rem;
  }
}

.footer_logo {
  margin: 0 auto;
  text-align: center;
}
@media all and (min-width: 751px) {
  .footer_logo {
    width: 280px;
    padding: 80px 0 70px;
  }
}
@media all and (max-width: 750px) {
  .footer_logo {
    width: 100%;
    padding: 10vw 0 5vw;
  }
}
@media all and (min-width: 751px) {
  .footer_logo img {
    width: 100%;
  }
}
@media all and (max-width: 750px) {
  .footer_logo img {
    width: 40%;
  }
}

.footer-links {
  text-align: center;
  margin-bottom: 2rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-links__separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 1rem;
}

.btn_pagetop {
  position: fixed;
  bottom: 1rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.btn_pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
@media all and (min-width: 751px) {
  .btn_pagetop {
    right: 20px;
  }
}
@media all and (max-width: 750px) {
  .btn_pagetop {
    right: 1rem;
    z-index: 3;
  }
}
.btn_pagetop a {
  display: block;
  transition: all 0.3s ease;
}
@media all and (min-width: 751px) {
  .btn_pagetop a {
    width: 50px;
  }
}
@media all and (max-width: 750px) {
  .btn_pagetop a {
    width: 40px;
  }
}
.btn_pagetop a:hover {
  text-decoration: none;
  transform: translateY(-3px);
  filter: drop-shadow(0 4px 8px rgba(118, 75, 162, 0.4));
}
.btn_pagetop a img {
  width: 100%;
  display: block;
}

.swiper__w {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #e8e6df;
}
@media all and (min-width: 751px) {
  .swiper__w {
    height: 650px;
  }
}
@media all and (max-width: 750px) {
  .swiper__w {
    height: auto;
  }
}
.swiper__w::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #f9f6f2 100%);
  pointer-events: none;
  z-index: 2;
}

.swiper {
  width: 100%;
  position: relative;
}
@media all and (min-width: 751px) {
  .swiper {
    height: 600px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
@media all and (max-width: 750px) {
  .swiper-slide img {
    object-position: center center;
  }
}
.swiper-slide.swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

.swiper_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media all and (max-width: 750px) {
  .swiper_txt {
    width: 100%;
  }
}

@media all and (max-width: 750px) {
  .swiper_txt0 {
    padding: 7rem 3rem;
    width: 75%;
    margin: 0 auto;
  }
}

.swiper_txt1 {
  width: 100%;
}

.swiper_txt2 {
  width: 100%;
  text-align: center;
}
@media all and (min-width: 751px) {
  .swiper_txt2 img {
    width: 669px;
  }
}
@media all and (max-width: 750px) {
  .swiper_txt2 img {
    width: 100%;
  }
}

.swiper_txt3 {
  width: 100%;
  text-align: center;
}
.swiper_txt3 a {
  display: inline-block;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  font-weight: 400;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  background: #e94919;
  border-radius: 3px;
  padding: 1.8rem 6rem;
}
.swiper-button-prev {
  display: none !important;
}

.mainimg_w {
  position: relative;
}
@media all and (min-width: 751px) {
  .mainimg_w {
    width: 100%;
  }
}
@media all and (max-width: 750px) {
  .mainimg_w {
    height: 90vh;
    background-position: top center !important;
    background-size: contain !important;
    text-align: center;
    background-repeat: no-repeat !important;
  }
}

@media all and (min-width: 751px) {
  .alink {
    margin-top: -5rem;
    padding-top: 11rem;
  }
}
@media all and (max-width: 750px) {
  .alink {
    margin-top: -7rem;
    padding-top: 7rem;
  }
}

.about__w {
  width: 100%;
}

.about1 {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (min-width: 751px) {
  .about1 {
    width: 1000px;
    padding: 8rem 0 10rem;
  }
}
@media all and (max-width: 750px) {
  .about1 {
    width: 100%;
    padding: 6rem 0 4rem;
  }
}

.about2 {
  width: 100%;
  text-align: center;
  position: relative;
}
@media all and (min-width: 751px) {
  .about2 {
    margin-bottom: 5rem;
    padding-bottom: 2rem;
  }
}
@media all and (max-width: 750px) {
  .about2 {
    margin-bottom: 3rem;
    padding: 0 2rem 1.5rem;
  }
}
.about2 h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #1a1a1a;
  display: inline-block;
  position: relative;
  padding-bottom: 1rem;
}
@media all and (min-width: 751px) {
  .about2 h2 {
    font-size: 2.4rem;
    letter-spacing: 0.15rem;
  }
}
@media all and (max-width: 750px) {
  .about2 h2 {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
.about2 h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1em;
  width: calc(100% + 2em);
  height: 2px;
  background: #764ba2;
}
.about2 h2::before {
  content: "";
  position: absolute;
  bottom: 2px;
  right: calc(-1em - 34px);
  width: 32px;
  height: 28px;
  background: url(../images/pen.svg) no-repeat center/contain;
}
@media all and (max-width: 750px) {
  .about2 h2::before {
    width: 24px;
    height: 22px;
    right: calc(-1em - 28px);
    bottom: 4px;
  }
}

.about3 {
  width: 100%;
}

.about4, .about4-2 {
  border-radius: 10px;
  margin: 0 auto 5rem;
  line-height: 2.5;
  text-align: center;
}
@media all and (min-width: 751px) {
  .about4, .about4-2 {
    width: 800px;
    font-size: 1.8rem;
    padding: 0 3rem;
  }
}
@media all and (max-width: 750px) {
  .about4, .about4-2 {
    width: 100%;
    padding: 0 3rem;
    margin: 0 auto 3rem;
  }
}
.about4 a, .about4-2 a {
  color: #764ba2;
  border-bottom: 1px solid #764ba2;
}
.about4 a:hover, .about4-2 a:hover {
  opacity: 0.7;
}

.about6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (min-width: 751px) {
  .about6 {
    width: 800px;
    margin: 0 auto 5rem;
    gap: 20px;
  }
}
@media all and (max-width: 750px) {
  .about6 {
    width: 95%;
    margin: 0 auto 5rem;
    flex-direction: column;
    gap: 20px;
  }
}

.about5 {
  text-align: center;
}
@media all and (min-width: 751px) {
  .about5 {
    width: calc(50% - 10px);
    margin: 0;
  }
}
@media all and (max-width: 750px) {
  .about5 {
    width: 100%;
    margin-top: 3rem;
  }
}
.about5 a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.about5 a:hover {
  opacity: 0.8;
}
.about5 a {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: #ffffff;
  border-radius: 10px;
  padding: 3rem 2rem;
  font-size: 1.8rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(118, 75, 162, 0.3);
}
.about5 a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(118, 75, 162, 0.45);
  background: linear-gradient(135deg, #8b5fbf 0%, #7b91f0 100%);
  opacity: 1;
}
.about5 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  transform: rotate(45deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.about5 a {
  display: inline-block;
  width: 100%;
}
@media all and (min-width: 751px) {
  .about5 a {
    width: 380px;
  }
}
.about5 a span {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 3rem 2rem;
}

.about5-1 a span {
  padding: 1.55rem 0 !important;
}
@media all and (max-width: 750px) {
  .about5-1 a span {
    padding: 1.8rem 0 !important;
  }
}

@media all and (min-width: 751px) {
  .about7 {
    width: 48%;
  }
}
@media all and (max-width: 750px) {
  .about7 {
    width: 100%;
  }
}
.about7 a {
  position: relative;
  text-align: center;
  width: 100%;
  display: inline-block;
  border-radius: 10px;
  color: #764ba2;
  background: #ffffff;
  border: 2px solid #764ba2;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
@media all and (min-width: 751px) {
  .about7 a {
    padding: 3rem 0;
    font-size: 1.6rem;
    margin-right: 2.5%;
    margin-bottom: 2rem;
  }
}
@media all and (max-width: 750px) {
  .about7 a {
    padding: 2rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.about7 a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: #ffffff;
  border-color: transparent;
}
.about7 a:hover span::after {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
}
.about7 a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  transform: rotate(45deg);
  border-top: 2px solid #764ba2;
  border-right: 2px solid #764ba2;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.about7:nth-child(2n) {
  margin-right: 0;
}

.about8 {
  width: 100%;
  text-align: center;
}
@media all and (min-width: 751px) {
  .about8 {
    margin-top: 2rem;
  }
}
@media all and (max-width: 750px) {
  .about8 {
    margin-top: 1rem;
    padding: 0 2rem;
    font-size: 1.2rem;
  }
}
.about8 a {
  color: #764ba2;
  border-bottom: 1px solid #764ba2;
}
.about8 a:hover {
  opacity: 0.7;
}

.concept-lead {
  font-family: "Noto Serif JP", serif;
  text-align: justify;
  font-size: 1.8rem;
  line-height: 2.2;
  color: #333333;
}
@media all and (min-width: 751px) {
  .concept-lead {
    font-size: 2rem;
    padding: 4rem 2rem;
  }
}
@media all and (max-width: 750px) {
  .concept-lead {
    font-size: 1.6rem;
    padding: 2rem;
    line-height: 2;
  }
}

.concept-highlight {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #764ba2;
  font-size: 120%;
}


.concept-quote-inline {
  font-weight: 700;
  color: #764ba2;
}

.feature-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 20px;
}
@media all and (min-width: 751px) {
  .feature-list {
    margin-bottom: 7rem;
  }
}
@media all and (max-width: 750px) {
  .feature-list {
    margin-bottom: 40px;
  }
}

.feature-item {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}
@media all and (min-width: 751px) {
  .feature-item {
    margin-bottom: 6rem;
  }
}
@media all and (max-width: 750px) {
  .feature-item {
    margin-bottom: 40px;
  }
}
.feature-item:last-child {
  margin-bottom: 0;
}

.feature-header {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #764ba2;
  border: none;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  height: 40px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.2);
  white-space: nowrap;
  width: 320px;
  padding: 0 30px;
}

.feature-text {
  padding: 4rem 3rem 2rem;
  line-height: 1.8;
  text-align: justify;
  font-size: 1.5rem;
}
@media all and (max-width: 750px) {
  .feature-text {
    padding: 3rem 2rem 1.5rem;
    font-size: 1.4rem;
  }
}

.feature-list--grid {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
  margin-bottom: 5rem;
}
@media all and (max-width: 750px) {
  .feature-list--grid {
    flex-direction: column;
    gap: 5rem;
  }
}

@media all and (min-width: 751px) {
  .feature-item--grid {
    width: calc((100% - 6rem) / 3);
    margin-bottom: 0;
  }
}
.feature-item--grid .feature-header {
  width: 220px;
  padding: 0 15px;
  font-size: 1.4rem;
}
.feature-item--grid .feature-text {
  padding: 3.5rem 2rem 2rem;
  font-size: 1.4rem;
}

@media all and (min-width: 751px) {
  .about6-sm {
    width: 600px;
    gap: 15px;
  }
}
@media all and (max-width: 750px) {
  .about6-sm {
    width: 100%;
    padding: 0 2rem;
    margin-top: 3rem;
    gap: 15px;
  }
}

@media all and (min-width: 751px) {
  .about5-sm {
    width: calc(50% - 8px);
  }
}
@media all and (max-width: 750px) {
  .about5-sm {
    margin-top: 0;
  }
}
.about5-sm a {
  font-weight: 700;
}
@media all and (min-width: 751px) {
  .about5-sm a {
    width: 100% !important;
    font-size: 1.6rem !important;
  }
}
@media all and (max-width: 750px) {
  .about5-sm a {
    font-size: 1.6rem !important;
  }
}
@media all and (min-width: 751px) {
  .about5-sm a span {
    padding: 1.2rem 1rem !important;
  }
}
@media all and (max-width: 750px) {
  .about5-sm a span {
    padding: 1rem 1rem !important;
  }
}

.voice-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.voice-item {
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 10px;
  padding: 3rem;
  margin-bottom: 2rem;
  position: relative;
}
@media all and (max-width: 750px) {
  .voice-item {
    padding: 2rem;
  }
}
.voice-item::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: "Noto Serif JP", serif;
  color: #d4c8e8;
  opacity: 0.5;
  line-height: 1;
}
@media all and (max-width: 750px) {
  .voice-item::before {
    font-size: 3rem;
  }
}

.voice-text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 2.5;
  color: #333333;
  padding-left: 2rem;
}
@media all and (max-width: 750px) {
  .voice-text {
    padding-left: 1rem;
    font-size: 1.4rem;
  }
}

.voice-author {
  text-align: right;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: #666666;
}

.company-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.company-table table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr {
  border-bottom: 1px solid #e5e0e8;
}
.company-table th, .company-table td {
  padding: 1.5rem 1rem;
  text-align: left;
  vertical-align: top;
}
@media all and (max-width: 750px) {
  .company-table th, .company-table td {
    display: block;
    padding: 1rem;
  }
}
.company-table th {
  width: 150px;
  font-weight: 500;
  color: #764ba2;
  background: #f5f3f7;
}
@media all and (max-width: 750px) {
  .company-table th {
    width: 100%;
    padding-bottom: 0.5rem;
  }
}
@media all and (max-width: 750px) {
  .company-table td {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }
}

@media all and (min-width: 751px) {
  .hyosho-container.reason-container {
    justify-content: center;
    gap: 15px;
  }
}

@media all and (min-width: 751px) {
  .hyosho-box.reason-box {
    width: 32%;
  }
}
@media all and (max-width: 750px) {
  .hyosho-box.reason-box {
    margin-bottom: 50px;
  }
}

.reason-text {
  padding: 4rem 2rem 2rem;
  text-align: justify;
  line-height: 1.8;
  font-size: 1.4rem;
}

.boshu {
  background: #f5f3f7;
  border-radius: 10px;
  padding: 3rem !important;
  margin-top: 3rem;
}
@media all and (max-width: 750px) {
  .boshu {
    padding: 2rem !important;
  }
}
.boshu h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
.boshu ul, .boshu ol {
  margin-top: 1rem;
}
.boshu ul li, .boshu ol li {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.boshu ul li:last-child, .boshu ol li:last-child {
  margin-bottom: 0;
}

.accordion-block {
  margin: 0 auto 70px;
}
@media all and (min-width: 751px) {
  .accordion-block {
    width: 800px;
  }
}
@media all and (max-width: 750px) {
  .accordion-block {
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
  }
}

.accordion-item {
  background-color: #ffffff;
  border: 1px solid #e5e0e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.12);
}
.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-title {
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
@media all and (min-width: 751px) {
  .accordion-title {
    padding: 20px 50px 20px 20px;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 750px) {
  .accordion-title {
    padding: 15px 45px 15px 15px;
    font-size: 1.4rem;
  }
}
.accordion-title:hover {
  background: #f5f3f7;
}
.accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #764ba2;
  transition: transform 0.3s ease;
}
@media all and (min-width: 751px) {
  .accordion-title::after {
    right: 20px;
  }
}
@media all and (max-width: 750px) {
  .accordion-title::after {
    right: 15px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #764ba2;
  }
}
.accordion-title.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  display: none;
  border-top: 1px solid #e5e0e8;
  background: #f5f3f7;
}
@media all and (min-width: 751px) {
  .accordion-content {
    padding: 20px;
  }
}
@media all and (max-width: 750px) {
  .accordion-content {
    padding: 15px;
  }
}
.accordion-content p {
  line-height: 1.8;
  text-align: justify;
}

@media all and (max-width: 750px) {
  .s_01 {
    padding: 0 0 10vw 0;
  }
}
.s_01 .accordion_one .accordion_header {
  cursor: pointer;
  transition: all 0.3s;
}
.s_01 .accordion_one .accordion_inner {
  display: none;
}

.js-title {
  cursor: pointer;
}
.vote-cta {
  margin: 0 auto 5rem;
  text-align: center;
}
@media all and (min-width: 751px) {
  .vote-cta {
    width: 800px;
  }
}
@media all and (max-width: 750px) {
  .vote-cta {
    width: 100%;
    padding: 0 3rem;
    box-sizing: border-box;
  }
}
.vote-cta a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.vote-cta a:hover {
  opacity: 0.8;
}
.vote-cta a {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 100px;
  padding: 2rem 4rem;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}
.vote-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(118, 75, 162, 0.5);
  background: linear-gradient(135deg, #8b5fbf 0%, #7b91f0 100%);
  opacity: 1;
}
@media all and (min-width: 751px) {
  .vote-cta a {
    font-size: 1.8rem;
    padding: 2rem 4rem;
  }
}
@media all and (max-width: 750px) {
  .vote-cta a {
    display: block;
    font-size: 1.4rem;
    padding: 1.8rem 2.5rem;
  }
}
.vote-cta a .vote-cta-text {
  position: relative;
  padding-right: 2rem;
}
.vote-cta a .vote-cta-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
}

.btn-flat-border {
  display: inline;
  padding: 0.1em 0.5em 0.2em;
  text-decoration: none;
  color: #ffffff;
  background: #764ba2;
  border-radius: 5px;
  transition: 0.3s;
  margin-right: 10px;
  font-size: 80%;
}
.btn-flat-border:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background: #8b5fbf;
  color: #ffffff;
  opacity: 1;
}

.readmore,
.readmore05 {
  position: relative;
  margin: 3em auto;
  display: block;
  color: #666666;
  border: none;
  outline: 0;
  cursor: pointer;
  background: transparent;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .readmore,
  .readmore05 {
    padding-bottom: 17rem;
  }
}
@media all and (max-width: 750px) {
  .readmore,
  .readmore05 {
    padding-bottom: 6rem;
  }
}
.readmore::before,
.readmore05::before {
  content: "";
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 0 auto 0.5em;
  background: url(../images/arrow.png) no-repeat center/20px #ffffff;
  transition: 0.3s;
}
.readmore.on-click::before,
.readmore05.on-click::before {
  transform: rotate(180deg);
}
.readmore .open,
.readmore05 .open {
  display: block;
}
.readmore.on-click .open,
.readmore05.on-click .open {
  display: none;
}
.readmore .close,
.readmore05 .close {
  display: none;
}
.readmore.on-click .close,
.readmore05.on-click .close {
  display: block;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.renkei-table {
  width: 100%;
  border-collapse: collapse;
}
@media all and (min-width: 751px) {
  .renkei-table {
    font-size: 1.4rem;
    min-width: 800px;
  }
}
@media all and (max-width: 750px) {
  .renkei-table {
    font-size: 1.2rem;
    min-width: 700px;
  }
}
.renkei-table thead {
  background: #f0f8ff;
}
.renkei-table th,
.renkei-table td {
  border: 1px solid #c5c0c8;
  text-align: left;
  vertical-align: middle;
}
@media all and (min-width: 751px) {
  .renkei-table th,
  .renkei-table td {
    padding: 12px 10px;
  }
}
@media all and (max-width: 750px) {
  .renkei-table th,
  .renkei-table td {
    padding: 8px 6px;
  }
}
.renkei-table th {
  font-weight: 700;
  white-space: nowrap;
  color: #333333;
}
.renkei-table tbody tr:nth-child(odd) {
  background: #ffffff;
}
.renkei-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.renkei-table tbody tr:hover {
  background: #f5f5dc;
}
.renkei-table .col-no {
  text-align: center;
}
@media all and (min-width: 751px) {
  .renkei-table .col-no {
    width: 50px;
  }
}
@media all and (max-width: 750px) {
  .renkei-table .col-no {
    width: 40px;
  }
}
@media all and (min-width: 751px) {
  .renkei-table .col-company {
    width: 200px;
  }
}
@media all and (max-width: 750px) {
  .renkei-table .col-company {
    width: 150px;
  }
}
.renkei-table .col-title {
  width: auto;
}
@media all and (min-width: 751px) {
  .renkei-table .col-partner {
    width: 180px;
  }
}
@media all and (max-width: 750px) {
  .renkei-table .col-partner {
    width: 140px;
  }
}
@media all and (min-width: 751px) {
  .renkei-table .col-other {
    width: 180px;
  }
}
@media all and (max-width: 750px) {
  .renkei-table .col-other {
    width: 140px;
  }
}

.about9 {
  width: 100%;
  margin-top: 5rem;
}
.about9 table {
  margin: 0 auto;
  border: 1px solid #e5e0e8;
}
@media all and (min-width: 751px) {
  .about9 table {
    width: 740px;
  }
}
@media all and (max-width: 750px) {
  .about9 table {
    width: 90%;
  }
}
.about9 table th {
  border: 1px solid #e5e0e8;
  padding: 2rem;
  text-align: center;
  background: #f0f0f0;
  vertical-align: middle;
}
@media all and (min-width: 751px) {
  .about9 table th {
    width: 12rem;
  }
}
@media all and (max-width: 750px) {
  .about9 table th {
    width: 10rem;
    padding: 2rem 1rem;
  }
}
.about9 table td {
  border: 1px solid #e5e0e8;
  padding: 2rem;
  background: #ffffff;
}
.about9 table td a {
  color: #764ba2;
  border-bottom: 1px solid #764ba2;
}
.about9 table td a:hover {
  opacity: 0.7;
}

.about11 {
  background: #ffffff;
  border: 2px solid #b8a5d3;
  border-radius: 10px;
  padding: 3rem;
  margin: 0 auto 7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (min-width: 751px) {
  .about11 {
    width: 1000px;
    padding: 6rem 0;
  }
}
@media all and (max-width: 750px) {
  .about11 {
    width: 95%;
    padding: 3rem 0;
  }
}
@media all and (max-width: 750px) {
  .about11:last-child {
    margin: 0 auto 0;
  }
}

.about12 {
  width: 100%;
  text-align: center;
  margin-bottom: 4rem;
  background: url(../images/line2.png) center bottom no-repeat;
  font-weight: 700;
}
@media all and (min-width: 751px) {
  .about12 {
    padding-bottom: 5rem;
    font-size: 3rem;
  }
}
@media all and (max-width: 750px) {
  .about12 {
    padding: 2rem 2rem 7rem;
    font-size: 2rem;
  }
}
.about12 a {
  text-decoration: underline !important;
}
.about12 a:hover {
  color: #09c !important;
}

.about13 {
  width: 100%;
  margin: 0 auto 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (min-width: 751px) {
  .about13 {
    padding: 0 50px;
  }
}
@media all and (max-width: 750px) {
  .about13 {
    justify-content: space-between;
    padding: 0 2rem;
  }
}

@media all and (min-width: 751px) {
  .about14 a {
    width: 760px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    border: 1px solid #e5e0e8;
    border-radius: 10px;
    box-shadow: inset 0 0 20px #cccccc;
    font-weight: 700;
    padding: 4rem 0;
    margin: 0 auto 3rem;
  }
  .about14 a:hover {
    box-shadow: inset 0 0 20px #09c;
  }
}
@media all and (max-width: 750px) {
  .about14 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    border: 1px solid #e5e0e8;
    border-radius: 10px;
    box-shadow: inset 0 0 20px #cccccc;
    font-weight: 700;
    padding: 4rem 1rem;
    margin: 0 auto 3rem;
  }
}

.about15 {
  width: 100%;
  text-align: center;
}
.about15 img {
  text-align: center;
}
@media all and (min-width: 751px) {
  .about15 img {
    width: 500px;
  }
}
@media all and (max-width: 750px) {
  .about15 img {
    width: 100%;
  }
}

.about16 {
  width: 100%;
  margin: 0 auto 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (min-width: 751px) {
  .about16 {
    padding: 0 50px;
  }
}
@media all and (max-width: 750px) {
  .about16 {
    padding: 0 2rem;
  }
}

.about17 {
  position: relative;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  z-index: 1;
}
.about17::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, rgba(118, 75, 162, 0.15), transparent);
  border-left: 5px solid #764ba2;
  z-index: -1;
}

.about18 {
  width: 100%;
  line-height: 1.8;
  text-align: justify;
}
@media all and (min-width: 751px) {
  .about18 {
    padding: 0 2rem;
  }
}
@media all and (max-width: 750px) {
  .about18 {
    padding: 0 2rem;
  }
}

.about18-2 {
  width: 100%;
  font-size: 110%;
  line-height: 1.8;
  text-align: justify;
}
@media all and (min-width: 751px) {
  .about18-2 {
    padding: 0 7rem;
  }
}

.about19 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 50px;
}
@media all and (min-width: 751px) {
  .about19 {
    margin-bottom: 5.5rem;
  }
}
@media all and (max-width: 750px) {
  .about19 {
    margin-bottom: 7rem;
  }
}

@media all and (min-width: 751px) {
  .about20 {
    width: 400px;
    margin-right: 50px;
  }
  .about20:last-child {
    margin-right: 0;
  }
}
@media all and (max-width: 750px) {
  .about20 {
    width: 100%;
    margin-bottom: 3rem;
  }
  .about20:last-child {
    margin-bottom: 0;
  }
  .about20 img {
    width: 100%;
    text-align: center;
  }
}
.about20 figcaption {
  padding-top: 0.5rem;
  font-size: 90%;
}
.about20 p {
  width: 100%;
  display: inline-block;
  text-align: center;
}
@media all and (min-width: 751px) {
  .about20 p {
    font-size: 1.4rem;
  }
}

.about21 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 50px;
}

.about22 {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 1.5rem;
  border-left: 5px solid #1a1a1a;
  margin-bottom: 2rem;
}

.about23 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media all and (min-width: 751px) {
  .about24 {
    width: 180px;
    margin-right: 2rem;
  }
}
@media all and (max-width: 750px) {
  .about24 {
    width: 30%;
    margin-right: 5%;
  }
  .about24:last-child {
    margin-right: 0;
  }
}

.about25 {
  display: inline-block;
  border-radius: 10px;
  background: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: 0;
}
@media all and (min-width: 751px) {
  .about25 {
    width: 48%;
    padding: 1rem 0 1rem 3rem;
    font-size: 1.6rem;
    margin-right: 2.5%;
  }
}
@media all and (max-width: 750px) {
  .about25 {
    width: 100%;
    padding: 1rem;
    font-size: 1.4rem;
  }
}
.about25:nth-child(2n) {
  margin-right: 0;
}

.about26 {
  width: 100%;
}
.about26 span {
  display: inline-block;
  text-align: center;
  background: #1a1a1a;
  color: #ffffff;
  padding: 0.1rem 2rem;
  border-radius: 100px;
}
@media all and (min-width: 751px) {
  .about26 span {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}
@media all and (max-width: 750px) {
  .about26 span {
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
}

.hyosho-container {
  width: 100%;
  display: flex;
}
@media all and (min-width: 751px) {
  .hyosho-container {
    justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 90px;
    gap: 15px;
  }
}
@media all and (max-width: 750px) {
  .hyosho-container {
    flex-direction: column;
    align-items: center;
    padding: 35px 2rem 40px;
    gap: 40px;
  }
}

.hyosho-box {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e5e0e8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hyosho-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}
@media all and (min-width: 751px) {
  .hyosho-box {
    width: 32%;
    margin: 0;
  }
}
@media all and (max-width: 750px) {
  .hyosho-box {
    width: 100%;
    margin: 0;
  }
}
.hyosho-box ol {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  margin: 35px 20px 22px;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media all and (max-width: 750px) {
  .hyosho-box ol {
    font-size: 1.3rem;
  }
}

.hyosho-box--with-note ol {
  margin: 35px 20px 4px;
}
.hyosho-box--with-note p {
  margin: 0 20px 10px;
}

.hyosho-header {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #764ba2;
  border: none;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  height: 40px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.2);
  white-space: nowrap;
}
@media all and (min-width: 751px) {
  .hyosho-header {
    width: 180px;
    padding: 0 20px;
  }
}
@media all and (max-width: 750px) {
  .hyosho-header {
    width: 180px;
    padding: 0 20px;
  }
}
.hyosho-header li {
  margin-bottom: 20px;
}

.flow-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 20px 2rem 60px;
  gap: 0;
}

.flow-item {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flow-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}
@media all and (min-width: 751px) {
  .flow-item {
    margin-bottom: 4rem;
    padding: 3rem 3rem 2rem;
  }
}
@media all and (max-width: 750px) {
  .flow-item {
    margin-bottom: 4rem;
    padding: 2.5rem 2rem 1.5rem;
  }
}
.flow-item:last-child {
  margin-bottom: 0;
}

.flow-header {
  position: absolute;
  top: -20px;
  left: 30px;
  display: inline-flex;
  align-items: center;
  background: #764ba2;
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.2);
  overflow: hidden;
  z-index: 1;
}
@media all and (min-width: 751px) {
  .flow-header {
    height: 40px;
    border-radius: 20px;
    padding-right: 25px;
  }
}
@media all and (max-width: 750px) {
  .flow-header {
    height: 34px;
    border-radius: 17px;
    padding-right: 20px;
  }
}

.flow-number {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media all and (min-width: 751px) {
  .flow-number {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}
@media all and (max-width: 750px) {
  .flow-number {
    width: 34px;
    height: 34px;
    font-size: 1.6rem;
  }
}

.flow-title {
  color: #ffffff;
  font-weight: 700;
  padding-left: 15px;
  white-space: nowrap;
}
@media all and (min-width: 751px) {
  .flow-title {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 750px) {
  .flow-title {
    font-size: 1.4rem;
    padding-left: 10px;
  }
}

.flow-text {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}
@media all and (min-width: 751px) {
  .flow-text {
    padding-top: 10px;
    padding-left: 55px;
    padding-right: 55px;
  }
}
@media all and (max-width: 750px) {
  .flow-text {
    padding-top: 5px;
    padding-left: 0;
    padding-right: 0;
  }
}

.flow-simple {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 3rem 0 2rem;
  gap: 0;
}
@media all and (max-width: 750px) {
  .flow-simple {
    padding: 2rem 0.5rem 1.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.2rem;
  }
}

/* 8ステップ用（Chronoteとは） */
.flow-simple--full {
  max-width: 940px;
}
@media all and (min-width: 751px) {
  .flow-simple--full .flow-icon {
    width: 70px;
    height: 70px;
  }
  .flow-simple--full .flow-icon svg {
    width: 32px;
    height: 32px;
  }
  .flow-simple--full .flow-label {
    font-size: 1.3rem;
  }
  .flow-simple--full .flow-arrow {
    flex: 0 1 auto;
    min-width: 20px;
  }
  .flow-simple--full .flow-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media all and (max-width: 750px) {
  .flow-simple--full .flow-step {
    width: 36px;
  }
  .flow-simple--full .flow-icon {
    width: 32px;
    height: 32px;
  }
  .flow-simple--full .flow-icon svg {
    width: 14px;
    height: 14px;
  }
  .flow-simple--full .flow-label {
    font-size: 8px;
  }
  .flow-simple--full .flow-arrow {
    flex: 0 0 6px;
  }
  .flow-simple--full .flow-arrow svg {
    width: 8px;
    height: 8px;
  }
}

/* 3-4ステップ用（執筆プラットフォーム、本づくりの流れ） */
.flow-simple--partial {
  max-width: 560px;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 4.5rem;
}
@media all and (min-width: 751px) {
  .flow-simple--partial .flow-icon {
    width: 70px;
    height: 70px;
  }
  .flow-simple--partial .flow-icon svg {
    width: 32px;
    height: 32px;
  }
  .flow-simple--partial .flow-label {
    font-size: 1.3rem;
  }
  .flow-simple--partial .flow-arrow {
    flex: 0 1 auto;
    min-width: 20px;
  }
  .flow-simple--partial .flow-arrow svg {
    width: 16px;
    height: 16px;
  }
}
@media all and (max-width: 750px) {
  .flow-simple--partial {
    gap: 0.2rem;
  }
  .flow-simple--partial .flow-step {
    width: 36px;
  }
  .flow-simple--partial .flow-icon {
    width: 32px;
    height: 32px;
  }
  .flow-simple--partial .flow-icon svg {
    width: 14px;
    height: 14px;
  }
  .flow-simple--partial .flow-label {
    font-size: 8px;
  }
  .flow-simple--partial .flow-arrow {
    flex: 0 0 6px;
  }
  .flow-simple--partial .flow-arrow svg {
    width: 8px;
    height: 8px;
  }
}

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
@media all and (min-width: 751px) {
  .flow-step {
    flex: 0 0 auto;
  }
}
@media all and (max-width: 750px) {
  .flow-step {
    width: 48px;
  }
}
.flow-step:hover .flow-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.25);
}
.flow-step:hover .flow-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.flow-step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #764ba2;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 1;
}
@media all and (max-width: 750px) {
  .flow-step-number {
    font-size: 0.8rem;
    padding: 0.1rem 0.5rem;
    top: -10px;
  }
}

.flow-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #764ba2;
  border-radius: 50%;
  color: #764ba2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
@media all and (min-width: 751px) {
  .flow-icon {
    width: 100px;
    height: 100px;
  }
}
@media all and (max-width: 750px) {
  .flow-icon {
    width: 40px;
    height: 40px;
  }
}
@media all and (min-width: 751px) {
  .flow-icon svg {
    width: 48px;
    height: 48px;
  }
}
@media all and (max-width: 750px) {
  .flow-icon svg {
    width: 18px;
    height: 18px;
  }
}

.flow-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  margin-top: 1rem;
  line-height: 1.4;
}
@media all and (max-width: 750px) {
  .flow-label {
    font-size: 10px;
    margin-top: 0.5rem;
  }
}

.flow-tooltip {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #764ba2;
  color: #ffffff;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  font-size: 1.4rem;
  line-height: 1.6;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
@media all and (max-width: 750px) {
  .flow-tooltip {
    font-size: 11px;
    padding: 0.6rem 0.8rem;
    white-space: normal;
    width: 140px;
    text-align: center;
  }
}
.flow-tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #764ba2;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #764ba2;
  opacity: 0.4;
  align-self: center;
}
@media all and (min-width: 751px) {
  .flow-arrow {
    flex: 1 1 auto;
    height: 100px;
  }
}
@media all and (max-width: 750px) {
  .flow-arrow {
    flex: 0 0 10px;
    height: 40px;
  }
}
@media all and (min-width: 751px) {
  .flow-arrow svg {
    width: 24px;
    height: 24px;
  }
}
@media all and (max-width: 750px) {
  .flow-arrow svg {
    width: 10px;
    height: 10px;
  }
}

.flow-closing {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  padding-top: 5.5rem;
  padding-bottom: 3rem;
}
@media all and (max-width: 750px) {
  .flow-closing {
    font-size: 1.8rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}

.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delayScroll > *:nth-child(1) {
  animation-delay: 0.4s;
}
.delayScroll > *:nth-child(2) {
  animation-delay: 0.8s;
}
.delayScroll > *:nth-child(3) {
  animation-delay: 1.2s;
}
.delayScroll > *:nth-child(4) {
  animation-delay: 1.6s;
}
.delayScroll > *:nth-child(5) {
  animation-delay: 2s;
}
.delayScroll > *:nth-child(6) {
  animation-delay: 2.4s;
}
.delayScroll > *:nth-child(7) {
  animation-delay: 2.8s;
}
.delayScroll > *:nth-child(8) {
  animation-delay: 3.2s;
}
.delayScroll > *:nth-child(9) {
  animation-delay: 3.6s;
}
.delayScroll > *:nth-child(10) {
  animation-delay: 4s;
}

@media all and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

@media all and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}

@media all and (max-width: 750px) {
  .sp_no {
    display: none;
  }
}

.blue-marker {
  background: linear-gradient(transparent 70%, rgba(118, 75, 162, 0.15) 70%);
}

.pink-marker {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 10px;
  margin-left: 1.4em;
}
@media all and (max-width: 750px) {
  .pink-marker {
    font-size: 1.5rem;
  }
}

.red-big-text {
  color: #764ba2;
  font-size: 110%;
  font-weight: 700;
}

.txt-strikethrough {
  text-decoration: line-through;
}

.namber_list ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.namber_list ol li {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.boshu ul {
  list-style: disc;
  padding-left: 1.25em;
}

.img100 {
  margin: 0 auto;
}
@media all and (min-width: 751px) {
  .img100 {
    width: 600px;
  }
}
@media all and (max-width: 750px) {
  .img100 {
    width: 90%;
  }
}
.img100 img {
  width: 100%;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.px-1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.px-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.d-flex {
  display: flex !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.align-center {
  align-items: center !important;
}

/* ========================================
   3つの届け方セクション
   ======================================== */

.delivery-container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
@media all and (max-width: 750px) {
  .delivery-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem 3rem;
    gap: 2.5rem;
  }
}

.delivery-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 750px) {
  .delivery-card {
    width: 100%;
    max-width: 340px;
    padding: 2.5rem 2rem;
  }
}
.delivery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}

.delivery-card--featured {
  border: 2px solid #764ba2;
  background: #faf8fc;
}
.delivery-card--featured .delivery-icon {
  background: #764ba2;
  color: #ffffff;
}

.delivery-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #764ba2;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.2);
}

.delivery-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f3f7;
  border-radius: 50%;
  color: #764ba2;
  transition: transform 0.3s ease;
}
.delivery-icon svg {
  width: 40px;
  height: 40px;
}
.delivery-card:hover .delivery-icon {
  transform: scale(1.1);
}

.delivery-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
.delivery-subtitle {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #764ba2;
  margin-top: 0.3rem;
}

.delivery-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 1.5rem;
  text-align: justify;
  flex: 1;
}

.delivery-price {
  font-size: 2rem;
  font-weight: 700;
  color: #764ba2;
  padding-top: 1rem;
  border-top: 1px solid #e5e0e8;
  margin-top: auto;
}

.delivery-note {
  font-size: 1.2rem;
  color: #888888;
  margin-top: 0.5rem;
  min-height: 1.8rem;
}

/* 料金リスト */
.delivery-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  text-align: left;
  border-top: 1px solid #e5e0e8;
  padding-top: 1.5rem;
  margin-top: auto;
}
.delivery-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #e5e0e8;
  font-size: 1.3rem;
}
.delivery-price-list li:last-child {
  border-bottom: none;
}
.price-label {
  color: #555555;
  flex: 1;
  padding-right: 1rem;
}
.price-value {
  color: #764ba2;
  font-weight: 700;
  white-space: nowrap;
}

/* 印刷例 */
.delivery-example {
  background: #f9f7fb;
  border-radius: 10px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}
.example-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e0e8;
}
.example-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.example-item:first-child {
  padding-top: 0;
}
.example-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #764ba2;
  margin-bottom: 0.3rem;
}
.example-spec {
  font-size: 1.1rem;
  color: #777777;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}
.example-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: right;
}

/* ========================================
   こんな方にセクション
   ======================================== */

.target-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
@media all and (max-width: 750px) {
  .target-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem 3rem;
    gap: 1.5rem;
  }
}

.target-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: calc(50% - 1rem);
  max-width: 460px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media all and (max-width: 950px) {
  .target-card {
    width: 100%;
    max-width: 100%;
  }
}
@media all and (max-width: 750px) {
  .target-card {
    padding: 2rem 1.5rem;
    gap: 1.2rem;
  }
}
.target-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}

.target-card--writer {
  width: calc(100% - 0rem);
  max-width: calc(460px * 2 + 2rem);
  background: #faf8fc;
  border: 2px solid #d4c8e8;
}
@media all and (min-width: 751px) {
  .target-card--writer {
    padding: 3rem;
  }
}

.target-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #764ba2;
  border-radius: 12px;
  color: #ffffff;
}
.target-icon svg {
  width: 28px;
  height: 28px;
}

.target-content {
  flex: 1;
}

.target-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}
@media all and (max-width: 750px) {
  .target-title {
    font-size: 1.5rem;
  }
}

.target-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
}
@media all and (max-width: 750px) {
  .target-desc {
    font-size: 1.3rem;
  }
}

.target-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
  justify-content: center;
}
@media all and (min-width: 751px) {
  .target-feature {
    justify-content: flex-start;
  }
}

.target-feature-item {
  display: inline-block;
  background: #764ba2;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
}

/* ========================================
   制作実績・お客様の声プレースホルダー
   ======================================== */

.works-placeholder,
.voice-placeholder {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.works-placeholder-inner,
.voice-placeholder-inner {
  background: #f5f3f7;
  border: 2px dashed #d4c8e8;
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
}
@media all and (max-width: 750px) {
  .works-placeholder-inner,
  .voice-placeholder-inner {
    padding: 3rem 2rem;
  }
}

.works-placeholder-icon,
.voice-placeholder-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  color: #b8a5d3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.works-placeholder-icon svg,
.voice-placeholder-icon svg {
  width: 40px;
  height: 40px;
}

.works-placeholder-text,
.voice-placeholder-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #888888;
  margin-bottom: 1.5rem;
}
@media all and (max-width: 750px) {
  .works-placeholder-text,
  .voice-placeholder-text {
    font-size: 1.4rem;
  }
}

.voice-placeholder-link {
  display: inline-block;
  background: #ffffff;
  color: #764ba2;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: 2px solid #764ba2;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.voice-placeholder-link:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

/* 実績カードグリッド（将来用） */
.works-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 2rem 4rem;
}

.works-item {
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.works-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}

.works-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f3f7;
}
.works-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-info {
  padding: 1.5rem;
}

.works-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.works-author {
  font-size: 1.3rem;
  color: #764ba2;
  margin-bottom: 0.8rem;
}

.works-desc {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #666666;
}

/* ============================================
   お問い合わせCTAボタン
   ============================================ */
.contact-cta-section {
  text-align: center;
  margin: 14rem auto 5rem;
  padding: 0 2rem;
}

.contact-cta-section--dual {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 56px;
  min-width: 280px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.25);
  text-decoration: none;
  opacity: 1;
}

.contact-cta-button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4);
  background: linear-gradient(135deg, #8b5fbf 0%, #7b91f0 100%);
  opacity: 1;
}

.contact-cta-button:active {
  transform: translateY(-1px);
}

.contact-cta-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-cta-button__icon svg {
  width: 24px;
  height: 24px;
}

/* 無料で始めるボタン - シマーアニメーション */
.contact-cta-button--primary {
  position: relative;
  overflow: hidden;
}

.contact-cta-button--primary .contact-cta-button__text {
  flex: 1;
  text-align: center;
}

.contact-cta-button--primary .contact-cta-button__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.contact-cta-button--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}

.contact-cta-button--primary:hover::before {
  animation: none;
  left: -100%;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 150%;
  }
}

@media all and (max-width: 750px) {
  .contact-cta-section {
    margin: 3rem auto;
  }
  .contact-cta-section--dual {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .contact-cta-button {
    padding: 18px 40px;
    font-size: 1.6rem;
    gap: 12px;
    min-width: 240px;
  }
  .contact-cta-button--primary .contact-cta-button__icon {
    right: 18px;
  }
  .contact-cta-button__icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   フローティングCTA（PC用）
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta__button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(118, 75, 162, 0.5);
  background: linear-gradient(135deg, #8b5fbf 0%, #7b91f0 100%);
}

.floating-cta__button:active {
  transform: translateY(-1px);
}

.floating-cta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-cta__text {
  white-space: nowrap;
}

/* モバイルではフローティングCTAを非表示 */
@media all and (max-width: 750px) {
  .floating-cta {
    display: none;
  }
}

/* ============================================
   固定ボトムバー（モバイル用）
   ============================================ */
.mobile-cta-bar {
  display: none;
}

@media all and (max-width: 750px) {
  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9000;
  }

  .mobile-cta-bar__button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-cta-bar__button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 2px 8px rgba(118, 75, 162, 0.3);
  }

  .mobile-cta-bar__button--primary:hover,
  .mobile-cta-bar__button--primary:active {
    box-shadow: 0 4px 12px rgba(118, 75, 162, 0.4);
  }

  .mobile-cta-bar__button--secondary {
    color: #764ba2;
    background: transparent;
    border: 2px solid #764ba2;
  }

  .mobile-cta-bar__button--secondary:hover,
  .mobile-cta-bar__button--secondary:active {
    background: rgba(118, 75, 162, 0.05);
  }

  /* モバイル用：ボトムバー分のパディングを確保 */
  body {
    padding-bottom: 80px;
  }
}

/* ========================================
   料金プランセクション
   ======================================== */

.plan-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
@media all and (max-width: 750px) {
  .plan-container {
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem 3rem;
    gap: 1.5rem;
  }
}
/* pricing-section内ではpadding調整 */
.pricing-section .plan-container {
  padding: 1.5rem 0 0;
}
@media all and (max-width: 750px) {
  .pricing-section .plan-container {
    padding: 1rem 0 0;
  }
}

.plan-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  padding: 3.5rem 2.5rem;
  width: calc(50% - 1rem);
  max-width: 460px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 950px) {
  .plan-card {
    width: 100%;
    max-width: 100%;
  }
}
@media all and (max-width: 750px) {
  .plan-card {
    padding: 2.5rem 2rem;
  }
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}

.plan-card--featured {
  border: 2px solid #764ba2;
  background: #faf8fc;
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #764ba2;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(118, 75, 162, 0.2);
}

.plan-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #764ba2;
  margin-bottom: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.plan-price {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.plan-price-tax {
  font-size: 1.4rem;
  font-weight: 500;
  color: #888888;
}

.plan-desc {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #555555;
  text-align: justify;
  flex: 1;
}

/* 執筆プラットフォームの機能紹介 - プランカードと幅を揃える */
.platform-features {
  margin-top: 3rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 751px) {
  .platform-features {
    padding-left: 0;
    padding-right: 0;
  }
  .platform-features .hyosho-box {
    width: 31%;
  }
}

/* ========================================
   本づくりの流れと料金セクション
   ======================================== */

/* 料金セクション全体のコンテナ - about1と幅を揃える */
.pricing-sections-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto 2rem;
}

/* 料金セクション */
.pricing-section {
  width: 100%;
  max-width: 952px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-top: 1rem;
}
@media all and (max-width: 750px) {
  .pricing-section {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
}

/* STEP2・STEP3 横並びコンテナ */
.pricing-section-row {
  display: flex;
  gap: 1.5rem;
  max-width: 952px;
  margin: 2rem auto 8rem;
}
@media all and (max-width: 950px) {
  .pricing-section-row {
    flex-direction: column;
    margin: 2rem 1rem 8rem;
  }
}

.pricing-section--half {
  flex: 1;
  margin-top: 0;
}

.pricing-section--spaced {
  margin-top: 2rem;
}
@media all and (max-width: 950px) {
  .pricing-section--half {
    margin: 0;
  }
}

/* 機能リスト */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
  padding: 1.2rem 0;
  border-bottom: 1px solid #f0edf2;
}
.feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-label {
  font-weight: 700;
  color: #764ba2;
}

/* 3カラム×2段レイアウト */
.feature-list--two-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem 2rem;
  max-width: none;
  padding: 0;
}
.feature-list--two-column li {
  border-bottom: none;
  padding: 1.5rem;
  background: #faf9fb;
  border-radius: 8px;
  text-align: justify;
}

@media all and (max-width: 1000px) {
  .feature-list--two-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 750px) {
  .feature-list li {
    font-size: 1.3rem;
  }
  .feature-list--two-column {
    grid-template-columns: 1fr;
  }
}

.pricing-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.pricing-section--half .pricing-section-header {
  margin-bottom: 1.5rem;
}

.pricing-step-number {
  background: #764ba2;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
}
@media all and (max-width: 750px) {
  .pricing-section-title {
    font-size: 1.7rem;
  }
}

.pricing-section-desc {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 2rem;
}

/* シンプルなセクション（カードなし） */
.pricing-section--simple {
  text-align: center;
}
.pricing-section--simple .pricing-section-desc {
  text-align: justify;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
.pricing-section-note {
  font-size: 1.3rem;
  color: #888888;
  text-align: center;
  line-height: 1.6;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f0ebf5;
  font-size: 1.4rem;
}
.pricing-list li:last-child {
  border-bottom: none;
}
@media all and (max-width: 750px) {
  .pricing-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

.pricing-label {
  color: #555555;
}

.pricing-note {
  display: inline;
  font-size: 1.1rem;
  color: #888888;
  margin-left: 0.5rem;
}

.pricing-value {
  color: #1a1a1a;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}

/* STEP 2: 届け方の選択肢 */
.pricing-options {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media all and (max-width: 750px) {
  .pricing-options {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.pricing-option {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(118, 75, 162, 0.15);
}
.pricing-option--featured {
  border: 2px solid #764ba2;
  background: #faf8fc;
}

.pricing-option-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #764ba2;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-option-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #764ba2;
  border-radius: 10px;
  color: #ffffff;
}
.pricing-option-icon svg {
  width: 24px;
  height: 24px;
}

.pricing-option-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-option-note {
  font-size: 1.2rem;
  color: #888888;
  line-height: 1.6;
  margin-top: 1rem;
}

/* 印刷例 */
.pricing-examples {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.2rem;
  margin-top: 1.5rem;
  border: 1px solid #e5e0e8;
}

.pricing-example-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0ebf5;
}
.pricing-example-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pricing-example-item:first-child {
  padding-top: 0;
}

.pricing-example-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #764ba2;
  margin-bottom: 0.3rem;
}

.pricing-example-spec {
  font-size: 1.1rem;
  color: #777777;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.pricing-example-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: right;
}

.pricing-footnote {
  font-size: 1.3rem;
  color: #888888;
  text-align: left;
  max-width: 952px;
  margin: 1rem auto 0;
  padding: 0;
}

/* 基本プラン（3プラン構成） */
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-plans--three {
  grid-template-columns: repeat(3, 1fr);
}
.pricing-plan {
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-plan:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.pricing-plan--featured {
  border: 2px solid #764ba2;
}
.pricing-plan--kindle {
  border: 1px solid #ff9900;
}
.pricing-plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 0 10px 0 12px;
}
.pricing-plan-header {
  background: linear-gradient(135deg, #f8f6fa 0%, #f0ebf5 100%);
  padding: 2rem 1.5rem;
  text-align: center;
}
.pricing-plan--kindle .pricing-plan-header {
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
}
.pricing-plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.pricing-plan-desc {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555555;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  text-align: justify;
}
.pricing-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}
.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #764ba2;
  font-family: "Noto Sans JP", sans-serif;
}
.pricing-plan--kindle .price-amount {
  color: #ff9900;
}
.price-unit {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}
.price-tax {
  font-size: 1.2rem;
  color: #888888;
  margin-left: 0.3rem;
}
.pricing-plan-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-plan-spec {
  font-size: 1.2rem;
  font-weight: 700;
  color: #04384c;
  text-align: center;
  padding: 0.8rem;
  background: #f5f3f7;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
.pricing-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-plan-features li {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555555;
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  border-bottom: 1px solid #f0ebf5;
}
.pricing-plan-features li:last-child {
  border-bottom: none;
}
.pricing-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #764ba2;
  font-weight: 700;
}
.pricing-plan--kindle .pricing-plan-features li::before {
  color: #ff9900;
}

/* Kindle出版セクション（別枠） */
.pricing-kindle-section {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e0 100%);
  border: 1px solid #ffd699;
  border-radius: 12px;
  overflow: hidden;
}
.pricing-kindle-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #ff9900 0%, #ffad33 100%);
}
.pricing-kindle-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}
.pricing-kindle-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.pricing-kindle-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  gap: 2rem;
}
.pricing-kindle-content {
  flex: 1;
}
.pricing-kindle-desc {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 1rem;
}
.pricing-kindle-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.pricing-kindle-features li {
  font-size: 1.3rem;
  color: #555555;
  padding-left: 1.6rem;
  position: relative;
}
.pricing-kindle-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff9900;
  font-weight: 700;
}
.pricing-kindle-price-box {
  text-align: center;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}
.pricing-kindle-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}
.pricing-kindle-price .price-amount {
  font-size: 2.4rem;
  color: #ff9900;
}
.pricing-kindle-price-note {
  font-size: 1.2rem;
  color: #888888;
  margin-top: 0.5rem;
}

@media all and (max-width: 950px) {
  .pricing-plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-plans--three {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 750px) {
  .pricing-plans--three {
    grid-template-columns: 1fr;
  }
  .pricing-kindle-body {
    flex-direction: column;
    text-align: center;
  }
  .pricing-kindle-features {
    justify-content: center;
  }
  .pricing-kindle-price-box {
    width: 100%;
    min-width: auto;
  }
}
@media all and (max-width: 600px) {
  .pricing-plans {
    grid-template-columns: 1fr;
  }
  .pricing-plan-header {
    padding: 1.5rem 1rem;
  }
  .pricing-plan-name {
    font-size: 1.6rem;
  }
  .price-amount {
    font-size: 2.4rem;
  }
}

/* STEP 5 & 6 横並びカード */
.pricing-step-cards {
  display: flex;
  gap: 2rem;
  max-width: 952px;
  margin: 2rem auto 0;
  width: 100%;
}
.pricing-step-card {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.pricing-step-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.pricing-step-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
}
.pricing-step-card-content {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
  min-height: 3rem;
}
@media all and (max-width: 750px) {
  .pricing-step-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .pricing-step-card {
    padding: 2rem;
  }
  .pricing-step-card-title {
    font-size: 1.5rem;
  }
}

/* 執筆プラットフォーム 機能紹介部分の余白調整 */
.platform-features {
  margin-top: 3rem;
}

/* ============================================
   LP変更: 新料金体系スタイル
   ============================================ */

/* フリープラン（1プランのみ表示用） */
.plan-container--single {
  justify-content: center;
}
.plan-card--wide {
  width: 100%;
  max-width: 600px;
}
.plan-note {
  font-size: 1.3rem;
  color: #888888;
  margin-top: 1.5rem;
  text-align: center;
  line-height: 1.6;
}

/* 3ステップフロー図（簡略版） */
.flow-simple--three {
  max-width: 560px;
  margin: 3rem auto 2rem;
  padding: 3rem 2rem;
}
.flow-simple--three .flow-icon {
  width: 100px;
  height: 100px;
}
.flow-simple--three .flow-label {
  font-size: 1.6rem;
}
.flow-simple--three .flow-arrow {
  height: 100px;
}
@media all and (max-width: 750px) {
  .flow-simple--three {
    max-width: 100%;
    padding: 2rem 0.5rem 1.5rem;
  }
  .flow-simple--three .flow-icon {
    width: 48px;
    height: 48px;
  }
  .flow-simple--three .flow-label {
    font-size: 11px;
  }
  .flow-simple--three .flow-arrow {
    height: 48px;
  }
}

/* コアサービスセクション */
.pricing-section--core {
  border: 2px solid #764ba2;
  background: linear-gradient(135deg, #faf8fc 0%, #f8f6fa 100%);
  border-radius: 16px;
  padding: 3rem;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
.pricing-step-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
}
.pricing-step-badge--secondary {
  background: #888888;
}

/* コアサービス料金テーブル */
.pricing-core-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-core-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e5e0e8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-core-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(118, 75, 162, 0.12);
}
.pricing-core-item--main {
  border: 2px solid #764ba2;
}
.pricing-core-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: #764ba2;
}
.pricing-core-icon svg {
  width: 100%;
  height: 100%;
}
.pricing-core-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.pricing-core-price {
  margin-bottom: 1rem;
}
.pricing-core-price .price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: #764ba2;
}
.pricing-core-price .price-unit {
  font-size: 1.4rem;
  color: #555555;
  margin-left: 0.2rem;
}
.pricing-core-note {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.5;
}
@media all and (max-width: 750px) {
  .pricing-section--core {
    padding: 2rem 1.5rem;
    padding-bottom: 0.8rem;
  }
  .pricing-core-table {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pricing-core-item {
    padding: 1.5rem;
  }
  .pricing-core-price .price-amount {
    font-size: 2.6rem;
  }
}

/* オプションサービスセクション */
.pricing-section--options {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
.pricing-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-option-card {
  background: #ffffff;
  border: 1px solid #e5e0e8;
  border-radius: 12px;
  padding: 2rem;
  padding-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.pricing-option-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.pricing-option-header svg {
  width: 28px;
  height: 28px;
  color: #764ba2;
  flex-shrink: 0;
}
.pricing-option-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
}
.pricing-option-desc {
  font-size: 1.3rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.pricing-option-price {
  margin: 1rem 0;
}
.pricing-option-price .price-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: #764ba2;
}
.pricing-option-price .price-unit {
  font-size: 1.3rem;
  color: #555555;
}
.pricing-option-price .price-tax {
  font-size: 1.1rem;
  color: #888888;
}
.pricing-option-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-option-features li {
  font-size: 1.3rem;
  color: #555555;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}
.pricing-option-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #764ba2;
  font-weight: bold;
}
.pricing-option-examples {
  background: #f8f6fa;
  border-radius: 8px;
  padding: 1.2rem;
  margin: 1rem 0;
}
.pricing-option-examples-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #764ba2;
  margin-bottom: 0.5rem;
}
.pricing-option-examples ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-option-examples li {
  font-size: 1.2rem;
  color: #555555;
  line-height: 1.6;
  padding: 0.3rem 0;
}
.pricing-option-examples li strong {
  color: #1a1a1a;
}
.pricing-option-examples-spec {
  font-size: 1.1rem;
  color: #888888;
}
.pricing-option-note {
  font-size: 1.1rem;
  color: #888888;
  margin-top: 0.5rem;
}
@media all and (max-width: 750px) {
  .pricing-options-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pricing-option-card {
    padding: 1.5rem;
  }
  .pricing-option-header h4 {
    font-size: 1.4rem;
  }
  .pricing-option-price .price-amount {
    font-size: 2rem;
  }
}

/* ============================================
   モバイル専用ユーティリティ・調整
   ============================================ */

/* sp-only: モバイルのみ表示する要素 */
.sp-only { display: none; }
@media all and (max-width: 750px) {
  .sp-only { display: inline; }
}

/* フローアイコン間隔調整（Chronoteとは セクション） */
@media all and (max-width: 750px) {
  .flow-simple--three .flow-step {
    width: 64px;
  }
  .flow-simple--three .flow-label {
    font-size: 11px;
    white-space: nowrap;
  }
  .flow-simple--three .flow-arrow {
    flex: 0 0 16px;
  }
}

/* STEPカード間の間隔（執筆プラットフォームセクション） */
@media all and (max-width: 750px) {
  .pricing-section + .pricing-section {
    margin-top: 1.5rem;
  }
}
