@charset "UTF-8";
/*
Theme Name: Kojima SLC
Author: HOKOSHA inc.
Author URI: https://hokosha.com
Version: 1.0
Requires at least: 4.7
Requires PHP: 5.2.4
*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@800&display=swap");
/**
* Color Variables - Ocean/Sky Theme
*/
/**
* Fonts
*/
.m-plus-rounded-1c-400 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-500 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-rounded-1c-700 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.rubik-800 {
  font-family: "Rubik", sans-serif, sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

/**
* Custom scroll bar
*/
.scroll-box::-webkit-scrollbar {
  background: rgba(135, 190, 233, 0.1);
  width: 5px;
  height: 5px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: #87bee9;
  border-radius: 10px;
}

/**
* Menu PC
*/
.group:hover > ul {
  display: block; /* ホバー時にサブメニューを表示 */
}

/**
* Hamburger Menu
*/
#menuToggle {
  cursor: pointer;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #003557;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 1px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle span:last-child {
  margin-bottom: 0;
}

.open #menuToggle span {
  opacity: 1;
  transform: rotate(45deg);
  background: #87bee9;
}

.open #menuToggle span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.open #menuToggle span:last-child {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  background-color: #ffffff;
  border-right: 3px solid rgba(135, 190, 233, 0.2);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-shadow: 2px 0 10px rgba(62, 150, 216, 0.1);
}

#menu > ul > li {
  padding: 30px;
  font-size: 22px;
  color: #003557;
  border-bottom: 1px solid rgba(135, 190, 233, 0.2);
}
#menu > ul > li .sub-menu {
  background-color: #ffffff;
  margin: 15px;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 4px 6px rgba(62, 150, 216, 0.1);
}
#menu > ul > li .sub-menu li {
  padding: 8px;
  font-size: 14px;
  border-bottom: 1px dashed rgba(135, 190, 233, 0.2);
}
#menu > ul > li .sub-menu li:last-child {
  border-bottom: none;
}

.open #menu {
  transform: none;
}

/**
* Luminous
*/
.lum-lightbox {
  z-index: 100;
}
.lum-lightbox button {
  display: none;
}
.lum-lightbox img {
  margin: 0 auto;
  border-radius: 20px;
}

/**
* Widget
*/
.widget .wp-block-heading {
  background-color: #ffffff;
  border: 2px solid rgba(135, 190, 233, 0.2);
  border-radius: 50px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: #003557;
  padding: 8px 16px;
}
.widget .wp-block-categories-list li.cat-item {
  margin-bottom: 5px;
  display: block;
  border-bottom: 1px solid rgba(135, 190, 233, 0.1);
  padding: 8px 0;
  color: #003557;
  text-decoration: none;
  transition: all 0.3s ease;
}
.widget .wp-block-categories-list li.cat-item:hover {
  padding-left: 10px;
  color: #87bee9;
}
.widget .wp-block-tag-cloud .tag-cloud-link {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(135, 190, 233, 0.2);
  padding: 6px 12px;
  border-radius: 50px;
  color: #003557;
  text-decoration: none;
  margin: 4px;
  transition: all 0.3s ease;
}
.widget .wp-block-tag-cloud .tag-cloud-link:hover {
  background-color: #87bee9;
  color: #ffffff;
  border-color: #87bee9;
}
.widget .wp-block-tag-cloud .tag-cloud-link::before {
  content: "#";
  font-weight: bold;
  margin-right: 4px;
  color: #87bee9;
}
.widget .wp-block-tag-cloud .tag-cloud-link:hover::before {
  color: #ffffff;
}
.widget .wp-block-archives-dropdown .wp-block-archives__label {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #003557;
  margin-bottom: 0.5rem;
}
.widget .wp-block-archives-dropdown select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 2px solid rgba(135, 190, 233, 0.2);
  border-radius: 12px;
  background-color: #ffffff;
  color: #003557;
  transition: all 0.3s ease;
}
.widget .wp-block-archives-dropdown select:focus {
  outline: none;
  border-color: #87bee9;
  box-shadow: 0px 0px 8px rgba(135, 190, 233, 0.3);
}
.widget .wp-block-archives-dropdown option {
  color: #003557;
  padding: 0.5rem;
}

