:root {
  --accent-green: #105d4c;
  --accent-light-green: #cddfd4;
  --accent-gold: #ffdb39;
  --text-main: #1c1a18;
  --bg-ivory: #f7f4ef;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
@font-face {
  font-family: 'Rockville'; 
  src: url('../../assets/fonts/rockville-solid.otf') format('opentype');
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: 100%;
  margin: 0;
}

.site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 40px 8px 40px;
  background: transparent;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.page {
  padding-top: 0;
}


.hero {
  margin-top: -120px;
}

.logo-block {
  display: block;
  align-items: center;
  gap: 20px;
  position: relative;
  width: 250px;
}

.logo-block::after {
  content: "";
  position: absolute;
  inset: -10px;
  pointer-events: none;
}

.logo-mark {
    width: clamp(120px, 20vw, 240px);
    height: auto;
    margin-bottom: .5em;
}

.logo-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}

.access-pill {
  background: var(--accent-green);
  color: #fff;
  padding: 2px 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  width: 100%;
  display: block;
  text-align: center
}

.menu-button {
  border: none;
  background: #fff;
  border-radius: 50%;
  width: 74px;
  height: 74px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: var(--accent-green);
  cursor: pointer;
  padding-top: 1em;
}

.menu-button:hover {
  background: #f3fffa;
}

.menu-icon {
  width: 26px;
  height: 2px;
  background: var(--accent-green);
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

.menu-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

/* メニューボタンのアクティブ状態 */
.menu-button.active .menu-icon {
  background: transparent;
}

.menu-button.active .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button.active .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-button.active .menu-label {
  opacity: 0;
}

/* 全画面メニュー */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.fullscreen-menu-content {
  width: 100%;
  padding: 10em 40px;
  position: relative;
  text-align: center;
  height: 100vh;
}

.menu-close-button {
  position: absolute;
  top: 24px;
  right: 56px;
  width: 60px;
  height: 60px;
  border: none;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10000;
}

.menu-close-button:hover {
  background: #0d4a3d;
  transform: scale(1.1);
}

.menu-close-icon {
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
  transform: rotate(45deg);
}

.menu-close-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transform: rotate(90deg);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fullscreen-menu.active .menu-item {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu.active .menu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.fullscreen-menu.active .menu-item:nth-child(2) {
  transition-delay: 0.2s;
}

.fullscreen-menu.active .menu-item:nth-child(3) {
  transition-delay: 0.3s;
}

.fullscreen-menu.active .menu-item:nth-child(4) {
  transition-delay: 0.4s;
}

.fullscreen-menu.active .menu-item:nth-child(5) {
  transition-delay: 0.5s;
}

.menu-link {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size:clamp(24px, 3vw, 30px);
  font-weight: 600;
  color: var(--accent-green);
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 12px 0;
}

.menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: var(--accent-gold);
  transition: transform 0.3s ease;
}

.menu-link:hover {
  color: #0d4a3d;
  transform: translateX(10px);
}

.menu-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* メニューが開いている時のbodyスクロールロック */
body.menu-open {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 6fr 4fr;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  width: 100%;
  margin: 0 auto;
  transform: none;
}

.hero-left {
  padding: 16vw clamp(24px, 6vw, 80px) 72px;
  background: url("../../assets/images/hero_l_bg.png")
    center/cover no-repeat;
  position: relative;
  isolation: isolate;
  z-index: 10;
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.25;
  z-index: -1;
}
@media only screen and (min-width: 1521px) and (max-width: 5000px) {
.hero-note {
  width: 27vw;
  margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.4;
    position: absolute;
    right: -9vw;
    top: 7vw;
    filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}
}
@media only screen and (min-width: 641px) and (max-width: 1520px) {
.hero-note {
  width: 27vw;
  margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.4;
    position: absolute;
    right: -9vw;
    top: 6vw;
    filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
}
}


.hero-note-sp {
    display: none;
}

.hero-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-size:5vw;
  margin: 0;
  color: #333;
  letter-spacing: 0.1em;
  margin-top: -1.7em;
}

.hero-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(36px,4vw, 58px);
    line-height: 1.5;
    margin: 4px 0 20px;
    color: #000;
 }
 .hero-title span{
    color:var(--accent-green);
    font-size: 5.4vw;
    background-image: url("../../assets/images/dot01.png");
    background-position: 50% 23px;
    background-repeat: no-repeat;
    background-size: 92% auto;
    padding-top: 20px;
    letter-spacing: -.041em;
 }
.hero-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.1em;
  margin: 1.2em 0px;
  text-align: center;
  font-size: 1.4vw;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 26px;
  grid-row-gap: 20px;
  margin-bottom: 13px;
  margin-top: 1.3em;
}

