@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
  scrollbar-gutter: stable;
}
html {
  color: #222222;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-feature-settings: "palt"1;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  font-kerning: normal;
  vertical-align: baseline;
  line-height: 1.5;
  width: 100%;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
}
/*bg*/
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
:root {
  --color-primary: #C12C4B;
  --color-accent: #3C7C5F;
  --color-bg-light: #ffffff;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.sp-768, .sp-subtitle {
  display: none;
}
/* =========================================
           2. Background Layers (装飾・背景レイヤー)
           ========================================= */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg-layer__ribbons, .bg-layer__floating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s;
  z-index: -1;
}
.bg-layer__ribbons.is-active, .bg-layer__floating.is-active {
  opacity: 1;
  visibility: visible;
}
.ribbon-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10000px;
  height: 600px;
  pointer-events: none;
}
.ribbon-wrapper--tl {
  transform: translate(-50%, -50%) translate(-35vw, -35vh) rotate(-45deg);
}
.ribbon-wrapper--br {
  transform: translate(-50%, -50%) translate(35vw, 35vh) rotate(-45deg);
}
.ribbon-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 10000px;
  height: 600px;
  fill: none;
  stroke-linecap: round;
  will-change: transform;
}
.ribbon-svg--green {
  stroke: #CFDED7;
  stroke-width: 60px;
  animation: ribbonSlide 100s linear infinite;
}
.ribbon-svg--gray {
  stroke: #E6E6E6;
  stroke-width: 40px;
  top: 30px;
  animation: ribbonSlide 80s linear infinite reverse;
}
.ribbon-wrapper--br .ribbon-svg--green {
  animation-duration: 92s;
  animation-direction: reverse;
}
.ribbon-wrapper--br .ribbon-svg--gray {
  animation-duration: 80s;
  animation-direction: normal;
}
@keyframes ribbonSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2000px, 0, 0);
  }
}
.bg-layer__floating-container {
  position: absolute;
  top: -10vh;
  left: -10vw;
  width: 120vw;
  height: 120vh;
}
.floating-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform, opacity;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: floatBgImage 45s ease-in-out infinite alternate;
}
.floating-image.FI-5 {
  animation: floatBgImage2 45s ease-in-out infinite alternate;
}
.floating-image.is-active {
  opacity: 1;
}
@keyframes floatBgImage {
  0% {
    transform: scale(1.05) translate(0%, 0%);
  }
  50% {
    transform: scale(1.1) translate(-2%, 1.5%);
  }
  100% {
    transform: scale(1.05) translate(1.5%, -2%);
  }
}
@keyframes floatBgImage2 {
  0% {
    transform: scale(1.00) translate(0%, 0%);
  }
  50% {
    transform: scale(1.1) translate(-1.5%, 1.5%);
  }
  100% {
    transform: scale(1.005) translate(1.5%, -1.5%);
  }
}
/* =========================================
           3. Layout & Components
           ========================================= */
.wrapper {
  max-width: 1064px;
  margin: 0 auto;
  width: 100%;
}
.flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.flex.column {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.flex.column.wrapper {
  align-items: center;
}
footer .flex.column {
  gap: 0;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
header .flex {
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
}
header .flex.wrapper {
  max-width: 1134px;
  padding: 0 2rem;
}
header nav ul {
  display: flex;
  gap: 1.5em;
}
header nav ul li a {
  color: #222222;
  transition: opacity 0.3s;
  font-size: 0.875rem;
}
.hamburger {
  display: none;
}
header nav ul li a > span.material-symbols-outlined {
  font-variation-settings: 'FILL'0, 'wght'300, 'GRAD'-25, 'opsz'20;
  font-size: 0.875rem;
  vertical-align: text-bottom;
  margin-left: 4px;
}
header li a:hover {
  opacity: 0.6;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  display: block;
  width: 100%;
}
header .logo img {
  max-width: 48px;
}
header .header-title {
  display: inline-flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1;
  gap: 6px;
  align-items: center;
}
header .small {
  display: inline-block;
  font-weight: normal;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
}
.w-bg {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 504px;
  justify-content: center;
}
.Logo-design .w-bg {
  gap: 2rem;
}
.Logo-design .w-bg div.logo {
  flex: 1;
  width: 25%;
  min-width: 300px;
  padding: 0 3rem;
}
.Logo-design .w-bg div.flex.column {
  flex: 1.732;
  gap: 0;
}
h2 {
  font-size: 1.5rem;
  color: #222222;
  font-weight: bold;
  position: relative;
  padding-bottom: 0.75em;
  text-align: center;
}
h2::after {
  height: 4px;
  width: 42px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--color-accent);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
  line-height: 1.5;
  font-weight: bold;
}
.Slogan h3 {
  font-size: 1.25rem;
  position: relative;
  display: inline-block;
  padding: 0.85em 2em;
  letter-spacing: 0.05em;
}
.Slogan h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--color-primary);
  border-left: 4px solid var(--color-primary);
}
.Slogan h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-bottom: 4px solid var(--color-primary);
  border-right: 4px solid var(--color-primary);
}
.Logo-design h3 {
  font-size: 1.125rem;
  display: inline-block;
}
.Message01 .message, .Message02 .message {
  width: 100%;
  margin-bottom: 1.2rem;
}
.Message01 h3, .Message02 h3 {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
}
h4 {
  font-size: 0.625rem;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  line-height: 1;
  padding: 0.4em 1.4em;
  margin-bottom: 0.85em;
}
.txt {
  line-height: 2;
  margin-bottom: 1em;
  width: 100%;
  font-size: 15px;
}
.Slogan p.txt {
  text-align: center;
}
.Slogan p.txt:last-child {
  margin-bottom: 0;
}
.Logo-design p.txt {
  text-align: justify;
  text-justify: inter-character;
  word-break: break-all;
  font-feature-settings: "palt";
  /*line-height: 1.8;*/
}
.Message01 .txt, .Message02 .txt {
  text-align: justify;
  text-justify: inter-character;
  word-break: break-all;
  font-feature-settings: "palt";
  line-height: 1.7;
}
.Logo-design p.txt:first-of-type {
  margin-bottom: 0.5em;
}
.Message01 p.txt:last-of-type, .Message02 p.txt:last-of-type {
  margin-bottom: 0;
}
.bold {
  font-weight: bold;
}
.green {
  color: var(--color-accent);
}
.js-scroll-section {
  height: 100svh;
  min-height: 768px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 2rem 2rem;
  position: relative;
}
.hero {
  text-align: center;
  align-items: center;
}
.hero .logo img {
  max-width: 286px;
}
.hero .column {
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.4;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-content: center;
}
.hero h1 .inner {
  font-family: 'Noto Sans JP';
  vertical-align: text-bottom;
  font-weight: 800;
  color: var(--color-accent);
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.hero .sidai {
  display: block;
  color: var(--color-accent);
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  font-family: "BIZ UDPGothic";
  line-height: 1;
  margin-top: 0.85em;
}
.hero .big {
  font-size: 2em;
  line-height: 1;
}
.hero .subtitle {
  font-family: "BIZ UDPGothic";
  background: var(--color-accent);
  border-radius: 8px;
  font-size: 1.025rem;
  padding: 0.5em 1.7em;
  display: block;
  text-align: center;
  font-weight: normal;
  color: #fff;
  margin-top: 0.5em;
}
.hero .flex.top-btn a {
  width: 100%;
  min-width: 210px;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5em 2em;
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  font-weight: bold;
  transition: opacity 0.3s;
  justify-content: center;
}
.hero .flex.top-btn a:last-child {
  background: #fff;
  color: var(--color-primary);
}
.hero .flex a:hover {
  opacity: 0.5;
}
.Logo-design ul {
  list-style: disc;
  display: block;
  width: 100%;
  font-size: 0.875rem;
  padding: 0.7em;
  padding-left: 2em;
  margin-bottom: 1em;
  line-height: 1.5;
  border: 1px solid #989898;
  border-radius: 8px;
}
.message-title {
  display: flex;
  font-weight: normal;
  font-size: 1rem;
  align-items: baseline;
  gap: 10px;
}
.message-title .bold {
  font-size: 1.125rem;
  margin: 0.2rem 0;
  font-weight: bold;
}
.message-title .green {
  font-weight: bold;
}
.message-photo {
  width: 100%;
  max-width: 100px;
  min-width: 80px;
}
footer {
  background: var(--color-accent);
  color: #fff;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  height: fit-content;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#sec-message2 .w-bg {
  margin-bottom: 77px;
}
small {
  font-size: 0.75rem;
  text-align: center;
}
.home-link {
  font-weight: normal;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: flex-end;
  margin-bottom: 0.5em;
  transition: opacity 0.3s;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}
.home-link .material-symbols-outlined {
  font-size: 0.875rem;
  font-weight: 300;
  vertical-align: middle;
  border: 1px solid #fff;
  border-radius: 999px;
  margin-left: 4px;
  padding-left: 1px;
}
.home-link:hover {
  opacity: 0.5;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-layer__floating-container {
    transform: none !important;
  }
}
.dot-indicator {
  position: fixed;
  top: 50%;
  right: 0.7rem;
  transform: translateY(-50%);
  z-index: 100;
}
.dot-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dot-btn {
  appearance: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.dot-btn::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.dot-btn:focus-visible::before, .dot-btn.is-active::before {
  background-color: var(--color-primary);
  transform: scale(1.5);
}
.dot-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.page-top-btn {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 100;
  width: fit-content;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, background-color 0.3s;
  cursor: pointer;
}
.page-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.page-top-btn:hover {
  background-color: var(--color-accent);
}
.page-top-btn .material-symbols-outlined {
  font-size: 1.5rem;
}
.scroll-icon {
  display: inline-block;
  width: fit-content;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
.hamburger {
  display: none;
} /* PCでは隠す */
/*230408 NEWS*/
#news-window {
  background: #3C7C5F;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  padding: 20px;
  position: absolute;
  right: 0.7rem;
  top: 82px;
  font-size: 0.875rem;
}
.news-window-header {
  justify-content: space-between;
  margin-bottom: 0.85em
}
.news-window-header > a {
  font-size: 0.75rem;
  font-weight: normal;
  border-bottom: 1px solid #fff;
  color: #fff;
  transition: all 0.25s ease;
  opacity: 0.7;
}
.news-window-header > a:hover {
  color: rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.news-window-header > a .material-symbols-outlined {
  font-size: 1rem;
  vertical-align: middle;
  transform: translateY(-1px);
  font-variation-settings:
    'FILL'0, 'wght'200, 'GRAD'0, 'opsz'20
}
.news-tag {
  padding: 0.5em 1.5em;
  border-radius: 999px;
  line-height: 1;
  pointer-events: none;
}
#news-window .news-tag {
  background: #1EDC86;
  font-size: 0.625rem;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(39, 69, 14, 0.2);
}
#news-window .latest {
  text-decoration: underline;
  transition: all 0.25s ease;
}
#news-window .latest:hover {
  opacity: 0.5;
}
#news-window .no-article {
  text-decoration: none;
  pointer-events: none;
}
/*news一覧*/
#NEWS .news-tag {
  background: #1EDC86;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
