:root {
  --color-teal-50: #f0fdfa;
  --color-teal-100: #ccfbf1;
  --color-teal-200: #99f6e4;
  --color-teal-300: #5eead4;
  --color-teal-400: #2dd4bf;
  --color-teal-500: #14b8a6;
  --color-teal-600: #0d9488;
  --color-teal-700: #0f766e;
  --color-teal-800: #115e59;
  --color-teal-900: #134e4a;
  
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  
  --font-sans: 'Noto Sans JP', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #064e3b, #047857);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.header p {
  font-size: 1.2rem;
  color: #a7f3d0;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  max-width: 36rem;
  margin: 0 auto;
  position: relative;
}

.step-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-content {
  display: flex;
  align-items: center;
  min-height: 350px;
}

.step-image {
  flex: 1;
  max-width: 500px;
}

.step-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.step-text {
  flex: 1;
  padding: 30px;
}

.step-header {
  display: flex;
  align-items: center;
}

.step-icon {
  background: #d1fae5;
  padding: 12px;
  border-radius: 50%;
  margin-right: 16px;
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: #064e3b;
  margin-right: 12px;
}

.step-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1f2937;
}

.step-description {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
}

/* Notice Section - 画像デザインに合わせて修正 */
.notice-section {
  padding-top: 80px;
}

.notice-container {
  max-width: 1200px;
  margin: 0 auto;
}

.notice-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #047857;
  margin-bottom: 40px;
}

.notice-card {
  background: white;
  border: 3px solid #047857;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 0;
  position: relative;
}

.notice-list {
  list-style: none;
  margin-bottom: 30px;
}

.notice-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.notice-list li::before {
  content: '•';
  color: #333;
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: -2px;
}

.notice-footer {
  background: #047857;
  color: white;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0;
}

/* AI Chat Icon */
.ai-chat-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.ai-chat-icon:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: #064e3b;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer p {
  color: #a7f3d0;
  font-size: 1.1rem;
}

/* Icons */
.icon {
  width: 32px;
  height: 32px;
  fill: #064e3b;
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 1rem;
  }

  .step-content {
    flex-direction: column;
    min-height: auto;
  }

  .step-image {
    max-width: 100%;
    width: 100%;

  }

  .step-image img {
    height: 200px;
  }

  .step-text {
    padding: 30px 20px;
  }

  .step-title {
    font-size: 1.5rem;
  }

  .notice-container {
    max-width: 100%;
    padding: 0;
  }

  .notice-card {
    padding: 30px 20px;
  }

  .notice-title {
    font-size: 1.5rem;
  }

  .ai-chat-icon {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 共通項目↓ */

.accent {
  color: var(--color-teal-600);
  position: relative;
  display: inline-block;
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
}

.accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--color-teal-200);
  z-index: -1;
  border-radius: var(--radius-sm);
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.main-container{
  padding-top: 80px;
  margin: auto;
  padding-bottom: 40px;
}
.hero-small {
  padding: 5rem 0 5rem;
  background: linear-gradient(135deg, #cdfad3, white, #cdfad3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-small::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #b9fcb8 0%, transparent 70%);
  opacity: 0.4;
  z-index: 0;
}

.hero-small::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, white, transparent);
  z-index: 1;
}

.sub-container{
  max-width: 1200px;
  margin: auto;
}

.news-header {
    text-align: center;
    position: relative;
}

.news-header h1 {
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    font-family: "Roboto", "M PLUS Rounded 1c", sans-serif;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.news-large {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 8rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    pointer-events: none;
}

.content-wrapper {
    background: url(../images/noise_pc.png) repeat left top;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    gap: 40px;
    max-width: 1300px;
    margin: auto;
}
/* nav共通化 */
nav#Nav {
		left: 0;
		z-index: 10;
		width: 100%;
		height: 80px;
		overflow: hidden;
		position: absolute;
		background-color: #395246
}

nav#Nav.fixed {
		top: 0;
		left: 0;
		z-index: 10;
		position: fixed;
		overflow: hidden
}

nav#Nav.fixed .navList {
		max-width: 760px
}

nav#Nav.fixed .lineLogo {
		opacity: 1
}

nav#Nav .lineLogo {
		top: 0;
		left: 20px;
		height: 80px;
		z-index: 5;
		position: absolute;
		-webkit-transition: 0.5s ease-in-out;
		-o-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out
}

nav#Nav .lineLogo img {
		margin-top: 22px;
		height: calc(100% - 44px)
}

nav#Nav .navList {
		width: 100%;
		margin: 0 auto;
		max-width: 870px;
		text-align: center;
		-webkit-transition: 1s ease-in-out;
		-o-transition: 1s ease-in-out;
		transition: 1s ease-in-out;
    font-weight: 600;
}

nav#Nav .navList a.list {
		width: 12%;
		cursor: pointer;
		display: inline-block;
		-webkit-transition: 1s ease-in-out;
		-o-transition: 1s ease-in-out;
		transition: 1s ease-in-out
}

nav#Nav .navList a.list .btn0 {
		color: white;
		display: block;
		cursor: pointer;
		font-size: 12px;
		letter-spacing: 2px;
		font-family: 'GothamM';
		padding: 34px 0px;
		text-align: center;
    position: relative;
}
/* アンダーバーの基本状態 */
.navList .list .btn0::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 0;                /* 初期は幅ゼロ */
  height: 2px;             /* 線の太さ */
  background-color: #cabd9d;
  transition: width 0.3s ease; /* アニメーション */
}

/* ホバー時にバーを伸ばす */
.navList .list:hover .btn0::after {
  width: 100%;             /* 親要素いっぱいに広げる */
}

