* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", "BIZ UDGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .container {
    max-width: 1200px;
  }
}

.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  color: #cacaca;
  font-size: 2rem;
  overflow: hidden;
  z-index: 1;
  padding-top: 80px;
}

@media (min-width: 768px) {
  .header {
    min-height: 100vh;
  }
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background-color: #d9d9d9;
  -webkit-transform: skewX(-40deg) skewY(0deg);
          transform: skewX(-40deg) skewY(0deg);
  pointer-events: none;
  z-index: -1;
}

.header .header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 1;
}

.header > * {
  position: relative;
  z-index: 1;
}

.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0);
  padding: 1rem;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: backdrop-filter 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  transition: backdrop-filter 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .header__nav {
    padding: 1.5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__nav.scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
}

.header__logo {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0 1rem;
  z-index: 15;
}

@media (min-width: 768px) {
  .header__logo {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin: 0 1.5rem;
  }
}

.header__logo-img {
  height: 140px;
  width: 100%;
  background-image: url("../img/title_sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-width: 450px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .header__logo-img {
    height: 120px;
    margin-top: 0;
    background-image: url("../img/title_pc.svg");
    min-width: 800px;
  }
}

.header__about {
  padding: 1.5rem 1rem;
  z-index: 15;
}

@media (min-width: 768px) {
  .header__about {
    padding: 2rem 0 2rem 1.5rem;
  }
}

.header__about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .header__about-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

.header__about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .header__about-text {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
    padding-right: 2rem;
  }
}

.header__about-bg {
  position: relative;
  background-image: url("../img/seto_01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  margin-top: 1rem;
  min-height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__about-bg .bg-slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.header__about-bg .bg-slide-layer.active {
  opacity: 1;
}

.header__about-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  z-index: 2;
}

.header__about-bg .header__about-description {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.header__about-bg .header__about-description--sp {
  display: inline;
}

@media (min-width: 768px) {
  .header__about-bg .header__about-description--sp {
    display: none;
  }
}

.header__about-bg .header__about-description--pc {
  display: none;
}

@media (min-width: 768px) {
  .header__about-bg .header__about-description--pc {
    display: inline;
  }
}

@media (min-width: 768px) {
  .header__about-bg {
    background-image: none;
    padding: 0;
    margin-top: 0;
  }
  .header__about-bg::before {
    display: none;
  }
  .header__about-bg .header__about-description {
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: -40px;
  }
}

.header__about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .header__about-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
    position: relative;
    overflow: hidden;
    height: 600px;
  }
}

.header__about-image .pc-slide-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 8px 0px 0 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header__about-image .pc-slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

.header__about-image .pc-slide-img.active {
  opacity: 1;
}

.header__about-image .pc-slide-img:first-child {
  position: relative;
}

.header__about-img {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 8px 0px 0 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .header__about-img {
    max-width: 100%;
    height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.header__about-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .header__about-title {
    font-size: 1.8rem;
    letter-spacing: 0.5em;
  }
}

.header__about-title-highlight-eigyo {
  position: relative;
  z-index: 1;
}

.header__about-title-highlight-eigyo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  min-height: 8px;
  background-color: #ff6b6b;
  bottom: 10%;
  left: 0;
  z-index: -1;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .header__about-title-highlight-eigyo::after {
    width: 85%;
    height: 10px;
    min-height: 10px;
    border-radius: 3px;
  }
}

.header__about-title-highlight-houdo {
  position: relative;
  z-index: 1;
}

.header__about-title-highlight-houdo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  min-height: 8px;
  background-color: #38b6ff;
  bottom: 10%;
  left: 0;
  z-index: -1;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .header__about-title-highlight-houdo::after {
    width: 85%;
    height: 10px;
    min-height: 10px;
    border-radius: 3px;
  }
}

.header__about-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 1.5rem 0 0.8rem 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .header__about-subtitle {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
}

.header__about-date {
  margin-bottom: 1rem;
  text-align: center;
}

.header__about-date img {
  width: 80%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header__about-date {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
  .header__about-date img {
    width: 80%;
    max-width: none;
    margin: 0 auto;
  }
}

.header__about-description {
  font-size: 1.3rem;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .header__about-description {
    font-size: 1.8rem;
    margin: 0 auto;
    letter-spacing: 0.3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
}

.scroll-indicator {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 15;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .scroll-indicator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-animation: scrollBounce 2s infinite;
            animation: scrollBounce 2s infinite;
  }
}

.scroll-indicator__icon {
  position: relative;
  width: 2px;
  height: 20px;
  margin: 0 auto 0.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.scroll-indicator__icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #5ce1e6;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.scroll-indicator__icon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #5ce1e6;
  -webkit-filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8));
          filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8));
  -webkit-transition: border-top-color 0.3s ease, -webkit-filter 0.3s ease;
  transition: border-top-color 0.3s ease, -webkit-filter 0.3s ease;
  transition: border-top-color 0.3s ease, filter 0.3s ease;
  transition: border-top-color 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
}

.scroll-indicator__text {
  color: #5ce1e6;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(255, 255, 255, 0.8), 1px -1px 0 rgba(255, 255, 255, 0.8), -1px 1px 0 rgba(255, 255, 255, 0.8), 1px 1px 0 rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-indicator:hover .scroll-indicator__icon {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.scroll-indicator:hover .scroll-indicator__icon::before {
  background-color: #21ced5;
  -webkit-box-shadow: 0 0 0 1px white;
          box-shadow: 0 0 0 1px white;
}