#NEWS .w-bg {
  min-height: inherit;
  align-items: flex-start;
   padding: 1.5rem;
}
#NEWS .w-bg .news-header {
  gap: 1em;
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 1em;
  color: #535353;
}
#NEWS .w-bg .txt {
  font-size: 1rem;
}
#NEWS .w-bg .txt:last-child {
  margin-bottom: 0;
}
#NEWS .btn .material-symbols-outlined.pageback {
  margin-right: 0.25em;
}
#NEWS.NEWS-list .w-bg .txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 表示したい行数を指定 */
  overflow: hidden;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .js-scroll-section {
    padding: 82px 12px 12px;
    min-height: 100svh;
    height: auto;
    overflow: visible;
  }
  .sp-wrap {
    flex-wrap: wrap;
  }
  header .flex.wrapper {
    align-items: center;
    gap: 0.8rem;
    padding: 0 12px;
  }
  header .logo img {
    width: 36px;
  }
  .page-top-btn {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 10px;
  }
  .page-top-btn.is-visible {
    opacity: 0.5;
  }
  header .header-title {
    font-size: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    gap: 2px;
  }
  .dot-indicator {
    right: 12px;
  }
  .scroll-icon {
    left: 12px;
    width: 18px;
  }
  .dot-btn::before {
    width: 8px;
    height: 8px;
  }
  header .small {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
  .hero .logo img {
    width: 205px;
  }
  .hero h1 .inner {
    font-size: clamp(1.5rem, 0.429rem + 4.46vw, 2.25rem);
  }
  .hero .sidai {
    font-size: clamp(0.875rem, 0.636rem + 1.018vw, 1.125rem);
  }
  .hero .big {
    font-size: clamp(2.5rem, 0.357rem + 8.93vw, 4.5rem);
  }
  .hero .subtitle {
    font-size: clamp(0.875rem, 0.75rem + 0.52vw, 1rem);
  }
  .flex.top-btn {
    flex-direction: row;
  }
  .hero .flex a {
    font-size: clamp(0.875rem, 0.75rem + 0.52vw, 1rem);
    min-width: 200px;
  }
  .w-bg {
    padding: 1.5rem;
    min-height: inherit;
  }
  h2 {
    font-size: clamp(1.125rem, 0.75rem + 1.56vw, 1.5rem);
  }
  .Slogan h3 {
    font-size: clamp(1rem, 0.636rem + 1.018vw, 1.125rem);
    padding: 0.45em 1em;
    text-align: center;
  }
  .Slogan h3::before, .Slogan h3::after {
    width: 12px;
    height: 12px;
  }
  .sp-768, .sp-subtitle {
    display: inline;
  }
  .txt {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .Logo-design .w-bg div.logo {
    width: 100%;
    padding: 0;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: auto;
  }
  .Logo-design .w-bg div.logo img {
    width: 70%;
    max-width: 250px;
  }
  .Logo-design h3 {
    font-size: clamp(1rem, 0.636rem + 1.018vw, 1.125rem);
    margin-bottom: 1em;
  }
  .Logo-design .w-bg div.flex.column {
    flex: auto;
    align-items: center;
  }
  .Logo-design ul {
    font-size: 0.75rem;
  }
  .Logo-design p.txt {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .Message01 .message, .Message02 .message {
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .message-title {
    font-size: 0.875rem;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .Message01 h3, .Message02 h3 {
    align-items: center;
    gap: 4px;
  }
  .message-title .green {
    display: block;
  }
  .Logo-design.js-scroll-section, .Message01.js-scroll-section, .Message02.js-scroll-section {
    height: auto;
    min-height: 100svh;
    position: relative;
  }
  .Message02 .flex.column.wrapper {
    margin-bottom: 2rem;
  }
  .Message02 footer .flex.column.wrapper {
    margin-bottom: 0;
  }
  .Message01 .txt, .Message02 .txt {
    line-height: 1.8;
  }
  #NEWS .btn .material-symbols-outlined.pageback {
    margin-right: 0;
  }
  #sec-top .flex.column.wrapper {
    padding-top: 16px;
  }
  /* --- 1. ハンバーガーボタンの見た目 --- */
  .hamburger {
    display: block;
    position: relative;
    z-index: 100;
    width: 30px;
    height: 24px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333; /* 3本線の色 */
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 11px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
  /* --- 2. メニュー画面（フェードイン・アウト用に変更） --- */
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav-wrapper ul {
    flex-direction: column;
    padding-top: 100px;
    align-items: center;
    gap: 30px;
  }
  .nav-wrapper.is-active {
    opacity: 1;
    visibility: visible;
  }
  /* ボタンが「×」になるアニメーション */
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  #news-window {
    width: calc(100%);
    right: 50%;
    transform: translateX(50%);
    top: 63px;
    border-radius: 0;
    padding: 8px 14px;
    box-shadow: none;
  }
  .news-window-header {
    margin-bottom: 0.5em;
  }
  #news-window .flex a {
    min-width: inherit;
    font-size: 12px;
  }
  #news-window .latest > br {
    display: none;
  }
  #news-window time {
    margin-right: 1em;
  }
  .news-window-header > a .material-symbols-outlined {
    font-size: clamp(0.875rem, 0.75rem + 0.52vw, 1rem);
  }
  .news-window-header > a:hover {
    border-bottom: 1px solid #fff;
    color: #fff;
    opacity: 0.7;
  }
  header nav ul li a {
    font-size: 1rem;
  }
  header nav ul li a:hover {
    opacity: 1;
  }
}
@media only screen and (max-width: 500px) {
  .flex.top-btn {
    flex-direction: column;
    gap: 12px;
  }
  /*  #sec-message2 .w-bg{
  margin-bottom: 77px;
}*/
}
@media only screen and (max-width: 425px) {
  .Slogan h3 {
    text-align: center;
  }
  .Slogan span.sp {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 424px) {
  br.sp-768 {
    display: none;
  }
  br.sp-320 {
    display: none;
  }
}