.issue-card {
  background: #fff;
  padding: 0x 18px 24px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  
}
.issue-card:nth-child(1) {
  width: 100%;
  grid-area: 1 / 1 / 2 / 2;
}
.issue-card:nth-child(2) {
  width: 100%;
  grid-area: 1 / 2 / 2 / 3;
}
.issue-card:nth-child(3) {
  width: 100%;
  grid-area: 1 / 3 / 2 / 4;
}
.issue-header {
  background: var(--accent-green);
  color: #fff;
  padding: 6px 0px;
  width: 100%;
  margin: 0 auto;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.5vw;
}

.issue-illustration {
  height: 84px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.issue-body {
    margin: 1em auto;
    font-size: 1.4vw;
    font-weight: 600;
    color: #3c3c3c;
    width: 90%;
}

.hero-tags {
  display:  grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px; 
}

.hero-tag {
  background:#000;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 2vw;
   text-align:center;
   grid-area: 1 / 1 / 2 / 2;
}
@media (max-width: 768px) {
.hero-tag {
  font-size:3.7vw;
}
}
.hero-tag:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.hero-tag strong {
  color: var(--accent-gold);
  margin-left: 4px;
}

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  border-radius: 0;
  background: #fefefe;
  gap: 24px;
}

.hero-portrait {
  object-fit: cover;
  width: 100%;
  flex: 1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-portrait-sp {
  display: none;
}

.hero-portrait-pc {
  display: block;
}

.cta-pill {
  display: flex;
  flex-direction: column;
  background: #ffec7a;
  color: #2b2b2b;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  min-width: 120px;
  text-align: center;
}

.cta-pill-label {
  font-size: 13px;
  letter-spacing: 0.15em;
}

.cta-pill-value {
  font-size: 26px;
}

.cta-button {
    width: 320px;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    transition: background 0.2s ease;
    margin: auto;
}
.cta-button img:hover{
    opacity: 0.8;
}


@media (max-width: 1024px) {
  .page {
    padding-top: 0;
  }

  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px 10px 17px;
  }

  .logo-block {
    flex-direction: column;
    width: 170px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .logo-block.show {
    opacity: 1;
    visibility: visible;
  }

  .logo-mark {
    width: 160px;
  }

  .access-pill {
    font-size: 12px;
    padding: 2px 5px;
  }

  .menu-link {
    font-size: 5vw;
  }

  main {
    padding-top: 0;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    grid-template-columns: none;
    position: relative;
    margin-top: 0;
  }

  .hero-left {
    position: relative;
  }

  .hero-eyebrow {
    font-size: 39px;
    letter-spacing: 0;
    font-weight: bold;
    margin-top: -1.5em;
  }

  .hero-title {
    margin: 4px 0 16px;
  }

  .hero-title span {
    font-size:10vw;
  }

  .issue-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 10px;
    grid-column-gap: 0;
    margin-top: 1em;
    margin-bottom: 11px;
  }

  .issue-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0;
    gap: 10px;
  }

  .issue-header {
    text-orientation: upright;
    width: 20%;
    padding: 14px 8px;
    margin: 0;
    flex-shrink: 0;
    text-align: center;
    font-size: 3.6vw;
  }

  .issue-illustration {
    height: auto;
    width: 40px;
    margin: 0;
    flex-shrink: 0;
  }

  .issue-body {
    margin: 0;
    flex: 1;
    width: auto;
    font-size: 3.9vw;
  }

  .issue-card:nth-child(1),
  .issue-card:nth-child(2),
  .issue-card:nth-child(3) {
    grid-area: auto;
    width: 100%;
  }

  .hero-tags {
    grid-column-gap: 10px;
  }

  .hero-tag {
    padding: 6px 14px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-note {
    display: none;
  }

  .hero-note-sp {
    display: block;
    position: absolute;
    bottom: -56px;
    right: 24px;
    width:48vw;
    color: #fff;
    z-index: 10;
    margin: 0;
    right: 25px;
    bottom: -65px;
    filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.1));
  }
  .hero-note-sp br{
    display: none;
  }
  .hero-right {
    padding-top: 0;
    position: relative;
    max-height: 50vh;
    
  }

  .hero-portrait-pc {
    display: none;
  }

  .hero-portrait-sp {
    display: block;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 0;
  }
  .hero-left {
    padding: 70px 24px 24px;
  }

  .cta-panel {
    flex-direction: column;
  }

  .cta-button {
    width: 60%;
  }

  .menu-button {
    width: 60px;
    height: 60px;
  }

  /* モバイル版全画面メニュー */
  .fullscreen-menu-content {
    padding: 10em 24px;
  }

  .menu-close-button {
    top: 80px;
    right: 24px;
    width: 50px;
    height: 50px;
  }

  .menu-list {
    gap: 20px;
  }

  .menu-link {
    font-size: clamp(20px, 4vw, 48px);
  }
}