nav#Nav .navList a.list.active .btn0,
nav#Nav .navList a.list:hover .btn0 {
		color: #c9bc9c
}

nav#Nav .media {
		top: 0;
		right: 25px;
		height: 100%;
		position: absolute
}

nav#Nav .media a {
		width: 40px;
		height: 100%;
		margin: 0 15px;
		cursor: pointer;
		display: inline-block;
		background-position: center;
		-webkit-transition: 0.5s ease-in-out;
		-o-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out
}

nav#Nav .media a.fb {
		background-size: auto 18px;
		background-image: url("../images/FacebookIcon.png")
}

nav#Nav .media a.instergram {
		background-size: 18px auto;
		background-image: url("../images/instagramIcon.png");
    background-repeat: no-repeat;
}

nav#Nav .media a.twitter {
		background-size: 18px auto;
		background-image: url("../images/twitter.png")
}

nav#Nav .media a:hover {
		opacity: 0.5
}

/* footer共通化 */
footer {
		color: #cabc9d;
		font-size: 12px;
		text-align: center;
		padding-bottom: 10px;
		background-color: #395246
}

footer .smallCage {
	text-align: center;
	margin: 20px 0 10px 0;
	padding-top: 10px;
    font-family: "Roboto", "M PLUS Rounded 1c", sans-serif;
}
footer .smallCage a {
	color: #cabc9d;
	margin: 0 30px;
  text-decoration: none;
}
.my-4{
  margin-bottom: 5rem;
}
@media only screen and (max-width:1025px) {
  .main-container{
    padding-bottom:0;
    padding-top: 60px;
  }
  nav#Nav {
		height: 60px;
	}
  nav#Nav .navList {
      max-width: 700px
  }
  nav#Nav .navList a.list {
      width: auto
  }
  nav#Nav .navList a.list .btn0 {
      padding: 34px 24px
  }
  nav#Nav.fixed .navList {
      max-width: 600px
  }

  nav#Nav {
      top: 0;
      position: fixed;
      -webkit-transition: 1s ease-in-out;
      -o-transition: 1s ease-in-out;
      transition: 1s ease-in-out;
      -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
      box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2)
  }
  nav#Nav .lineLogo {
      opacity: 1;
      top: -8px;
  }
  nav#Nav .media,
  nav#Nav .navList {
      opacity: 0;
      pointer-events: none
  }
  nav#Nav .navList {
      padding-top: 11%
  }
  nav#Nav .navList a.list {
      width: 100%;
      display: block
  }
  nav#Nav .navList a.list .btn0 {
      font-size: 20px;
      padding: 15px 40px
  }
  nav#Nav .media {
      right: 0;
      width: 100%;
      height: 80px;
      position: relative;
      text-align: center;
      -webkit-transition: 0.8s ease-in-out;
      -o-transition: 0.8s ease-in-out;
      transition: 0.8s ease-in-out
  }
  nav#Nav .media a {
      margin: 0 15px
  }
  nav#Nav .menu {
      top: 22px;
      right: 30px;
      width: 30px;
      position: absolute
  }
  nav#Nav .menu .bar {
      height: 2px;
      width: 100%;
      background-color: #c9bc9d;
      -webkit-transition: 0.3s ease-in-out;
      -o-transition: 0.3s ease-in-out;
      transition: 0.3s ease-in-out
  }
  nav#Nav .menu .bar.middle {
      margin: 7px 0
  }
  nav#Nav.fixed .lineLogo {
      opacity: 1
  }
  nav#Nav.openMenu {
    height: 100%;
    z-index: 3;
  }
  nav#Nav.openMenu .media,
  nav#Nav.openMenu .navList {
      opacity: 1;
      display: block;
      pointer-events: auto
  }
  nav#Nav.openMenu .menu .bar {
      height: 2px;
      width: 100%;
      background-color: #c9bc9d
  }
  nav#Nav.openMenu .menu .bar.top {
      width: 34px;
      position: relative;
      -webkit-transform: rotate(31deg);
      -ms-transform: rotate(31deg);
      transform: rotate(31deg);
      -webkit-transform-origin: 0px 1px;
      -ms-transform-origin: 0px 1px;
      transform-origin: 0px 1px
  }
  nav#Nav.openMenu .menu .bar.middle {
      width: 0;
      margin: 7px 0
  }
  nav#Nav.openMenu .menu .bar.bottom {
      position: relative;
      width: 34px;
      -webkit-transform: rotate(-31deg);
      -ms-transform: rotate(-31deg);
      transform: rotate(-31deg);
      -webkit-transform-origin: 0px 1px;
      -ms-transform-origin: 0px 1px;
      transform-origin: 0px 1px
  }
  footer .smallCage{
    width: 100%;
    margin: 0;
    padding: 10px;
    justify-content: space-around; /* 中央寄せや左右バランス調整に応じて変更可 */
  }
  footer .smallCage a {
    margin: 0 12px;
  }
  .hero-description {
    width: 80%;
    margin: 0 auto;
  }
  .scale-110 {
    --tw-scale-x: 1.2;
    --tw-scale-y: 1.2;
  }
  img.transform.scale-110.md\:scale-100.mx-auto.w-howto.h-auto.object-cover.rounded-lg
  {
    margin: 30px 0;
  }
  svg.w-8.h-8.text-gray-500.animate-bounce {
    margin-top: 45px;
  }
  .my-4 {
    margin-bottom: 30px;
  }
  .container {
    padding: 0;
  }
  .notice-section {
    padding-top: 0;
  }
  .notice-title {
    margin-bottom: 0;
  }
}

/* 共通項目↑ *