@charset "UTF-8";
.btn {
  width: fit-content;
  display: block;
  color: var(--color-primary);
}
.btn:visited {
  color: var(--color-primary);
}

.btn-center {
  margin-inline: auto;
}

.btn-wrap-flex {
  justify-content: center;
  gap: 20px;
}

.wrapper-v {
  padding-block: var(--padding-section);
}

.wrapper {
  width: min(100% - var(--padding-sp), var(--width-container));
  margin-inline: auto;
}

.wrapper-small {
  width: min(100% - var(--padding-sp), var(--width-container-small));
  margin-inline: auto;
}

.wrapper-bg_full {
  box-shadow: 0 0 0 100vmax #ccc;
  clip-path: inset(0 -100vmax);
}

.wrapper-bg_left {
  clip-path: inset(0 0 0 -100vmax);
}

.wrapper-bg_right {
  clip-path: inset(0 -100vmax 0 0);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  display: grid;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  display: grid;
}

@media screen and (max-width: 767.98px) {
  .program .grid-2 {
    display: block;
  }
}

.grid-center {
  place-items: center;
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

.hl-lv02 {
  font-size: 2.2rem;
  font-weight: bold;
}

.hl-lv03 {
  font-size: 2rem;
  font-weight: bold;
}
.hl-lv03 .eng {
  color: var(--gray);
  font-size: 80%;
  display: block;
}

.center {
  text-align: center;
}

.bg-orange {
  background: var(--orange);
}

.bg-skyblue {
  background: var(--skyblue);
}

.bg-kurenai {
  background: var(--kurenai);
}

.bg-gray {
  background: var(--gray);
}

.list-news {
  font-size: 1.5rem;
}
.list-news a {
  line-height: 2;
  display: flex;
}
.list-news li {
  padding: 0.75em;
}
.list-news li:not(:last-child) {
  border-bottom: 1px solid #707070;
}
.list-news .date {
  margin-right: 1em;
}

.icon-right {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.icon-right::after {
  content: ">";
  display: grid;
  place-items: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
}

.icon-black::before, .icon-black::after {
  color: var(--black);
  border-color: var(--black);
}

:root {
  --main: #008c8c;
  --accent: #f15b3c;
  --bg-light: #f4fafa;
  --text: #333;
  --muted: #666;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 16px;
  position: fixed;
  z-index: 100;
  gap: 10px;
}

.site-header img {
  height: 32px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 16px;
  position: relative;
  height: 700px;
}
@media screen and (min-width: 768px) {
  .hero {
    height: 100vh;
  }
}

.hero h1 {
  font-size: 1.4rem;
  color: var(--main);
  margin: 0 0 8px;
}

.hero .subtitle {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-img {
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero-img {
    height: 100vh;
  }
}

.hero .btn-accent {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}

.btn-accent2 {
  display: inline-block;
  background: var(--main);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Message */
.message {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-light);
}

.message p {
  margin-bottom: 16px;
  font-weight: bold;
  color: var(--main);
}

.message img {
  height: 100px;
}

/* Photos */
.photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 24px 16px;
}

.photos img {
  width: 100%;
  border-radius: 6px;
}

/* Features */
.features {
  background: var(--bg-light);
  padding: 32px 16px;
}

.features h2 {
  text-align: center;
  color: var(--main);
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: bold;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card img {
  height: 60px;
  margin-bottom: 8px;
}

.feature-list .feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-list .feature-card img {
  flex: 0 0 auto;
  width: 80px; /* 必要に応じて調整 */
  height: auto;
}

.feature-list .feature-card p {
  margin: 0;
}

/* Programs */
.programs {
  padding: 32px 16px;
}

.programs h2 {
  text-align: center;
  color: var(--main);
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: bold;
}

.program {
  background: var(--bg-light);
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 8px;
}

.program h3 {
  margin: 0 0 8px;
  color: var(--accent);
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 32px 16px;
}

.cta-block p {
  margin-bottom: 16px;
  color: var(--main);
  font-weight: bold;
}

/* Users */
.users {
  padding: 32px 16px;
  background: var(--bg-light);
}

.users h2 {
  text-align: center;
  color: var(--main);
  margin-bottom: 16px;
  font-size: 1.4em;
  font-weight: bold;
}

.users ul {
  list-style: none;
  padding: 0;
}

.users li {
  margin-bottom: 12px;
  color: var(--text);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid #eee;
}

.site-footer address {
  font-style: normal;
  color: var(--muted);
  margin: 16px 0;
}

.site-footer img {
  height: 28px;
  margin-top: 8px;
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

.pt0 {
  padding-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

#footer {
  background: var(--orange);
  color: #fff;
}

.footer-content {
  justify-content: space-between;
  align-items: center;
}
.footer-content .list-nav {
  gap: 74px;
  font-weight: bold;
  font-size: 2rem;
}
.footer-content .list-nav li {
  white-space: nowrap;
}
.footer-content .list-nav .eng {
  display: block;
}
@media screen and (max-width: 767.98px) {
  .footer-content {
    flex-direction: column;
    gap: 1em;
  }
  .footer-content .list-nav {
    gap: 1.25em;
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */