@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-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-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;
}

.head_links {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  justify-content: right;
  margin-right: 30px;
}
.head_links .left a,
.head_links .right a {
  display: block;
  width: 200px;
  padding: 12px 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 9999px;
}
.head_links .left a img,
.head_links .right a img {
  width: auto;
  height: 26px;
  margin: 0 auto;
}
.head_links .left a:hover,
.head_links .right a:hover {
  transform: scale(1.05, 1.05);
}
.head_links .left a {
  background: #005798;
  padding: 15px 20px;
}
.head_links .left a img {
  width: auto;
  height: 20px;
}

.entry-section a {
  display: flex;
  align-items: center;
  background: #ffee65;
  border-radius: 9999px;
  border: solid 2px #005798;
  width: 240px;
  height: 76px;
  justify-content: center;
  padding: 0 10px;
}
.entry-section a .left_circle {
  font-size: 40px;
  color: #005798;
  width: 60px;
  padding: 10px;
}

.slide-btn {
  width: 160px;
  height: 60px;
  border: none;
  overflow: hidden;
  position: relative;
  border-radius: 0 9999px 9999px 0;
}

.slide-inner {
  display: flex;
  height: 60px;
  overflow: hidden;
}

.slide-inner img {
  width: auto;
  height: 60px;
  max-width: none;
  padding: 0 10px;
}

.slide-inner img:nth-child(odd) {
  animation: loop1 8s -4s linear infinite;
}

.slide-inner img:nth-child(even) {
  animation: loop2 8s linear infinite;
}

@keyframes loop1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}
@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: 900px) {
  .head_links {
    display: none;
  }
}
@media (max-width: 700px) {
  .site-header {
    background: transparent;
  }
  .header-container {
    padding: 16px 24px;
  }
  .site-logo img {
    height: 72px;
  }
  .site-menu img {
    height: 60px;
  }
  .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;
  }
  .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-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: 60px;
  }
  .site-menu img {
    height: 54px;
  }
  .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;
  }
  .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-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;
}
.site-header.menu-active .head_links {
  display: none;
}

.header-container {
  width: 100%;
  padding: 20px 23px;
  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;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.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: center;
}
.menu-bottom-section .entry-section {
  width: 50%;
}
.menu-bottom-section .entry-section a {
  margin: 0 auto;
}
.menu-bottom-section .sns-block {
  width: 50%;
}
.menu-bottom-section .sns-block .sns-section {
  margin: 0 auto;
}

.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: 16px;
  font-weight: 600;
  color: #1f2121;
  margin-bottom: 2px;
}

.sns-subtitle {
  font-size: 13px;
  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: 50px;
  height: 50px;
  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: 72px;
  }
  .site-menu img {
    height: 60px;
  }
  .dropdown-menu-content {
    padding: 100px 24px 24px;
    gap: 30px;
    display: block;
  }
  .menu-section {
    max-width: 100%;
    min-width: auto;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: solid 1px white;
  }
  .menu-section .english {
    display: none;
  }
  .menu-bottom-section {
    display: block;
    background: white;
  }
  .sp_sns_section {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .menu-bottom-section {
    padding: 10px 0;
    overflow: hidden;
  }
  .sp_mynavi {
    display: block;
    width: 240px;
    padding: 12px 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 9999px;
    margin: 30px auto;
  }
  .sp_mynavi .text {
    text-align: center;
    font-size: 14px;
  }
  .menu-bottom-section .entry-section {
    width: 100%;
  }
  .menu-bottom-section .entry-section a {
    margin-bottom: 20px;
  }
  .sns-section {
    flex: 0 0 220px;
    max-width: 220px;
  }
  .menu-divider {
    display: none;
  }
  .entry-text-wrapper {
    margin-left: 52px;
  }
  .entry-text {
    font-size: 18px;
  }
  .sns-content {
    padding: 0 14px 0 28px;
  }
  .sns-subtitle {
    font-size: 7px;
  }
  .sns-link img {
    width: 60px;
    height: 60px;
  }
  .sns-icons {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .header-container {
    padding: 12px 16px;
  }
  .site-logo img {
    height: 60px;
    filter: drop-shadow(3px -5px 6px white);
  }
  .site-menu img {
    height: 54px;
  }
  .dropdown-menu-content {
    padding: 90px 16px 16px;
    gap: 24px;
  }
  .menu-section {
    max-width: 100%;
    min-width: 100%;
  }
  .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-subtitle {
    font-size: 11px;
  }
}/*# sourceMappingURL=head.css.map */