/**
* PAGE - COMMON
*/
.wp-block-table {
  margin: 0 auto;
  max-width: 800px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(62, 150, 216, 0.1);
}
.wp-block-table tr td {
  border: none;
  border-bottom: 4px solid #ffffff;
  background-color: rgba(135, 190, 233, 0.05);
  padding: 1.2em;
  color: #003557;
}
.wp-block-table tr td:first-child {
  background-color: rgba(135, 190, 233, 0.15);
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 5em;
  color: #003557;
}
.wp-block-table tr:last-child td {
  border-bottom: none;
}

.wp-block-group figure {
  margin: 0;
  margin-bottom: 0 !important;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #f5f5f5;
}
.wp-block-group figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wp-block-group.heading {
  text-align: center;
  margin: 40px auto;
  position: relative;
}
.wp-block-group.heading h2.wp-block-heading {
  display: inline-block;
  padding-bottom: 8px;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: #003557;
  position: relative;
}
.wp-block-group.heading h2.wp-block-heading:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  height: 6px;
  border-radius: 10px;
  width: 80px;
  background: linear-gradient(90deg, #87bee9 0%, #3e96d8 100%);
}
.wp-block-group.GridBoxContainer > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .wp-block-group.GridBoxContainer > .wp-block-group__inner-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .wp-block-group.GridBoxContainer > .wp-block-group__inner-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wp-block-group.GridBoxContainer > .wp-block-group__inner-container > .wp-block-group {
  border: 2px solid rgba(135, 190, 233, 0.3);
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(62, 150, 216, 0.1);
}
.wp-block-group.GridBoxContainer > .wp-block-group__inner-container > .wp-block-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(62, 150, 216, 0.2);
  border-color: #87bee9;
}
.wp-block-group.GridBoxContainer > .wp-block-group__inner-container > .wp-block-group h3 {
  margin: 0;
  padding: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #87bee9 0%, #3e96d8 100%);
  font-weight: bold;
}
.wp-block-group.GridBoxContainer > .wp-block-group__inner-container > .wp-block-group p {
  padding: 20px;
  color: #003557;
}
.wp-block-group.Gmap > .wp-block-group__inner-container {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(62, 150, 216, 0.2);
}
.wp-block-group.Gmap {
  height: 400px;
  max-width: 900px;
  margin: 40px auto;
}

/**
* Utility Classes - Ocean Theme
*/
.bg-ocean-gradient {
  background: linear-gradient(135deg, #87bee9 0%, #3e96d8 100%);
}

.text-ocean-primary {
  color: #87bee9;
}

.text-ocean-secondary {
  color: #003557;
}

.border-ocean {
  border-color: rgba(135, 190, 233, 0.2);
}

/**
* Animations
*/
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.wave-animation {
  animation: wave 20s linear infinite;
}

/**
* WordPress Lightbox/Modal - Original aspect ratio for images
*/
.wp-lightbox-overlay figure {
  aspect-ratio: unset !important;
  position: relative !important;
  background-color: transparent !important;
}
.wp-lightbox-overlay figure img {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 90vh !important;
  object-fit: contain !important;
}

.wp-block-image.is-lightbox figure {
  aspect-ratio: unset !important;
}

/**
* Form Styles - Ocean Theme  
*/
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  border: 2px solid rgba(135, 190, 233, 0.2);
  border-radius: 12px;
  padding: 10px 15px;
  width: 100%;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #003557;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #87bee9;
  box-shadow: 0 0 8px rgba(135, 190, 233, 0.3);
}

/**
* News Container Scrollbar
*/
.news_container::-webkit-scrollbar {
  width: 6px;
}

.news_container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

.news_container::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 10px;
}
.news_container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}

/*# sourceMappingURL=style.css.map */