.scroll-indicator:hover .scroll-indicator__icon::after {
  border-top-color: #21ced5;
  -webkit-filter: drop-shadow(0 0 1px white);
          filter: drop-shadow(0 0 1px white);
}

@-webkit-keyframes scrollBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  40% {
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
  60% {
    -webkit-transform: translateX(-50%) translateY(-5px);
            transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scrollBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  40% {
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
  60% {
    -webkit-transform: translateX(-50%) translateY(-5px);
            transform: translateX(-50%) translateY(-5px);
  }
}

.nav__logo {
  display: none;
}

@media (min-width: 768px) {
  .nav__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2px;
    margin-left: 30px;
    margin-top: 8px;
  }
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__logo-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.1em;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav__list {
    gap: 1rem;
  }
}

.nav__item {
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f4d95a;
  border-radius: 5px;
  color: #ffffff;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  min-width: 80px;
  height: 40px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .nav__link {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    min-width: 100px;
    height: 45px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  }
}

.nav__link:hover {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.hero {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero::before {
    left: -10%;
    width: 120%;
    -webkit-transform: skewX(-10deg);
            transform: skewX(-10deg);
  }
}

.hero__content {
  text-align: center;
  color: #ffffff;
  padding: 1.5rem;
  max-width: 90%;
}

@media (min-width: 768px) {
  .hero__content {
    max-width: 700px;
    padding: 2rem;
  }
}

.hero__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

.hero__subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }
}

.hero__description {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero__description {
    font-size: 1.4rem;
  }
}

.main-content {
  padding: 1.5rem;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .main-content {
    padding: 2rem;
    font-size: 1.4rem;
  }
}

.section {
  margin-bottom: 2rem;
}

.section .section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #34495e;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f4d95a;
}

@media (min-width: 768px) {
  .section .section-title {
    font-size: 1.7rem;
  }
}

.section .section-title.deadline-title {
  color: #e74c3c;
}

.detail-item {
  margin-bottom: 1.5rem;
}

.detail-item .detail-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #34495e;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .detail-item .detail-title {
    font-size: 1.4rem;
  }
}

.schedule {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  border-left: 3px solid #f4d95a;
}

@media (min-width: 768px) {
  .schedule {
    padding: 1.5rem;
  }
}

.schedule p {
  margin-bottom: 0.5rem;
}

.schedule p:last-child {
  margin-bottom: 0;
}

.capacity {
  font-weight: 500;
  color: #27ae60;
}

.note {
  font-size: 1rem;
  color: #7f8c8d;
}

.note-link {
  color: #5ce1e6;
  text-decoration: underline;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.note-link:hover {
  color: #21ced5;
  text-decoration: none;
}

.note-link:visited {
  color: #30d9df;
}

.list {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.list li {
  margin-bottom: 0.8rem;
}

.download-section {
  text-align: center;
  margin: 1.5rem 0;
}

.download-section .download-link {
  display: inline-block;
  background-color: #e74c3c;
  color: #ffffff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.download-section .download-link:hover {
  background-color: #d62c1a;
}

@media (min-width: 768px) {
  .download-section .download-link {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}

.download-section .download-link i {
  margin-right: 0.5rem;
}

.email-link {
  color: #27ae60;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.privacy-note {
  margin-top: 1rem;
  font-size: 1rem;
  color: #7f8c8d;
  background-color: #ecf0f1;
  padding: 0.8rem;
  border-radius: 4px;
}

.deadline-title {
  color: #e74c3c;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .deadline-title {
    font-size: 1.7rem;
  }
}

.contact-info {
  color: #e74c3c;
  text-align: center;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.inquiry-section {
  text-align: center;
  margin-top: 1rem;
}

.inquiry-company {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .inquiry-company {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
}

.inquiry-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .inquiry-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
}

.inquiry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  background-color: #ecf0f1;
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .inquiry-item {
    font-size: 1.4rem;
    gap: 0.8rem;
    padding: 1.5rem 2rem;
  }
}

.inquiry-icon {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .inquiry-icon {
    font-size: 1.7rem;
  }
}

.inquiry-label {
  font-weight: 500;
  color: #333;
}

.inquiry-link {
  color: #34495e;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.inquiry-link:hover {
  color: #21ced5;
  text-decoration: underline;
}

.footer {
  width: 100%;
  background-color: #4a4a4a;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem;
}

.footer__nav {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer__nav {
    margin-bottom: 1.5rem;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer__nav-list {
    gap: 1rem;
  }
}

.footer__nav-item:not(:last-child)::after {
  content: "|";
  color: #ffffff;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .footer__nav-item:not(:last-child)::after {
    margin-left: 1rem;
  }
}

.footer__nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .footer__nav-link {
    font-size: 1.1rem;
    padding: 0.8rem;
  }
}

.footer__nav-link:hover {
  color: #bbb;
}

.footer__copyright {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 768px) {
  .footer__copyright {
    font-size: 1.1rem;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: #5ce1e6;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .scroll-to-top {
    width: 60px;
    height: 60px;
    bottom: 2rem;
    right: 2rem;
  }
}

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

.scroll-to-top:hover {
  background-color: #30d9df;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.scroll-to-top__arrow {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .scroll-to-top__arrow {
    font-size: 1.7rem;
  }
}

.map-container {
  margin: 1rem 10px 0 10px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
  .map-container {
    margin: 1.5rem 10px 0 10px;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/*# sourceMappingURL=style.css.map */