/* Worryセクション */
.worry-section {
  position: relative;
  width: 100%;
  min-height: 622px;
  padding: 80px 0;
  overflow: hidden;
}

.worry-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.worry-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.worry-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}



.worry-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 2.6vw, 45px);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  margin: 0 0 60px;
  letter-spacing: 0.05em;
}

.worry-highlight {
  color: var(--accent-gold);
  font-weight: 500;
  background-image: url("../../assets/images/dot02.png");
  background-position:10px 22%;
  background-repeat: no-repeat;
  background-size: 91% auto;
  padding-top: 20px;
  font-size: 3.2vw;
}
@media (max-width: 1024px) {
  .worry-highlight {
    color: var(--accent-gold);
    font-weight: 500;
    background-image: url("../../assets/images/dot02.png");
    background-position:10px 22%;
    background-repeat: no-repeat;
    background-size: 91% auto;
    padding-top: 20px;
    font-size: 7.2vw;
  }
}
.worry-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
  margin: 0 auto;
}

.worry-item {
  position: relative;
  background: #9CDACD;
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.worry-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.worry-checkmark {
  position: relative;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.worry-checkmark::after {
  width: 20px;
  height: 16px;
  content: "";
  background: url("../../assets/images/arrow01.png")
   no-repeat;
  font-weight: bold;
  line-height: 1;
}

.worry-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .worry-section {
    min-height: auto;
    padding: 60px 0;
  }



  .worry-list {
    gap: 20px;
  }

  .worry-item {
    padding: 18px 20px;
  }
}

@media (max-width: 640px) {
  .worry-section {
    padding: 40px 0;
  }



  .worry-title {
    margin-bottom: 40px;
    font-size: clamp(20px, 5vw, 28px);
  }

  .worry-list {
    gap: 16px;
  }

  .worry-item {
    padding: 16px 18px;
    gap: 16px;
  }

  .worry-checkmark {
    width: 16px;
    height: 16px;
  }

  .worry-checkmark::after {
    font-size: 10px;
  }

  .worry-text {
    font-size: clamp(14px, 4vw, 18px);
  }
}

/* トップに戻るボタン */
.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: var(--accent-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16, 93, 76, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #0d4a3d;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(16, 93, 76, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
  }

  .scroll-to-top-icon {
    width: 20px;
    height: 20px;
  }
}

/* Solutionセクション */
.solution-section {
  width: 100%;
  padding: 0;
  background: #fff;
  position: relative;
}

.solution-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(22px, 10vw, 64px);
  padding-bottom: 6em;
}

.solution-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.solution-arrow-icon {
  width: 44px;
  height: 23px;
  display: block;
}

.solution-subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 600;
  text-align: center;
  color: #000;
  margin: 0 0 5px;
  letter-spacing: 0.05em;
}

.solution-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(180deg, #115a4c 0%, #0b724f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 15px;
  letter-spacing: 0.1em;
}

.solution-tagline {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-tagline-text {
  background: #3C3C3C;
  color: #fff;
  padding: 8px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0;
}

.solution-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  text-align: center;
  color: #000;
  margin:40px 0 20px;
  letter-spacing: 0.05em;
}

.solution-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 25px;
grid-row-gap: 20px; 
  margin-top: 60px;
}

.solution-case {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.solution-case:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2; 
}
.solution-case:nth-child(2) {
  grid-area:  1 / 2 / 2 / 3;  
}
.solution-case:nth-child(3) {
  grid-area:  1 / 3 / 2 / 4; 
}
.solution-case:nth-child(4) {
  grid-area: 1 / 4 / 2 / 5; 
}

.solution-case-header {
  width: 100%;
  margin-bottom: 24px;
}

.solution-case-number {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: #0c6d4e;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.solution-case-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 700;
  color: #000;
  margin: 0;
  padding: 8px 0;
  border: 1px solid #ddd;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {

  .solution-case-title {
  font-size: clamp(20px, 1.5vw, 18px);
  }
}
.solution-case-icon {
  width: 137px;
  height: 137px;
  margin: 0 auto 24px;
  background:#9cdacd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.solution-icon-image {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.solution-case-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 500;
  color: #000;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
  letter-spacing: 0.02em;
  background-color: #f5f5f5;
  padding: 20px;
}
@media (max-width: 640px) {
  .solution-case-description {
    font-size: 16px;
  }
}


@media (max-width: 1024px) {
  .solution-section {
    padding: 80px 0;
  }

  .solution-cases {
    display: block;
  }

  .solution-case {
    width: 100%;
    margin-bottom: 32px;
  }

  .solution-case:nth-child(1),
  .solution-case:nth-child(2),
  .solution-case:nth-child(3),
  .solution-case:nth-child(4) {
    grid-area: auto;
  }
}

