@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

p {
  margin: 0;
}

ul, dl, dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f3f7f7;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.93rem;
  line-height: 1.8;
  color: #1C1F1F;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  vertical-align: bottom;
}

section {
  position: relative;
}
section .h2-sub {
  position: absolute;
  top: -50px;
  right: 0;
  transform: translateX(-50%) rotate(-10deg);
  font-size: 80px;
  line-height: 1.2;
  color: rgba(120, 93, 64, 0.2);
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 8%;
}

.font-min {
  font-family: "Zen Old Mincho", serif;
}

.font-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.font-cursive {
  font-family: "Caveat", cursive;
}

h2 {
  display: block;
  margin-bottom: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  color: #785d40;
  text-align: center;
}
h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  margin-top: 8px;
  margin-inline: auto;
  background-color: #785d40;
}
@media (min-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  margin-bottom: 24px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  color: #785d40;
}
@media (min-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

section {
  padding: 64px 0;
}

.card-item {
  display: block;
  width: 80%;
  max-width: 300px;
  margin-inline: auto;
  padding: 24px;
  border-radius: 8px;
}

.text-underline {
  background: linear-gradient(transparent 60%, #d8e4e4 50%);
  font-weight: 600;
  display: inline;
}

#gheader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
}
#gheader .header-inner {
  width: 95%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#gheader .header-inner #header-logo {
  width: 250px;
}

.fixed-btn {
  position: fixed;
  top: 20px;
  right: 3%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  min-width: 200px;
  background: linear-gradient(145deg, #d3e2e2 0%, #C4D6D6 100%);
  color: #666;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.fixed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #C4D6D6 0%, #b5c9c9 100%);
  color: #2D3748;
}
@media (max-width: 768px) {
  .fixed-btn {
    top: 15px;
    right: 15px;
    min-width: auto;
    width: auto;
    max-width: 50%;
    padding: 8px 16px;
    font-size: 13px;
    transform: scale(0.9);
    transform-origin: right center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 400px) {
  .fixed-btn {
    font-size: 11px;
    padding: 6px 12px;
    transform: scale(0.85);
  }
}

#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#hero .hero-bg-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#hero .hero-bg-images .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: imageLoop 15s linear infinite;
  filter: brightness(0.9) contrast(0.8) sepia(10%);
}
#hero .hero-bg-images .bg-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
#hero .hero-bg-images .bg-img:nth-child(1) {
  background-image: url(../images/reason01.png);
  animation-delay: 0s;
}
#hero .hero-bg-images .bg-img:nth-child(2) {
  background-image: url(../images/reason02.png);
  animation-delay: 5s;
}
#hero .hero-bg-images .bg-img:nth-child(3) {
  background-image: url(../images/reason03.png);
  animation-delay: 10s;
}
#hero #hero-copy, #hero #sub-copy, #hero #copy-info {
  position: absolute;
  z-index: 1;
  color: #fff;
  left: 60%;
  right: auto;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
}
#hero #hero-copy {
  bottom: 25%;
  font-size: 56px;
  line-height: 1.2;
  animation: fadeInUp 1.5s forwards 0.8s;
}
@media (max-width: 768px) {
  #hero #hero-copy {
    bottom: 20%;
    font-size: 32px;
    left: 20%;
  }
}
#hero #sub-copy {
  bottom: calc(25% - 40px);
  font-size: 1.4rem;
  font-weight: bold;
  animation: fadeInUp 1.5s forwards 1.2s;
}
@media (max-width: 768px) {
  #hero #sub-copy {
    bottom: calc(20% - 32px);
    font-size: 1.1rem;
    left: 20%;
  }
}
#hero #copy-info {
  bottom: calc(25% - 80px);
  font-size: 14px;
  animation: fadeInUp 1.5s forwards 1.6s;
}
@media (max-width: 768px) {
  #hero #copy-info {
    bottom: calc(20% - 64px);
    font-size: 12px;
    left: 20%;
    white-space: nowrap;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes imageLoop {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  43% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}

.hero-badges {
  position: absolute;
  top: 100px;
  left: 2%;
  display: flex;
  gap: 16px;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero-badges {
    top: 80px;
    gap: 8px;
    transform: scale(0.8);
    transform-origin: top left;
  }
}

.campaign-badge {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  text-align: center;
  line-height: 1;
  color: #fff;
}
.campaign-badge .campaign-text {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
}
.campaign-badge .price-now {
  display: inline-block;
  width: 50px;
  margin-bottom: 8px;
  background: linear-gradient(transparent 50%, #e38881 20%);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}
.campaign-badge .price-now small {
  font-size: 16px;
  font-weight: 500;
}
.campaign-badge .price-before {
  display: block;
  font-size: 16px;
  text-decoration: line-through;
  font-weight: 500;
}

.award-badge {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c39750 0%, #f8edbd 25%, #aa7728 50%, #f8edbd 75%, #c39750 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.award-badge .award-inner {
  width: 90%;
  height: 90%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px #c39750, inset 0 0 0 2.5px #fff, inset 0 0 0 3.5px #c39750;
}
.award-badge .award-inner .award-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #1C1F1F;
  padding-bottom: 4px;
  margin: 0 0 4px 0;
  border-bottom: 1px solid #c39750;
  letter-spacing: 0.05em;
}
.award-badge .award-inner .award-main {
  display: flex;
  align-items: baseline;
  color: #aa7728;
  background: linear-gradient(to bottom, #c39750 0%, #aa7728 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.award-badge .award-inner .award-main .no-text {
  font-size: 24px;
  font-weight: bold;
}
.award-badge .award-inner .award-main .number-text {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  margin-left: 1px;
}

.v-cta {
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 999;
  writing-mode: vertical-rl;
  background: linear-gradient(145deg, rgb(221.9463414634, 140.0634146341, 134.0536585366) 0%, #d3665e 100%);
  color: #fff;
  padding: 24px 12px;
  border-radius: 8px 0 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-right: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: -2px 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.v-cta:hover {
  background: linear-gradient(145deg, rgb(227.4195121951, 159.0951219512, 154.0804878049) 0%, rgb(216.4731707317, 121.0317073171, 114.0268292683) 100%);
  padding-right: 18px;
}
@media (max-width: 768px) {
  .v-cta {
    top: 50%;
    padding: 16px 8px;
    font-size: 12px;
    border-radius: 8px 0 0 8px;
    letter-spacing: 0.1em;
    background: linear-gradient(145deg, rgba(216.4731707317, 121.0317073171, 114.0268292683, 0.95), rgba(211, 102, 94, 0.95));
  }
}

#issue {
  background-color: #fff;
}
#issue .section-inner {
  position: relative;
  max-width: 700px;
}
#issue .section-inner img {
  width: 200px;
  position: absolute;
  top: 82%;
  left: 58%;
}
#issue #issue-title {
  color: #1C1F1F;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  #issue #issue-title {
    font-size: 1.3rem;
  }
}
#issue #issue-list {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin: 32px 0;
  font-weight: 500;
}
#issue #issue-list li:nth-child(2) {
  margin-left: auto;
}
#issue #issue-list .white-box {
  background-color: #EBF1F1;
}

