@charset "UTF-8";
:root {
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-brown-600-rgb: 94, 82, 64;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  background-color: var(--color-cream-50);
  color: var(--color-slate-900);
}

.site-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.4s ease-in-out;
}

.site-header.menu-active {
  background-color: #005798;
}

.header-container {
  width: 100%;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo a {
  display: block;
  line-height: 0;
}

.site-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.site-menu {
  display: flex;
  align-items: center;
}

.site-menu img {
  height: 50px;
  width: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.site-menu img:hover {
  opacity: 0.8;
}

.dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #005798;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  z-index: 998;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.active {
  max-height: 100vh;
  overflow-y: auto;
}

.dropdown-menu-content {
  padding: 120px 32px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-section {
  flex: 0 0 calc(25% - 30px);
  max-width: calc(25% - 30px);
  min-width: 200px;
  margin-bottom: 32px;
}

.menu-section h2 {
  color: var(--color-white);
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-section .english {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}

.menu-section .description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-bottom: 12px;
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu li {
  margin-bottom: 6px;
}

.submenu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.submenu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.submenu a::before {
  content: "ー";
  margin-right: 6px;
}

.menu-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 32px 0;
}

.menu-bottom-section {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 32px;
  justify-content: flex-end;
}

.entry-section {
  flex: 0 0 203px;
  max-width: 203px;
  min-width: 0;
}

.entry-button {
  display: block;
  position: relative;
  height: 76px;
  border-radius: 38px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.entry-button:hover {
  transform: translateY(-2px);
}

.entry-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.entry-text-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  margin-left: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-text-scroll {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

.entry-text {
  font-size: 27px;
  font-weight: bold;
  color: #005798;
  display: inline-block;
}

.sns-section {
  flex: 0 0 319px;
  max-width: 319px;
  min-width: 0;
}

.sns-content {
  position: relative;
  height: 76px;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sns-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.sns-text {
  position: relative;
  z-index: 1;
}

.sns-title {
  font-size: 11px;
  font-weight: 600;
  color: #1f2121;
  margin-bottom: 2px;
}

.sns-subtitle {
  font-size: 9px;
  color: #1f2121;
}

.sns-icons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.sns-link {
  display: block;
  transition: transform 0.2s ease;
}

.sns-link:hover {
  transform: scale(1.1);
}

.sns-link img {
  width: 34px;
  height: 34px;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

@media (min-width: 1101px) {
  .menu-section {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
  }
}
@media (min-width: 700px) and (max-width: 1100px) {
  .menu-section {
    flex: 0 0 calc(33.333% - 27px);
    max-width: calc(33.333% - 27px);
  }
}
@media (max-width: 700px) {
  .site-header {
    background: transparent;
  }
  .header-container {
    padding: 16px 24px;
  }
  .site-logo img {
    height: 48px;
  }
  .site-menu img {
    height: 40px;
  }
  .dropdown-menu-content {
    padding: 100px 24px 24px;
    gap: 30px;
  }
  .menu-section {
    max-width: calc(50% - 15px);
    min-width: 160px;
  }
  .menu-bottom-section {
    flex-direction: row;
    gap: 12px;
    padding: 0 24px 24px;
    justify-content: flex-end;
  }
  .entry-section {
    flex: 0 0 140px;
    max-width: 140px;
  }
  .sns-section {
    flex: 0 0 220px;
    max-width: 220px;
  }
  .entry-button,
  .sns-content {
    height: 52px;
    border-radius: 26px;
  }
  .entry-text-wrapper {
    margin-left: 52px;
  }
  .entry-text {
    font-size: 18px;
  }
  .sns-content {
    padding: 0 14px 0 28px;
  }
  .sns-title {
    font-size: 8px;
  }
  .sns-subtitle {
    font-size: 7px;
  }
  .sns-link img {
    width: 24px;
    height: 24px;
  }
  .sns-icons {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 12px 16px;
  }
  .site-logo img {
    height: 40px;
  }
  .site-menu img {
    height: 36px;
  }
  .dropdown-menu-content {
    padding: 90px 16px 16px;
    gap: 24px;
  }
  .menu-section {
    max-width: 100%;
    min-width: 100%;
  }
  .menu-bottom-section {
    flex-direction: row;
    padding: 0 16px 16px;
    gap: 10px;
    justify-content: center;
  }
  .entry-section {
    flex: 0 0 120px;
    max-width: 120px;
  }
  .sns-section {
    flex: 0 0 190px;
    max-width: 190px;
  }
  .entry-button,
  .sns-content {
    height: 45px;
    border-radius: 22.5px;
  }
  .entry-text-wrapper {
    margin-left: 45px;
  }
  .entry-text {
    font-size: 16px;
  }
  .sns-content {
    padding: 0 12px 0 24px;
  }
  .sns-title {
    font-size: 12px;
  }
  .sns-subtitle {
    font-size: 11px;
  }
  .sns-link img {
    width: 20px;
    height: 20px;
  }
  .sns-icons {
    gap: 6px;
  }
}
:root {
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-brown-600-rgb: 94, 82, 64;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  background-color: var(--color-cream-50);
  color: var(--color-slate-900);
}

.site-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.4s ease-in-out;
}

.site-header.menu-active {
  background-color: #005798;
}

.header-container {
  width: 100%;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo a {
  display: block;
  line-height: 0;
}

.site-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.site-menu {
  display: flex;
  align-items: center;
}

.site-menu img {
  height: 50px;
  width: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.site-menu img:hover {
  opacity: 0.8;
}

.dropdown-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #005798;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  z-index: 998;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.active {
  max-height: 100vh;
  overflow-y: auto;
}

.dropdown-menu-content {
  padding: 120px 32px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-section {
  flex: 0 0 calc(25% - 30px);
  max-width: calc(25% - 30px);
  min-width: 200px;
  margin-bottom: 32px;
}

.menu-section h2 {
  color: var(--color-white);
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-section .english {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}

.menu-section .description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-bottom: 12px;
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu li {
  margin-bottom: 6px;
}

.submenu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.submenu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.submenu a::before {
  content: "ー";
  margin-right: 6px;
}

.menu-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 32px 0;
}

.menu-bottom-section {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px 32px;
  justify-content: flex-end;
}

.entry-section {
  flex: 0 0 203px;
  max-width: 203px;
  min-width: 0;
}

.entry-button {
  display: block;
  position: relative;
  height: 76px;
  border-radius: 38px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.entry-button:hover {
  transform: translateY(-2px);
}

.entry-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.entry-text-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  margin-left: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry-text-scroll {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

.entry-text {
  font-size: 27px;
  font-weight: bold;
  color: #005798;
  display: inline-block;
}

.sns-section {
  flex: 0 0 319px;
  max-width: 319px;
  min-width: 0;
}

.sns-content {
  position: relative;
  height: 76px;
  border-radius: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sns-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.sns-text {
  position: relative;
  z-index: 1;
}

.sns-title {
  font-size: 11px;
  font-weight: 600;
  color: #1f2121;
  margin-bottom: 2px;
}

.sns-subtitle {
  font-size: 9px;
  color: #1f2121;
}

.sns-icons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.sns-link {
  display: block;
  transition: transform 0.2s ease;
}

.sns-link:hover {
  transform: scale(1.1);
}

.sns-link img {
  width: 34px;
  height: 34px;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}

@media (min-width: 1101px) {
  .menu-section {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .menu-section {
    flex: 0 0 calc(33.333% - 27px);
    max-width: calc(33.333% - 27px);
  }
}
@media (max-width: 700px) {
  .site-header {
    background-color: transparent;
    box-shadow: none;
  }
  .header-container {
    padding: 16px 24px;
  }
  .site-logo img {
    height: 48px;
  }
  .site-menu img {
    height: 40px;
  }
  .dropdown-menu-content {
    padding: 100px 24px 24px;
    gap: 30px;
  }
  .menu-section {
    max-width: calc(50% - 15px);
    min-width: 160px;
  }
  .menu-bottom-section {
    flex-direction: row;
    gap: 12px;
    padding: 0 24px 24px;
    justify-content: flex-end;
  }
  .entry-section {
    flex: 0 0 140px;
    max-width: 140px;
  }
  .sns-section {
    flex: 0 0 220px;
    max-width: 220px;
  }
  .entry-button,
  .sns-content {
    height: 52px;
    border-radius: 26px;
  }
  .entry-text-wrapper {
    margin-left: 52px;
  }
  .entry-text {
    font-size: 18px;
  }
  .sns-content {
    padding: 0 14px 0 28px;
  }
  .sns-title {
    font-size: 8px;
  }
  .sns-subtitle {
    font-size: 7px;
  }
  .sns-link img {
    width: 24px;
    height: 24px;
  }
  .sns-icons {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 12px 16px;
  }
  .site-logo img {
    height: 40px;
    filter: drop-shadow(3px -5px 6px white);
  }
  .site-menu img {
    height: 36px;
  }
  .dropdown-menu-content {
    padding: 90px 16px 16px;
    gap: 24px;
  }
  .menu-section {
    max-width: 100%;
    min-width: 100%;
  }
  .menu-bottom-section {
    flex-direction: row;
    padding: 0 16px 16px;
    gap: 10px;
    justify-content: center;
  }
  .entry-section {
    flex: 0 0 120px;
    max-width: 120px;
  }
  .sns-section {
    flex: 0 0 190px;
    max-width: 190px;
  }
  .entry-button,
  .sns-content {
    height: 45px;
    border-radius: 22.5px;
  }
  .entry-text-wrapper {
    margin-left: 45px;
  }
  .entry-text {
    font-size: 16px;
  }
  .sns-content {
    padding: 0 12px 0 24px;
  }
  .sns-title {
    font-size: 12px;
  }
  .sns-subtitle {
    font-size: 11px;
  }
  .sns-link img {
    width: 20px;
    height: 20px;
  }
  .sns-icons {
    gap: 6px;
  }
}/*# sourceMappingURL=head.css.map */