@media (max-width: 640px) {
  .solution-section {
    padding: 0px 0;
  }

  .solution-content {
    padding: 0 24px;
  }

  .solution-subtitle {
    margin-bottom: 0px;
  }

  .solution-title {
    margin-bottom: 24px;
  }

  .solution-description {
    margin-bottom: 40px;
  }

  .solution-cases {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .solution-case-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .solution-case-description {
    text-align: left;
  }
}

/* Mystoryセクション */
.mystory-section {
  position: relative;
  width: 100%;
  min-height: 1949px;
  padding: 60px 0 5em;
  overflow: hidden;
  background-image: 
  url("../../assets/images/my_story_bg.png"),linear-gradient( #0d694e 0%, #105e4d 100%);
  background-repeat:  repeat,no-repeat;
  background-position: center, center;
  background-size: auto, cover;
}
.mov_area {
  width: 820px;
  margin: 2em auto;
  aspect-ratio: 16 / 9;
}
.mov_area iframe {
  width: 100%;
  height: 100%;
}
.movttl {
  text-align: center;
  color: #fff;
}
.movtxt {
  width: 800px;
  margin: 1em auto;
  text-align: center;
  color: #fff;
}
@media (max-width: 640px) {
.mov_area {
  width: 90%;
  margin: 2em auto;
  aspect-ratio: 16 / 9;
}
.movtxt {
  width: 90%;
  margin: 1em auto;
  text-align: center;
  color: #fff;
}
}
.mystory-bg-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mystory-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.mystory-title {
  font-family: "Noto Serif JP", serif;
  font-size: 46px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin: 0 auto 80px;
  letter-spacing: -1.4px;
  line-height: 1.2em;
}

.mystory-title p:first-child {
  letter-spacing: 0;
}

.mystory-title p:last-child {
  letter-spacing: 1px;
}

.mystory-title p {
  margin: 0;
}

.mystory-title-highlight {
  color: var(--accent-gold);
}

.mystory-group {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  background-image: url("../../assets/images/arrow02.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mystory-profile {
  margin-bottom: 60px;
  position: relative;
}

.mystory-profile-box {
  display: flex;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.mystory-profile-info {
  flex: 1;
  background: #fff;
  padding: 0px 40px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 579px;
}

.mystory-profile-role {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  margin: 40px 0 8px;
  letter-spacing: 0.425px;
}

.mystory-profile-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 20px 0 20px;
  letter-spacing: 0.4px;
  padding-top: 2em;
}

.mystory-profile-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0;
  font-weight: 500;
  color: #000;
  text-align: left;
  margin: 0 0 30px;
  letter-spacing: 0.9px;
  display: flex;
  align-items: center;
}

.mystory-name-main {
  font-size: 36px;
  display: block;
}

.mystory-name-sub {
  font-size: 22px;
  letter-spacing: 0.55px;
}

.mystory-profile-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 27px;
  margin: 0;
  letter-spacing: 0.4px;
}

.mystory-profile-image {
  width: 325px;
  height: 430px;
  flex-shrink: 0;
  position: relative;
}

.mystory-profile-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mystory-profile-img-sp {
  display: none;
}

.mystory-profile-img-pc {
  display: block;
}

.mystory-mystory-text {
  position: absolute;
  bottom: -17px;
  right: -53px;
  font-family: "Rockville";
  font-size: 63.581px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 8.2655px;
  transform: rotate(337.29deg) scaleY(0.84897) skewX(353.071deg);
  white-space: nowrap;
  z-index: 2;
}

.mystory-subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 33.659px;
  font-weight: 500;
  color: #fff;
  text-align: right;
  margin: 0 0 60px;
  letter-spacing: 4.3757px;
  line-height: 51px;
  max-width: 437px;
  margin-left: auto;
}

.mystory-subtitle p {
  margin: 0;
}

.mystory-timeline {
  position: relative;
  margin: 60px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.mystory-timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.mystory-timeline-item:nth-child(odd) {
  max-width: 50%;
}

.mystory-timeline-item:nth-child(even) {
  max-width: 50%;
  margin-left: 55%;
}

.mystory-timeline-content {
  width: 86%;
}

.mystory-timeline-item:nth-child(even) .mystory-timeline-content {
  text-align: left;
}

.mystory-timeline-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
  letter-spacing: 3.12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mystory-timeline-number {
  width: 38.979px;
  height: 42px;
  background: #044B38;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3.12px;
  border-radius: 0;
}

.mystory-timeline-line {
  width: 500px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  margin: 15px 0 20px;
}

.mystory-timeline-item:nth-child(even) .mystory-timeline-line {
  width: 436px;
  margin-left: -14%;
}

.mystory-timeline-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 30px;
  margin: 0;
  letter-spacing: 2.08px;
  max-width: 100%;
}