.white-box {
  width: 250px;
  padding: 24px 32px;
  background-color: #fff;
  border-radius: 8px;
}
.white-box p {
  font-size: 0.8rem;
}

#response {
  padding: 24px 0;
  background-color: #D8E4E4;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

#about {
  position: relative;
  overflow: hidden;
  text-align: center;
}
#about h2 {
  font-family: "Caveat", cursive;
  font-size: 3rem;
}
#about h3 {
  font-size: 19px;
  margin-bottom: 16px;
}
#about p {
  max-width: 800px;
  margin-inline: auto;
}
#about img {
  width: 100%;
  max-width: 700px;
  margin: 40px 0;
}
#about #merit-wrap {
  margin-top: 48px;
}
#about #merits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
#about #merits li {
  margin-inline: auto;
}
#about #merits li .merit-title {
  display: inline-block;
  font-weight: 600;
  color: #d3665e;
  line-height: 1.4;
  margin-bottom: 8px;
}

#feature {
  background-color: #EBF1F1;
}
#feature #feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#feature #feature-list .feature-item {
  position: relative;
  background-color: #fff;
  width: 100%;
  margin-inline: auto;
}
#feature #feature-list .feature-item img {
  display: block;
  width: 80%;
  max-width: 200px;
  margin-inline: auto;
  margin-bottom: 16px;
}
#feature #feature-list .feature-item .feature-num {
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 70px;
  color: rgba(120, 93, 64, 0.388);
}

#step {
  background-color: #f3f7f7;
}
#step .h2-sub {
  left: 40%;
}
#step h3 {
  text-align: center;
  color: #785d40;
}
#step #step-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 80%;
  max-width: 600px;
  margin-inline: auto;
  padding: 40px 24px 80px 24px;
  background-color: #fff;
  border-radius: 8px;
}
#step #step-list img {
  position: absolute;
  bottom: -13%;
  right: -13%;
  width: 200px;
}
#step #step-list .step-item {
  display: flex;
  align-items: flex-start;
  width: 90%;
  max-width: 500px;
}
#step #step-list .step-item .font-min {
  font-size: 1.1rem;
}
#step #step-list .step-item .step-number {
  margin-right: 12px;
  color: #785d40;
  font-size: 1.5rem;
}
#step #step-list .step-item .step-text {
  border-left: 1px solid #785d40;
  padding-left: 12px;
}