.mystory-timeline-item:nth-child(even) .mystory-timeline-description {
  max-width: 100%;
}

.mystory-timeline-illust {
  position: absolute;
  z-index: 2;
}

.mystory-timeline-item:nth-child(1) .mystory-timeline-illust {
  width: 239px;
  height: 239px;
  top: -189px;
  left: 273px;
  position: absolute;
}

.mystory-timeline-item:nth-child(2) .mystory-timeline-illust {
  width: 193px;
  height: 193px;
  top: 60px;
  right: -99px;
  left: auto;
  position: absolute;
}

.mystory-illust-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1024px) {
  .mystory-section {
    min-height: auto;
    padding: 80px 0 0;
  }

  .mystory-title {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.4;
  }

  .mystory-profile-box {
    flex-direction: column-reverse;
    gap: 0px;
  }

  .mystory-profile-info {
    padding: 30px 24px;
    min-height: auto;
    width: 100%;
  }

  .mystory-profile-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .mystory-profile-img-pc {
    display: none;
  }

  .mystory-profile-img-sp {
    display: block;
  }

  .mystory-profile-role {
    margin: 0px 0 8px;
  }

  .mystory-profile-title {
    margin: 0px 0 8px;
    padding-top: 1em;
  }

  .mystory-profile-name {
    margin: 0px 0 8px;
  }

  .mystory-profile-description {
    font-size: 12px;
    line-height: 22px;
  }

  .mystory-timeline-item {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .mystory-timeline-content {
    width: 100%;
  }

  .mystory-timeline-item:nth-child(even) .mystory-timeline-content {
    text-align: left;
  }

  .mystory-timeline-line {
    width: 100% !important;
    max-width: 430px;
  }

  .mystory-timeline-item:nth-child(even) .mystory-timeline-line {
    margin-left: 0;
  }

  .mystory-timeline-description {
    max-width: 100% !important;
  }

  .mystory-timeline-item:nth-child(even) .mystory-timeline-description {
    margin-left: 0;
  }

  .mystory-timeline-illust {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 20px auto;
    width: 180px;
    height: 180px;
  }

  .mystory-subtitle {
    text-align: center;
    margin: 40px auto 60px;
    max-width: 100%;
  }

  .mystory-group {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .mystory-section {
    padding: 40px 0 4em;
  }

  .mystory-content {
    max-width: 100%;
    padding: 0 24px;
  }

  .mystory-group {
    width: 100%;
  }

  .mystory-title {
    font-size: clamp(26px, 5vw, 32px);
    margin-bottom: 40px;
  }

  .mystory-profile {
    margin-bottom: 40px;
  }

  .mystory-profile-info {
    padding: 24px 20px;
  }

  .mystory-profile-name {
    font-size: 0;
  }

  .mystory-name-main {
    font-size: 28px;
  }

  .mystory-name-sub {
    font-size: 18px;
  }

  .mystory-timeline {
    margin: 40px 0;
  }

  .mystory-timeline-item {
    gap: 15px;
    margin-bottom: 40px;
  }

  .mystory-timeline-number {
    width: 32px;
    height: 36px;
    font-size: 20px;
  }

  .mystory-timeline-title {
    font-size: 20px;
  }

  .mystory-timeline-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .mystory-timeline-illust {
    width: 150px;
    height: 150px;
  }

  .mystory-subtitle {
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.5;
  }

  .mystory-mystory-text {
    font-size: 40px;
    bottom: 10px;
    right: 10px;
  }
}

/* Resolutionセクション */
.resolution-section {
  width: 100%;
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.resolution-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}

.resolution-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resolution-arrow {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.resolution-arrow-icon {
  width: 44px;
  height: 23px;
  display: block;
}

.resolution-header-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.resolution-subtitle-bubble {
  background: var(--accent-gold);
  border-radius: 128px;
  padding: 12px 24px;
  position: relative;
  flex-shrink: 0;
  margin-top: -15px;
  width: 161px;
  height: 156px;
  display: flex;
  align-items: center;
}

.resolution-subtitle-bubble::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--accent-gold);
}

.resolution-subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 40.589px;
  font-weight: 500;
  color: #0e644d;
  margin: 0;
  letter-spacing: 0.4059px;
  white-space: nowrap;
}

.resolution-header-text {
  flex: 1;
  text-align: center;
}

.resolution-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 77.06px;
  font-weight: 700;
  background: linear-gradient(180deg, #115a4c 0%, #0b724f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 5px;
  letter-spacing: 7px;
  line-height: 1;
}

.resolution-subtitle-main {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 500;
  color: #000;
  margin: 0;
  letter-spacing: 0.36px;
}

.resolution-cases {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}