#menu {
  background-color: #cedddd;
  text-align: center;
}
#menu h3 {
  color: #785d40;
}
#menu .menu-text {
  width: 80%;
  margin-inline: auto;
}

.compact-menu-box {
  max-width: 500px;
  margin: 20px auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 40px;
}
@media (max-width: 768px) {
  .compact-menu-box {
    padding: 32px;
  }
}
.compact-menu-box .compact-title {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 20px;
  border-bottom: 1px solid #C4D6D6;
  padding-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.compact-menu-box .compact-title small {
  font-size: 12px;
  color: #888;
  font-weight: normal;
}

.compact-list {
  list-style: none;
  padding: 0 16px;
}
.compact-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}
.compact-list li:last-of-type {
  border-bottom: none;
}
.compact-list li .day-s {
  color: #785d40;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  padding-right: 12px;
  margin-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.compact-list li .type {
  font-size: 14px;
  color: #4A5568;
  width: 140px;
  font-weight: bold;
  flex-shrink: 0;
}
.compact-list li .text {
  font-size: 13px;
  color: #777;
}
@media (max-width: 768px) {
  .compact-list li {
    padding: 8px 0;
  }
  .compact-list li .day-s {
    margin-right: 10px;
  }
  .compact-list li .type {
    width: 110px;
    font-size: 13px;
  }
  .compact-list li .text {
    font-size: 11px;
  }
}

.compact-note {
  margin-top: 15px;
  font-size: 11px;
  color: #999;
  text-align: left;
}

#reason #reason-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#reason #reason-list .reason-item {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 500px;
  margin-inline: auto;
}
#reason #reason-list .reason-item .reason-number {
  position: absolute;
  top: -50px;
  left: -30px;
  display: block;
  color: rgba(120, 93, 64, 0.387);
  font-size: 80px;
  line-height: 1;
}
#reason #reason-list img {
  border-radius: 8px;
  display: block;
}
#reason .text_wrap {
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
  width: 90%;
  margin-inline: auto;
  padding: 24px 40px;
  border-radius: 8px;
  background-color: #fff;
  z-index: 2;
  box-sizing: border-box;
}

#voice {
  background-color: #EBF1F1;
  overflow: hidden;
}
#voice .h2-sub {
  left: 40%;
  top: -35px;
}
#voice #voice-list .voice-item {
  position: relative;
  width: 250px;
  margin-right: 40px;
  margin-top: 16px;
  padding: 24px 16px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#voice #voice-list .voice-item img {
  display: block;
  position: absolute;
  width: 40px;
  top: -16px;
  left: -16px;
}
#voice #voice-list .voice-item p {
  font-size: 0.9rem;
}
#voice #voice-list .voice-item .voice-text {
  margin-bottom: 8px;
}
#voice #voice-list .voice-item .font-min {
  font-size: 1rem;
  border-top: 1px solid #bababa;
  padding-top: 8px;
}
#voice #voice-list .voice-item .sub-info {
  font-size: 0.8rem;
}

/* Slick特有の隙間調整 */
.slick-track {
  display: flex !important;
}

#plan #plan-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 16px;
  text-align: center;
}
#plan #plan-list .plan-item {
  position: relative;
  width: calc(80% - 32px);
  max-width: 240px;
  padding: 32px 16px;
  background-color: #fff;
  border-radius: 8px;
}
#plan #plan-list .plan-item:nth-child(2) {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#plan #plan-list .plan-item .plan-name {
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #bababa;
  font-size: 1.1rem;
  font-weight: 600;
  color: #785d40;
}
#plan #plan-list .plan-item .plan-info {
  padding-bottom: 12px;
  font-size: 0.9rem;
}
#plan #plan-list .plan-item .plan-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #d3665e;
}
#plan #plan-list .plan-item .plan-price::after {
  content: "（税込）";
  font-size: 0.7rem;
  color: #1C1F1F;
  font-weight: normal;
}
#plan #plan-list .plan-item .plan-label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -25px;
  right: -10px;
  left: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-family: "Zen Old Mincho", serif;
  background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#plan .plan-notes {
  margin-top: 40px;
  padding: 32px;
}
@media (max-width: 768px) {
  #plan .plan-notes {
    margin-top: 24px;
    padding: 20px;
  }
}
#plan .plan-notes .note-head {
  font-weight: 600;
  font-size: 16px;
  color: #4A5568;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