.resolution-case {
  position: relative;
  background: #fff;
  border: 1px solid #3a3a3a;
  padding: 40px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 50px;
  align-items: start;
}

.resolution-case-number {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 81px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  letter-spacing: 0.81px;
}

.resolution-case-content {
  flex: 1;
  width: 100%;
}

.resolution-case-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f644d;
  margin: 0 0 15px;
  letter-spacing: 0.28px;
  line-height: 1.4;
}

.resolution-case-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 1.75;
  margin: 0;
  letter-spacing: 0.2px;
}

.resolution-case-illust {
  width: 250px;
  height: auto;
  flex-shrink: 0;
  position: relative;
}

.resolution-illust-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1024px) {
  .resolution-illust-image {
    width: 70%;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
  }
}
.resolution-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.resolution-stamp-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}

.resolution-reviews {
  margin-top: 30px;
  background: #EFF1F1;
  padding:1.5em .5em 2em;
}

.resolution-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  width: 759px;
  margin: 0 auto;
}

.resolution-reviews-illust-left,
.resolution-reviews-illust-right {
  width: 169px;
  height: 199px;
  flex-shrink: 0;
}

.resolution-kutikomi-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.resolution-reviews-title-area {
  text-align: center;
  flex: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 0px;
  margin-top: -2em;
}

.resolution-reviews-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin: 0 0 -8px;
  letter-spacing: 2.9px;
}

.resolution-google-logo {
  width: 100%;
  height: auto;
  margin: 0 auto -8px;
  object-fit: contain;
}

.resolution-reviews-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #424141;
  margin: 0.3em 0;
  letter-spacing: 3.19px;
}

.resolution-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}

.resolution-review-card {
  position: relative;
  background: #fff;
  padding: 24px;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.resolution-review-card:first-child {
  grid-column: 1;
}

.resolution-review-card:nth-child(2) {
  grid-column: 2;
}

.resolution-review-card:nth-child(3) {
  /*grid-column: 1 / -1;*/
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #4285f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resolution-review-card:nth-child(2) .review-avatar {
  background: #00897b;
}

.resolution-review-card:nth-child(3) .review-avatar {
  background: #f39e9e;
}

.review-avatar-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.review-user-info {
  flex: 1;
}

.review-user-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0 0 4px;
  position: relative;
  display: inline-block;
  text-align: left !important;
}

.review-user-name::after {
  content: "";
  position: absolute;
  top: 54%;
  left: -3px;
  right: 0;
  height: 14px;
  background: #ccc;
  transform: translateY(-50%);
  border-radius: 20px;
}

.review-rating {
  display: flex;
  gap: 2px;
}

.review-star {
  color: #ffc107;
  font-size: 18px;
  line-height: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.review-date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #666;
}

.review-more {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s ease;
}

.review-more:hover {
  color: #000;
}

.review-more-icon {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
}

.review-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

@media (max-width: 1024px) {
  .resolution-section {
    padding: 80px 0;
  }

  .resolution-header-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .resolution-subtitle-bubble {
    margin-top: 0;
    width: 140px;
    height: 140px;
  }

  .resolution-header-text {
    text-align: center;
  }

  .resolution-title {
    font-size: clamp(48px, 6vw, 77px);
  }

  .resolution-case {
    grid-template-columns: 60px 1fr;
    gap: 36px;
  }

  .resolution-case-illust {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .resolution-reviews-header {
    flex-direction: row;
    width: 100%;
    gap: 0px;
    padding: 0 10px;
  }

  .resolution-reviews-illust-left,
  .resolution-reviews-illust-right {
    width: 70px;
    height: auto;
    flex-shrink: 0;
  }

  .resolution-reviews-title-area {
    flex: 1;
    padding:0px;
    background-size: contain;
  }

  .resolution-reviews-label {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: .1em;
  }

  .resolution-google-logo {
    width: 200px;
    height: auto;
  }
}

@media (max-width: 640px) {
  .resolution-section {
    padding: 25px 0;
  }

  .resolution-content {
    padding: 0 24px;
  }

  .resolution-header {
    width: 80%;
    margin: 0 auto 45px;
  }

  .resolution-header-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .resolution-subtitle-bubble {
    padding: 8px 16px;
    margin-top: 0;
    width: 100px;
    height: 100px;
  }

  .resolution-subtitle {
    font-size: clamp(24px, 5vw, 36px);
  }

  .resolution-header-text {
    text-align: center;
  }

  .resolution-title {
    font-size: clamp(36px, 8vw, 60px);
  }

  .resolution-subtitle-main {
    font-size: clamp(24px, 5vw, 32px);
  }

  .resolution-cases {
    gap: 30px;
    margin-bottom: 10px;
  }

  .resolution-case {
    padding: 24px;
    grid-template-columns: 50px 1fr;
  }

  .resolution-case-number {
    font-size: 60px;
  }

  .resolution-case-title {
    font-size: 22px;
  }

  .resolution-case-description {
    font-size: 16px;
  }

  .resolution-reviews-grid {
    display: block;
    width: 96%;
    max-width: 96%;
  }

  .resolution-review-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .resolution-review-card:last-child {
    margin-bottom: 0;
  }

  .resolution-review-card:nth-child(3) {
    grid-column: 1;
  }
}

/* CTAセクション */
.cta-section {
  width: 100%;
  background: url("../../assets/images/cta_bg.png") center/cover no-repeat;
  padding: 40px 0;
}

@media (max-width: 640px) {
  .cta-section {
    padding: 38px 0;
  }
}

.cta-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  text-align: center;
}

.cta-header {
  margin-bottom: 32px;
}

.cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  color: #0d6a4e;
  letter-spacing: 1px;
  margin: 0 0 18px;
}

.cta-badge {
  display: inline-block;
  background: #1c1a18;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.55px;
  padding: 8px 24px;
  margin: 0;
}

.cta-contact {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: stretch;
  flex-wrap: nowrap;
}

.cta-phone {
  text-align: left;
  flex: 1;
}

.cta-phone-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #1c1a18;
  margin: 0 8px 0;
  text-align: center;
}

.cta-phone-number {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.cta-phone-icon {
  width: 24px;
  height: 24px;
}

.cta-phone-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 4.5vw, 49px);
  font-weight: 600;
  color: #0d6a4e;
  text-decoration: none;
}

.cta-phone-btn-sp {
  display: none;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 1;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.cta-btn-text{
  text-align: left;
  padding: 0;
  margin-left: 0em;
}
@media (max-width: 768px) {
.cta-btn-text{
  text-align: left;
  padding: 0;
  margin-left: -1em;
}
}

.cta-btn.line {
  background: linear-gradient(90deg, #69b04a 0%, #4d8f2f 100%);
}

.cta-btn.mail {
  background: linear-gradient(90deg, #258bcc 0%, #1365a9 100%);
}

.cta-btn-arrow {
  width: 28px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cta-content .cta-btn-arrow {
  width: 18px;
  height: 18px;
}


.cta-btn-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
}

.cta-btn.line .cta-btn-arrow::after {
  border-left-color: #67BC41;
}

.cta-btn.mail .cta-btn-arrow::after {
  border-left-color: #0958B1;
}

@media (max-width: 768px) {
  .cta-contact {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }

  .cta-phone {
    text-align: center;
    width: 100%;
  }

  .cta-phone-label,
  .cta-phone-number {
    display: none;
  }

  .cta-content .cta-btn-arrow {
    width: 23px;
    height: 22px;
  }

  .cta-phone-btn-sp {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 480px;
    padding: 18px 24px;
    margin-top: 8px;
    border-radius: 12px;
    background: #fff;
    color: #0b724f ;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    position: relative;
  }
 .cta-phone-btn-sp.first{
  background: #105E4C;
  color: #fff ;
 }
.cta-phone-btn-sp.first .cta-phone-btn-arrow{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
  }
.cta-phone-btn-sp.first .cta-phone-btn-arrow::after{
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #0b724f;
}

  .cta-phone-btn-text {
    flex: 1;
    text-align: left;
    padding: 0 1em;
  }

  .cta-phone-btn-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0b724f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
  }

  .cta-phone-btn-arrow::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #fff;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    justify-content: center;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    position: relative;
    padding-right: 80px;
  }

  .cta-btn .cta-btn-arrow {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Flowセクション */
.flow-section {
  width: 100%;
  background: radial-gradient(circle, rgba(31, 129, 102, 0.9) 0%, #0e5e49 100%);
  padding: 50px 0;
  color: #fff;
}

@media (max-width: 640px) {
  .flow-section {
    padding: 40px 0;
  }
}

.flow-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  text-align: center;
}

.flow-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.38;
  margin: 0 0 60px;
}
@media (max-width: 640px) {
.flow-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.38;
  margin: 0 0 40px;
}
}
.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  align-items: center;
}

.flow-step {
  padding: 24px;
  position: relative;
}

.flow-step-badge {
  position: absolute;
  top: 18px;
  left: 46px;
  background: #ff8c00;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 14px;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .flow-step-badge {
    left: 108px;
    padding: 13px 9px;
  }
}

@media (max-width: 640px) {
  .point-card.highlight {
    margin-top: 0 !important;
  }
}

.flow-step-illustration {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
}

.flow-step-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow-step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0e654d;
  background: #fff;
  
  margin: 0 auto 12px;
  padding: 6px 12px;
  width: fit-content;
}

.flow-step-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.flow-arrow {
  width: 60px;
  height: 7px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-53%);
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 19px solid #fff;
}