#plan .plan-notes .note-head::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background-color: #C4D6D6;
  margin-right: 10px;
  border-radius: 2px;
}
#plan .plan-notes .note-list {
  list-style: none;
  padding: 0;
}
#plan .plan-notes .note-list li {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 1em;
  text-indent: -1em;
}
#plan .plan-notes .note-list li::before {
  content: "・";
  color: #C4D6D6;
}
#plan .plan-notes .note-list li strong {
  color: #4A5568;
  font-weight: bold;
}
#plan .plan-notes .note-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed #e1e8e8;
  font-size: 12px;
  color: #999;
}

.btn-gold {
  display: block;
  padding: 18px 48px;
  margin-inline: auto;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: #d3665e;
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

#cta {
  padding: 0 0 40px 0;
}

#faq {
  background-color: #C4D6D6;
}
#faq .faq-item {
  border-bottom: 1px solid #785d40;
}
#faq .faq-item .question {
  position: relative;
  cursor: pointer;
  padding: 24px 40px 16px 0;
  margin: 0;
}
#faq .faq-item .question::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
#faq .faq-item .answer {
  display: none;
  padding: 0 0 12px 0;
  margin-bottom: 24px;
}
#faq .faq-item.open .question::after {
  content: "-";
}
#faq .faq-item.open .answer {
  display: block;
}

#gfooter {
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px 0;
  background: url(../images/beauty.png);
  background-size: cover;
  color: #fff;
}
#gfooter img {
  width: 75%;
  max-width: 500px;
}
#gfooter .site-map {
  margin-top: 24px;
}
#gfooter .site-map span {
  font-weight: 600;
  font-size: 1.2rem;
}
#gfooter .site-map #navlist {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  flex-wrap: wrap;
  margin-top: 12px;
}
#gfooter .site-map #navlist li {
  display: inline-block;
  width: 350px;
  margin-bottom: 8px;
  font-size: 0.8rem;
}
#gfooter .site-map #navlist li a {
  line-height: 1;
}
#gfooter .site-map #navlist li a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: #fff;
  margin-right: 8px;
  vertical-align: middle;
}
#gfooter small {
  display: block;
  margin-top: 24px;
}

/* 既存の @media (min-width: 768px) 内に統合、もしくは末尾に追加 */
@media (min-width: 768px) {
  section {
    padding: 80px 0;
  }
  #issue {
    padding: 40px 0;
  }
  #response {
    padding: 40px 0;
  }
  #feature-list, #reason-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
  #feature-list .card-item, #reason-list .card-item {
    margin: 0;
    width: 33.3333333333%;
    max-width: none;
  }
  #feature-list li + li, #reason-list li + li {
    margin-top: 0;
  }
  #voice-list {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  #plan-list .plan-item {
    max-width: 250px;
    padding: 40px 24px;
  }
  #faq-list {
    max-width: 800px;
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  #issue .section-inner img {
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #issue #issue-list {
    position: relative;
  }
  #issue #issue-list li + li {
    margin-top: 0;
  }
  #issue #issue-list .issue-item:nth-child(1) {
    align-self: flex-start;
  }
  #issue #issue-list .issue-item:nth-child(2) {
    align-self: flex-end;
    margin-top: -100px; /* 前の要素と少し重ねる */
    margin-left: auto;
  }
  #issue #issue-list .issue-item:nth-child(3) {
    align-self: center;
    margin-top: 30px;
    margin-right: 15%; /* 中央から少しずらして「遊び」を出す */
  }
  #about #merits {
    display: flex;
    flex-wrap: nowrap;
  }
  #feature #feature-list {
    flex-direction: row;
    justify-content: center;
  }
  #feature #feature-list .feature-item {
    width: 33.3333333333%;
    margin: 0;
  }
  #step #step-list {
    padding-bottom: 40px;
  }
  #plan {
    padding-bottom: 40px;
  }
  #reason {
    padding-bottom: 0;
  }
  #reason h2 {
    margin-bottom: 64px;
  }
  #reason #reason-list {
    gap: 4px;
    max-width: 700px;
    margin-inline: auto;
  }
  #reason #reason-list .reason-item {
    display: flex;
    max-width: 700px;
    height: auto;
    margin: 0;
    margin-bottom: 160px;
  }
  #reason #reason-list .reason-item .reason-number {
    font-size: 100px;
  }
  #reason #reason-list .reason-item .img-wrap {
    width: 700px;
    text-align: right;
  }
  #reason #reason-list .reason-item .text_wrap {
    bottom: -100px;
    right: 40px;
    left: auto;
    width: 350px;
    padding: 24px;
  }
}/*# sourceMappingURL=style.css.map */