@media (max-width: 1024px) {
  .flow-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .flow-step {
    padding: 28px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}
.pc{
  display: block;
}
.sp{
  display: none;
}

@media (max-width: 640px) {
  .flow-step-illustration {
    width: 120px;
    height: 120px;
  }
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}

/* Pointセクション */
.point-section {
  width: 100%;
  padding: 60px 0;
  background: #fff;
  overflow: hidden !important;
}

.point-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  text-align: center;
}

.point-content .resolution-review-card{
  text-align: left !important;
}

.point-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 700;
  color: #0e644d;
  margin: 0 0 60px;
}

@media (max-width: 640px) {
  .point-section {
    padding: 30px 0;
  }

  .point-title {
    margin: 0;
  }
}

.point-cards {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
  align-items: start;
  padding-top: 4em;
  
}

.point-card {
  background: #D3F4ED;
  padding: 32px 24px;
  text-align: left;
  position: relative;
  min-height: 300px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}


.point-card.highlight {
  background: #FFFB89;
  min-height: 383px;
  padding: 40px 28px;
  margin-top: -60px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  border: 1px solid #FE6420;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.3));
}
.point-card.highlight::after {
  content: "";
  position: absolute;
  top: -26px;
  right: -20px;
  width: 43.43px;
  height: 46.43px;
  border-right: 1px solid #FE6420;
  transform: rotate(135deg);
}


.point-card-label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #105E4C;
  padding: 6px 18px;
  margin: 0 0 20px -24px;
}

.point-card.highlight .point-card-label {
  background: #ff8c00;
}

.point-card-ribbon {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21.454px;
  font-weight: 500;
  color: #fff;
  background: #ff8c00;
  padding: 8px 20px;
  margin: 0 0 20px -28px;
}

.point-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size:28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px;
  line-height: 1.4;
}

.point-card.highlight .point-card-title {
  color: #ff4e00;
}

.point-card-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #105E4C;
  margin-top: 16px;
}
.point-card.highlight .point-card-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #FE6420;
  margin-top: 16px;
}
.point-card-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin: 0;
  text-align: justify;
  letter-spacing: -0.01em;
}

.point-table-wrapper {
  background: #fefefe;
  padding: 32px 0px;
  
}

.point-table-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px;
  letter-spacing: 0.07em;
}

.point-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.point-table thead th {
  width: 50%;
  background: #0e644d;
  color: #fff;
  padding: 20px 14px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  height: 63px;
  box-sizing: border-box;
}

.point-table thead th:first-child {
  border-right: 3px solid #fff;
}

.point-table tbody td {
  padding: 16px 14px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  height: 51.52px;
  box-sizing: border-box;
}

.point-table tbody td:first-child {
  border-right: 3px solid #FFF;
}
table.point-table thead {
  border-bottom: 4px solid #fff;
}
.point-table tbody tr{
  border-bottom: 4px solid #fff;
}
.point-table tbody tr:nth-child(odd) {
  background: #E3F7F3;
}

.point-table tbody tr:nth-child(even) {
  background: #F4F6F5;
}

.point-table-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .point-cards {
    grid-template-columns: 1fr;
    padding-top: 2em;
    margin-bottom: 0;
  }

  .point-card {
    text-align: center;
  }

  .point-card-title,
  .point-card-description {
    text-align: center;
  }

  .point-card.highlight {
    order: -1;
  }
}

/* フッター */
.site-footer {
  position: relative;
  color: #fff;
  padding-top: 80px;
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 30px;
  }
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(19, 102, 78, 0.9), #0a503b);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px) 60px;
  text-align: center;
}

.footer-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 12px;
}

.footer-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  margin: 0 0 32px;
}

.footer-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-phone {
  text-align: center;
}

.footer-phone-label {
  font-size: 16px;
  margin: 0 0 8px;
}

.footer-phone-number {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-phone-number img {
  width: 30px;
  height: auto;
}

.footer-phone-number a {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-info {
  padding:0px;
  margin-top: 40px;
}

.footer-info h3 {
  margin: 0 0 30px;
  font-size: 20px;
  color: #000;
  background: #9cdacd;
  padding: .5em 0;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  
}

.footer-map img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.footer-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  text-align: left;
}

.footer-info-table th,
.footer-info-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  vertical-align: middle;
}

.footer-info-table th {
  width: 30%;
  font-weight: 600;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
  background: #062f23;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-cta {
    flex-direction: column;
    gap: 24px;
  }

  .footer-phone {
    text-align: center;
    display: block;
    width: 100%;
  }

  .footer-phone-label,
  .footer-phone-number {
    display: none;
  }

  .footer-phone-btn-sp {
    width: 100%;
    max-width: none;
  }

  .footer-info-grid {
    grid-template-columns: 1fr;
  }
}
