@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 1rem;
}

body {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.85;
}

.tel-link {
  cursor: text;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .tel-link {
    cursor: auto;
    text-decoration: none;
    pointer-events: auto;
  }
}

a {
  color: #0068C8;
  text-decoration: none;
}

.fade-in {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 40px);
}

.fade-in-down {
  transform: translate(0, -40px);
}

.fade-in-left {
  transform: translate(-40px, 0);
}

.fade-in-right {
  transform: translate(40px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.text-shadow {
  text-shadow: 1px 1px 2px #fff, -1px 1px 2px #fff, 1px -1px 2px #fff, -1px -1px 2px #fff;
}

.btn {
  display: block;
  color: #fff;
  background-color: #0C447C;
  font-size: 20px;
  letter-spacing: 0.22em;
  line-height: 1em;
  font-weight: bold;
  text-align: center;
  width: 240px;
  height: 60px;
  padding-top: 20px;
  margin: 60px auto 0;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.4s all;
}
.btn:hover {
  opacity: 0.7;
}
.btn i {
  margin-left: 1rem;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}

.wide {
  max-width: 1140px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    max-width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    max-width: none;
  }
}

p {
  font-size: 1rem;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 0.9375rem;
  }
}

h1 {
  font-size: 2.25rem;
  line-height: 1.28;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 1.75rem;
  line-height: 1.32;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 1.25rem;
  line-height: 1.45;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.0625rem;
  }
}

h4 {
  font-size: 1.0625rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1rem;
  }
}

h5 {
  font-size: 0.9375rem;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 0.875rem;
  }
}

#lower {
  position: relative;
  margin-bottom: 4rem;
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  #lower {
    margin-top: 56px;
    margin-bottom: 3rem;
  }
}
#lower .lower {
  height: 48vh;
  min-height: 320px;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 36vh;
    min-height: 240px;
  }
}
#lower .lower .lower_bg {
  position: absolute;
  inset: 0;
  background: rgba(12, 68, 124, 0.45);
  z-index: 1;
}
#lower .lower_contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  z-index: 2;
}
#lower .lower_contents .headline {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  line-height: 1.3;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower_contents .headline {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower_contents .headline {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }
}
#lower .lower_contents p {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.25em;
  margin-top: 0.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #lower .lower_contents p {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }
}

.sec-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sec-head__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 2.25rem;
  color: #0068C8;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .sec-head__en {
    font-size: 1.75rem;
  }
}
.sec-head__ja {
  display: block;
  font-size: 0.9rem;
  color: #555;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

.lower_headline {
  color: #0068C8;
  font-size: 200%;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lower_headline {
    padding: 1vw 0;
    padding-left: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .lower_headline {
    padding: 2vw 0;
    padding-left: 2vw;
    font-size: 5vw;
    clip-path: polygon(100% 0%, 95% 50%, 100% 100%, 0 99%, 0% 50%, 0 0);
  }
}

.back-to-top {
  display: none;
  position: fixed;
  z-index: 9999;
  right: 3%;
  bottom: 5%;
  color: #fff;
  padding: 2rem;
  font-size: 2.5vw;
  border-radius: 50px;
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .back-to-top {
    display: none !important;
  }
}

@media screen and (min-width: 1441px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .topBtnSp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .topBtnSp {
    display: none !important;
  }
}
.topBtnSp {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  color: #fff;
  padding: 1rem;
  font-size: 3vw;
  width: 100% !important;
  text-decoration: none;
  background: rgb(12, 68, 124);
  text-align: center;
  z-index: 999;
}
.topBtnSp::before {
  width: 100% !important;
  height: 20vw !important;
  border-radius: 0 !important;
}
.topBtnSp i {
  font-size: 4vw;
  line-height: auto;
}
.topBtnSp p {
  font-size: 3vw;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 60px;
  height: 60px;
  background: rgb(12, 68, 124);
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3), 1px -1px 2px rgba(255, 255, 255, 0.3), -1px 1px 2px rgba(255, 255, 255, 0.3), -1px -1px 2px rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.grecaptcha-badge {
  z-index: 99999 !important;
}

[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-fade].is-visible {
  opacity: 1;
  transform: none;
}

[data-fade=left] {
  transform: translateX(-24px);
}

[data-fade=right] {
  transform: translateX(24px);
}

[data-fade=scale] {
  transform: scale(0.96);
  opacity: 0;
}

.is-visible[data-fade=left],
.is-visible[data-fade=right],
.is-visible[data-fade=scale] {
  transform: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-fade] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 99999;
}
.loading .loading_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loading .loadingText {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: #1A2B4A;
  animation: 0.6s loadingPulse infinite alternate;
}

.loading.active {
  opacity: 1;
  visibility: visible;
}

@keyframes loadingPulse {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.spinner-box .pulse-container {
  display: flex;
  gap: 8px;
  align-items: center;
}
.spinner-box .pulse-container .pulse-bubble {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0068C8;
}
.spinner-box .pulse-container .pulse-bubble-1 {
  animation: pulse 0.5s ease 0s infinite alternate;
}
.spinner-box .pulse-container .pulse-bubble-2 {
  animation: pulse 0.5s ease 0.15s infinite alternate;
}
.spinner-box .pulse-container .pulse-bubble-3 {
  animation: pulse 0.5s ease 0.3s infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.2;
    transform: scale(0.65);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26, 43, 74, 0.06);
  transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.5s;
}
header.has-mv:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
header.has-mv:not(.is-scrolled) #header_pc .header_logo img {
  display: none;
}
header.has-mv:not(.is-scrolled) #header_pc .header_menu ul li a {
  color: rgba(255, 255, 255, 0.85);
}
header.has-mv:not(.is-scrolled) #header_pc .header_menu ul li a:hover {
  color: #fff;
}
header.has-mv:not(.is-scrolled) #header_pc .header_menu ul li a.current {
  color: #fff;
}
header.has-mv:not(.is-scrolled) #header_pc .header_menu li.header_contact a {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.45);
}
header.has-mv:not(.is-scrolled) #header_pc .header_menu li.header_contact a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}
header.has-mv:not(.is-scrolled) #header_sp .header_logo img {
  filter: brightness(0) invert(1);
}
header.has-mv:not(.is-scrolled) .hamburger span {
  background: rgba(255, 255, 255, 0.9);
}
header.has-mv:not(.is-scrolled) .hamburger p {
  color: rgba(255, 255, 255, 0.75);
}

#header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 48px;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_pc {
    height: 64px;
    padding: 0 28px;
  }
}
@media screen and (max-width: 768px) {
  #header_pc {
    display: none;
  }
}
#header_pc .header_logo {
  flex-shrink: 0;
}
#header_pc .header_logo a {
  display: block;
}
#header_pc .header_logo img {
  height: 100px;
  width: auto;
  display: block;
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}
#header_pc .header_logo img:hover {
  opacity: 0.75;
}
#header_pc .header_menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
#header_pc .header_menu li a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #1A2B4A;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
#header_pc .header_menu li a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#header_pc .header_menu li a:hover::after, #header_pc .header_menu li a.current::after {
  transform: scaleX(1);
  transform-origin: left center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_pc .header_menu li a {
    padding: 8px 10px;
    font-size: 0.72rem;
  }
}
#header_pc .header_menu li.header_contact {
  margin-left: 16px;
}
#header_pc .header_menu li.header_contact a {
  padding: 10px 24px;
  border: 1px solid rgba(12, 68, 124, 0.5);
  border-radius: 2px;
  color: #0C447C;
  letter-spacing: 0.1em;
  transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, color 0.35s;
}
#header_pc .header_menu li.header_contact a::after {
  display: none;
}
#header_pc .header_menu li.header_contact a:hover {
  background: #0C447C;
  border-color: #0C447C;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_pc .header_menu li.header_contact a {
    padding: 9px 18px;
  }
}

@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp {
    display: none;
  }
}
#header_sp .header_sp {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 20px;
}
#header_sp .header_sp .header_logo img {
  height: 28px;
  width: auto;
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
#header_sp .header_sp_top {
  position: fixed;
  top: 10px;
  right: 14px;
  z-index: 10001;
}
#header_sp .header_sp_top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hamburger {
  display: block;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  background: transparent;
  border: none;
  z-index: 99999;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 22px;
  height: 1.5px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A2B4A;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s, top 0.38s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s;
}
.hamburger span:nth-child(1) {
  top: 11px;
}
.hamburger span:nth-child(2) {
  top: 19px;
}
.hamburger span:nth-child(3) {
  top: 27px;
}
.hamburger p {
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #1A2B4A;
  transition: color 0.4s, opacity 0.3s;
}
.hamburger.active span {
  background: rgba(255, 255, 255, 0.9);
}
.hamburger.active span:nth-child(1) {
  top: 19px;
  transform: translateX(-50%) rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 19px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.active p {
  opacity: 0;
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 43, 74, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 72px 32px 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.5s;
}
nav.globalMenuSp.active {
  opacity: 1;
  visibility: visible;
  padding-top: 72px;
}
nav.globalMenuSp .ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 280px;
}
nav.globalMenuSp .ul li {
  width: 100%;
  margin-bottom: 0;
}
nav.globalMenuSp .ul li a {
  display: flex;
  align-items: center;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s, padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.globalMenuSp .ul li a:hover {
  color: #fff;
  padding-left: 10px;
}
nav.globalMenuSp ul.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}
nav.globalMenuSp ul.sns li a {
  display: block;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
  border-bottom: none;
  padding: 0;
}
nav.globalMenuSp ul.sns li a:hover {
  color: #fff;
  padding-left: 0;
}
nav.globalMenuSp .new_twitter::before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}

#mv {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv {
    height: 85vh;
    min-height: 480px;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    height: 90vh;
    min-height: 500px;
  }
}
#mv .mv__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#mv .mv__slider .mv__slide {
  height: 100vh;
  background: #1A2B4A;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv__slider .mv__slide {
    height: 85vh;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv__slider .mv__slide {
    height: 90vh;
  }
}
#mv .mv__slider .mv__slide.add-animation {
  animation: kenburns 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 43, 74, 0.38) 0%, rgba(26, 43, 74, 0.18) 50%, rgba(26, 43, 74, 0.52) 100%);
  z-index: 1;
  pointer-events: none;
}
#mv .mv__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mv .mv__inner {
  text-align: center;
  padding: 0 24px;
}
#mv .mv__logo {
  width: 350px;
  max-width: 52vw;
  animation: mvLogoIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  filter: drop-shadow(0 2px 24px rgba(26, 43, 74, 0.4)) brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  #mv .mv__logo {
    width: 140px;
  }
}
#mv .mv__catch {
  font-family: fangsong;
  margin-top: 36px;
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 1.8;
  animation: mvTextIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
  text-shadow: 0 2px 24px rgba(26, 43, 74, 0.3);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv__catch {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv__catch {
    font-size: 1.35rem;
    letter-spacing: 0.14em;
  }
}
#mv .mv__sub {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.18em;
  animation: mvTextIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.95s both;
}
@media screen and (max-width: 768px) {
  #mv .mv__sub {
    font-size: 0.82rem;
  }
}
#mv .mv__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: mvTextIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}
#mv .mv__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.38s cubic-bezier(0.22, 1, 0.36, 1), color 0.38s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
#mv .mv__cta a i {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
#mv .mv__cta a:hover i {
  transform: translateX(5px);
}
@media screen and (max-width: 768px) {
  #mv .mv__cta a {
    padding: 12px 26px;
    width: 100%;
    justify-content: center;
    max-width: 260px;
  }
}
#mv .mv__cta .mv__cta-outline {
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}
#mv .mv__cta .mv__cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}
#mv .mv__cta .mv__cta-fill {
  color: #fff;
  background: #0C447C;
  border: 1px solid #0C447C;
}
#mv .mv__cta .mv__cta-fill:hover {
  background: #093769;
  border-color: #093769;
}
#mv .mv__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
#mv .mv__scroll span {
  display: block;
  width: 1px;
  height: 52px;
  margin: 0 auto;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
  animation: scrollDrop 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
#mv .slick-dots {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #mv .slick-dots {
    right: 20px;
    bottom: 28px;
  }
}
#mv .slick-dots li {
  width: 2px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
#mv .slick-dots li.slick-active {
  background: rgba(255, 255, 255, 0.25);
}
#mv .slick-dots li.slick-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  animation: dotProgress 5.5s linear forwards;
}
#mv .slick-dots li button {
  display: none;
}

@keyframes mvLogoIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes mvTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollDrop {
  0% {
    transform: scaleY(0) translateY(-100%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1) translateY(0);
    opacity: 0;
  }
}
@keyframes kenburns {
  0% {
    transform: scale(1) translateX(0) translateY(0);
  }
  100% {
    transform: scale(1.06) translateX(-1%) translateY(-1%);
  }
}
@keyframes dotProgress {
  from {
    transform: scaleY(0);
    transform-origin: top;
  }
  to {
    transform: scaleY(1);
    transform-origin: top;
  }
}
#concept {
  background: #1A2B4A;
  color: #fff;
}
#concept .concept__wrap {
  display: grid;
  grid-template-columns: 1fr 42%;
  min-height: 600px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept .concept__wrap {
    grid-template-columns: 1fr 38%;
    min-height: 460px;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept__wrap {
    grid-template-columns: 1fr;
  }
}
#concept .concept__text-area {
  display: flex;
  align-items: center;
  padding: 100px 56px 100px 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept .concept__text-area {
    padding: 80px 36px 80px 32px;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept__text-area {
    padding: 72px 20px;
  }
}
#concept .concept__text-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 52px;
  align-items: start;
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept .concept__text-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media screen and (max-width: 768px) {
  #concept .concept__text-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#concept .concept__left .concept__en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 4rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #concept .concept__left .concept__en {
    font-size: 2.8rem;
  }
}
#concept .concept__left .concept__bar {
  width: 36px;
  height: 2px;
  background: #0068C8;
  margin: 20px 0 18px;
}
#concept .concept__left .concept__ja {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  line-height: 1.7;
}
#concept .concept__right {
  padding-top: 150px;
}
#concept .concept__right p {
  font-size: 0.95rem;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.78);
}
#concept .concept__right p + p {
  margin-top: 1.4em;
}
#concept .concept__photo {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #concept .concept__photo {
    height: 280px;
  }
}
#concept .concept__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#photo-divider {
  display: none;
  height: 420px;
  background: #B5D4F4;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #photo-divider {
    height: 320px;
  }
}
@media screen and (max-width: 768px) {
  #photo-divider {
    height: 240px;
    background-attachment: scroll;
  }
}

#business {
  padding: 112px 32px;
  background: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business {
    padding: 80px 24px;
  }
}
@media screen and (max-width: 768px) {
  #business {
    padding: 72px 20px;
  }
}
#business .business__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  #business .business__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
#business .business__head .business__en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 3.8rem;
  color: rgba(0, 104, 200, 0.18);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #business .business__head .business__en {
    font-size: 2.8rem;
  }
}
#business .business__head .business__ja {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #777;
  letter-spacing: 0.14em;
}
#business .business__body .business__headline {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1A2B4A;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  #business .business__body .business__headline {
    font-size: 1.25rem;
  }
}
#business .business__body .business__lead {
  font-size: 0.9rem;
  color: #555;
  line-height: 2;
  margin-bottom: 48px;
}
#business .business__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #business .business__cards {
    grid-template-columns: 1fr;
  }
}
#business .business__card {
  border: 1px solid #E6F1FB;
  border-radius: 6px;
  padding: 36px 28px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#business .business__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 104, 200, 0.1);
}
#business .business__card .business__card-icon {
  font-size: 2rem;
  color: #0068C8;
  margin-bottom: 20px;
}
#business .business__card .business__card-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1A2B4A;
  margin-bottom: 12px;
}
#business .business__card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 24px;
}
#business .business__card .business__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #0068C8;
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
}
#business .business__card .business__card-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: #0068C8;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#business .business__card .business__card-link i {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#business .business__card .business__card-link:hover i {
  transform: translateX(4px);
}
#business .business__card .business__card-link:hover::after {
  width: 100%;
}

#promises {
  padding: 112px 32px;
  background: #E6F1FB;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #promises {
    padding: 80px 24px;
  }
}
@media screen and (max-width: 768px) {
  #promises {
    padding: 72px 20px;
  }
}
#promises .promises__head {
  text-align: center;
  margin-bottom: 64px;
}
#promises .promises__head .promises__en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 3rem;
  color: rgba(0, 104, 200, 0.22);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #promises .promises__head .promises__en {
    font-size: 2.2rem;
  }
}
#promises .promises__head .promises__ja {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #1A2B4A;
  letter-spacing: 0.06em;
}
#promises .promises__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #promises .promises__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #promises .promises__cards {
    grid-template-columns: 1fr;
  }
}
#promises .promises__card {
  background: #fff;
  border-radius: 6px;
  padding: 44px 32px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#promises .promises__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 104, 200, 0.1);
}
#promises .promises__card .promises__num {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 3.5rem;
  color: #B5D4F4;
  line-height: 1;
  margin-bottom: 20px;
}
#promises .promises__card .promises__card-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1A2B4A;
  margin-bottom: 14px;
}
#promises .promises__card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.9;
}

#recruit-banner {
  background: #0C447C;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 88px 32px;
}
#recruit-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 39, 0.7);
  z-index: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit-banner {
    padding: 64px 24px;
  }
}
@media screen and (max-width: 768px) {
  #recruit-banner {
    padding: 64px 20px;
  }
}
#recruit-banner .recruit-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  #recruit-banner .recruit-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
}
#recruit-banner .recruit-banner__left .recruit-banner__en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #recruit-banner .recruit-banner__left .recruit-banner__en {
    font-size: 3rem;
  }
}
#recruit-banner .recruit-banner__left h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #recruit-banner .recruit-banner__left h2 {
    font-size: 1.15rem;
  }
}
#recruit-banner .recruit-banner__left p {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}
#recruit-banner .recruit-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 48px;
  background: #fff;
  color: #0C447C;
  text-decoration: none;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#recruit-banner .recruit-banner__btn i {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#recruit-banner .recruit-banner__btn:hover {
  background: #E6F1FB;
}
#recruit-banner .recruit-banner__btn:hover i {
  transform: translateX(5px);
}
@media screen and (max-width: 768px) {
  #recruit-banner .recruit-banner__btn {
    padding: 18px 40px;
  }
}

#top-news {
  padding: 112px 32px;
  background: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top-news {
    padding: 80px 24px;
  }
}
@media screen and (max-width: 768px) {
  #top-news {
    padding: 72px 20px;
  }
}
#top-news .top-news__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top-news .top-news__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media screen and (max-width: 768px) {
  #top-news .top-news__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
#top-news .top-news__head .top-news__en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 3.8rem;
  color: rgba(0, 104, 200, 0.18);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #top-news .top-news__head .top-news__en {
    font-size: 2.8rem;
  }
}
#top-news .top-news__head .top-news__ja {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #1A2B4A;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
#top-news .top-news__head .top-news__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #0068C8;
  text-decoration: none;
  letter-spacing: 0.04em;
}
#top-news .top-news__head .top-news__more i {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#top-news .top-news__head .top-news__more:hover i {
  transform: translateX(4px);
}
#top-news .top-news__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #top-news .top-news__cards {
    grid-template-columns: 1fr;
  }
}
#top-news .top-news__card {
  display: block;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #E6F1FB;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#top-news .top-news__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 104, 200, 0.1);
}
#top-news .top-news__card--empty {
  pointer-events: none;
}
#top-news .top-news__card .top-news__thumb {
  height: 180px;
  background: #E6F1FB;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #top-news .top-news__card .top-news__thumb {
    height: 200px;
  }
}
#top-news .top-news__card .top-news__card-body {
  padding: 20px;
}
#top-news .top-news__card .top-news__date {
  display: block;
  font-size: 0.78rem;
  color: #777;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
#top-news .top-news__card .top-news__title {
  font-size: 0.92rem;
  color: #1A2B4A;
  line-height: 1.7;
  font-weight: 500;
}

#instagram {
  padding: 72px 32px;
  background: #E6F1FB;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #instagram {
    padding: 56px 24px;
  }
}
@media screen and (max-width: 768px) {
  #instagram {
    padding: 48px 20px;
  }
}
#instagram .instagram__banner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 64px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 32px rgba(26, 43, 74, 0.07);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#instagram .instagram__banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(26, 43, 74, 0.13);
}
#instagram .instagram__banner:hover .instagram__cta i {
  transform: translateX(5px);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #instagram .instagram__banner {
    padding: 40px 40px;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  #instagram .instagram__banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    gap: 20px;
  }
}
#instagram .instagram__icon {
  font-size: 3.2rem;
  color: #E1306C;
  flex-shrink: 0;
}
#instagram .instagram__text {
  flex: 1;
}
#instagram .instagram__handle {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1A2B4A;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
#instagram .instagram__desc {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
  line-height: 1.7;
}
#instagram .instagram__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid rgba(26, 43, 74, 0.22);
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1A2B4A;
  white-space: nowrap;
  flex-shrink: 0;
}
#instagram .instagram__cta i {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 768px) {
  #instagram .instagram__cta {
    padding: 12px 32px;
  }
}

#contact-section {
  padding: 82px 32px;
  background: #B5D4F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact-section {
    padding: 80px 24px;
  }
}
@media screen and (max-width: 768px) {
  #contact-section {
    padding: 72px 20px;
  }
}
#contact-section .contact-sec__card {
  background: #fff;
  border-radius: 10px;
  padding: 72px 96px;
  text-align: center;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 12px 56px rgba(12, 68, 124, 0.08);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact-section .contact-sec__card {
    padding: 56px 48px;
  }
}
@media screen and (max-width: 768px) {
  #contact-section .contact-sec__card {
    padding: 48px 28px;
  }
}
#contact-section .contact-sec__card .contact-sec__en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-style: italic;
  font-size: 3rem;
  color: rgba(0, 104, 200, 0.2);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #contact-section .contact-sec__card .contact-sec__en {
    font-size: 2.2rem;
  }
}
#contact-section .contact-sec__card .contact-sec__ja {
  margin-top: 6px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1A2B4A;
  margin-bottom: 20px;
}
#contact-section .contact-sec__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 2;
  margin-bottom: 40px;
}
#contact-section .contact-sec__card .contact-sec__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
#contact-section .contact-sec__card .contact-sec__tel,
#contact-section .contact-sec__card .contact-sec__form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 768px) {
  #contact-section .contact-sec__card .contact-sec__tel,
  #contact-section .contact-sec__card .contact-sec__form {
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }
}
#contact-section .contact-sec__card .contact-sec__tel {
  border: 1.5px solid #0C447C;
  color: #0C447C;
  background: transparent;
}
#contact-section .contact-sec__card .contact-sec__tel:hover {
  background: #0C447C;
  color: #fff;
}
#contact-section .contact-sec__card .contact-sec__form {
  background: #0C447C;
  color: #fff;
  border: 1.5px solid #0C447C;
}
#contact-section .contact-sec__card .contact-sec__form i {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#contact-section .contact-sec__card .contact-sec__form:hover {
  background: #0a3d72;
}
#contact-section .contact-sec__card .contact-sec__form:hover i {
  transform: translateX(5px);
}

#works .works {
  width: 90%;
  margin: auto;
}
#works .works .works_text {
  margin-bottom: 2rem;
}
#works .works .works_text p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works .works .works_text p {
    text-align: left;
  }
}
#works .works .works_contents ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul {
    flex-flow: column;
  }
}
#works .works .works_contents ul li {
  width: 30%;
  margin: 1%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#works .works .works_contents ul li .thumb {
  width: 100%;
  margin-bottom: 1vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .thumb {
    height: 50vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents ul li .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents ul li .thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents ul li .thumb img {
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .thumb img {
    height: 70vw;
  }
}
#works .works .works_contents ul li .thumb .search {
  position: absolute;
  top: 4%;
  right: 1%;
  z-index: 10;
}
#works .works .works_contents ul li .thumb .search i {
  transition: all 0.4s;
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul li .thumb .search i {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .thumb .search i {
    font-size: 6vw;
  }
}
#works .works .works_contents ul li .title h3 {
  font-weight: 600;
  margin-bottom: 0.5vw;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul li .title h3 {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .title h3 {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#works .works .works_contents ul li .text p {
  font-size: 1vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .text p {
    font-size: 3.3vw;
  }
}
#works .works .works_contents .ba li {
  width: 45%;
  padding: 1vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li {
    width: 100%;
    padding: 3vw;
    margin-bottom: 8vw;
  }
}
#works .works .works_contents .ba li .thumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li .thumb {
    height: 70vw;
  }
}
#works .works .works_contents .ba li .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0% !important;
  height: 0% !important;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .ba li .thumb:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .ba li .thumb .img-before {
  width: 40%;
  position: relative;
}
#works .works .works_contents .ba li .thumb .img-before::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .ba li .thumb .img-before:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .ba li .thumb .img-before img {
  width: 100%;
  height: 15vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li .thumb .img-before img {
    height: 50vw;
  }
}
#works .works .works_contents .ba li .thumb .img-after {
  width: 50%;
  position: relative;
}
#works .works .works_contents .ba li .thumb .img-after::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  background-color: rgba(0, 0, 0, 0);
}
#works .works .works_contents .ba li .thumb .img-after:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
#works .works .works_contents .ba li .thumb .img-after img {
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li .thumb .img-after img {
    height: 70vw;
  }
}
#works .works .works_contents .ba li .thumb p {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
}
#works .works .works_contents .ba li .thumb p i {
  color: #0068C8;
  font-size: 3vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .ba li .thumb p i {
    font-size: 6vw;
  }
}
#works .works .b_a {
  margin-top: 5rem;
}
#works .works .b_a ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #works .works .b_a ul {
    flex-flow: column;
  }
}

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#modal-container > div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
#modal-container > div > img {
  width: auto;
  height: auto;
}
@media screen and (max-width: 768px) {
  #modal-container > div > img {
    width: 300px;
    height: 180px;
  }
}
#modal-container .close {
  position: absolute;
  top: 20%;
  right: 20%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #modal-container .close {
    top: 32%;
    right: 22%;
  }
}
@media screen and (max-width: 768px) {
  #modal-container .close {
    top: 33%;
    right: 15%;
  }
}
#modal-container .close span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:first-child {
    width: 25px;
  }
}
#modal-container .close span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:last-child {
    width: 25px;
  }
}

img.popup {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#service {
  padding: 5rem 0 4rem;
  background: #fff;
}
#service #service_contents {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #service #service_contents {
    width: 90%;
  }
}
#service #service_contents .service_contents_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
#service #service_contents .service_contents_box:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service #service_contents .service_contents_box:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
#service #service_contents .service_contents_box .service_contents_img {
  width: calc(50% - 1.25rem);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service #service_contents .service_contents_box .service_contents_img {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box .service_contents_img {
    width: 100%;
  }
}
#service #service_contents .service_contents_box .service_contents_img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(12, 68, 124, 0.12);
}
#service #service_contents .service_contents_box .service_contents_text {
  width: calc(50% - 1.25rem);
  padding: 0 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service #service_contents .service_contents_box .service_contents_text {
    width: 90%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box .service_contents_text {
    width: 100%;
    padding: 0;
  }
}
#service #service_contents .service_contents_box .service_contents_text .service_contents_num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: #0068C8;
  display: block;
  margin-bottom: 0.25rem;
}
#service #service_contents .service_contents_box .service_contents_text dl {
  width: 100%;
}
#service #service_contents .service_contents_box .service_contents_text dl dt {
  color: #0C447C;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box .service_contents_text dl dt {
    font-size: 1.2rem;
  }
}
#service #service_contents .service_contents_box .service_contents_text dl dd {
  color: #555;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #service #service_contents .service_contents_box .service_contents_text dl dd {
    font-size: 0.9375rem;
  }
}

#facility {
  padding: 5rem 0;
  background: #E6F1FB;
}
#facility .facility {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #facility .facility {
    width: 90%;
  }
}
#facility .facility__lead {
  text-align: center;
  color: #555;
  line-height: 1.95;
  max-width: 720px;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 768px) {
  #facility .facility__lead {
    font-size: 0.9375rem;
  }
}
#facility .facility__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  #facility .facility__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
#facility .facility__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(12, 68, 124, 0.1);
}
#facility .facility__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#facility .facility__item:hover img {
  transform: scale(1.06);
}
#facility .facility__item figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(12, 68, 124, 0.85);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 4px;
}
#facility .facility__note {
  text-align: center;
  color: #777;
  font-size: 0.85rem;
  margin-top: 1.25rem;
}

#oneday {
  padding: 5rem 0;
  background: #fff;
}
#oneday .oneday {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #oneday .oneday {
    width: 95%;
  }
}
#oneday .oneday__caption {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 2rem;
}
#oneday .oneday__timeline {
  position: relative;
  padding-top: 0.5rem;
}
#oneday .oneday__bar {
  position: absolute;
  top: 30px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, #B5D4F4, #0068C8, #0C447C);
}
@media screen and (max-width: 768px) {
  #oneday .oneday__bar {
    left: 4%;
    right: 4%;
  }
}
#oneday .oneday__row {
  list-style: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}
#oneday .oneday__item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#oneday .oneday__icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #B5D4F4;
  color: #0068C8;
  background: #fff;
  box-shadow: 0 0 0 4px #fff;
  margin-bottom: 0.75rem;
}
#oneday .oneday__icon i {
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  #oneday .oneday__icon {
    width: 42px;
    height: 42px;
  }
  #oneday .oneday__icon i {
    font-size: 1rem;
  }
}
#oneday .oneday__time {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: #777;
  line-height: 1;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  #oneday .oneday__time {
    font-size: 0.8rem;
  }
}
#oneday .oneday__label {
  display: block;
  font-size: 0.9rem;
  color: #0C447C;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #oneday .oneday__label {
    font-size: 0.75rem;
  }
}

#price {
  padding: 5rem 0;
  background: #2B7FD8;
}
#price .price {
  width: 90%;
  max-width: 600px;
  margin: auto;
}
#price .price .sec-head__en {
  color: #fff;
}
#price .price .sec-head__ja {
  color: rgba(255, 255, 255, 0.9);
}
#price .price__table {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2rem 2.25rem;
}
@media screen and (max-width: 768px) {
  #price .price__table {
    padding: 1.5rem 1.25rem;
  }
}
#price .price__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1rem;
}
#price .price__row:last-of-type {
  border-bottom: none;
}
#price .price__value {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
}
#price .price__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
  margin-top: 0.75rem;
}

#access {
  padding: 5rem 0;
  background: #fff;
}
#access .access {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
#access .access__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  #access .access__grid {
    grid-template-columns: 1fr;
  }
}
#access .access__map {
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 68, 124, 0.1);
}
#access .access__map iframe, #access .access__map img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
}
#access .access__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #555;
  line-height: 1.95;
  font-size: 0.95rem;
}
#access .access__name {
  color: #0C447C;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
#access .access__addr {
  margin-bottom: 0.75rem;
}
#access .access__train {
  font-size: 0.9rem;
}

#service-cta .service-cta {
  background: #B5D4F4;
  padding: 3.5rem 2rem;
  text-align: center;
}
#service-cta .service-cta__title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #0C447C;
}
#service-cta .service-cta__hours {
  font-size: 0.8rem;
  color: #0068C8;
  margin-top: 0.25rem;
}
#service-cta .service-cta__btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
#service-cta .service-cta__tel, #service-cta .service-cta__form {
  display: inline-block;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#service-cta .service-cta__tel {
  border: 1.5px solid #0C447C;
  color: #0C447C;
  background: transparent;
}
#service-cta .service-cta__tel:hover {
  background: #0C447C;
  color: #fff;
}
#service-cta .service-cta__form {
  background: #0C447C;
  color: #fff;
}
#service-cta .service-cta__form:hover {
  background: #0068C8;
  transform: translateY(-2px);
}
#service-cta .service-cta__form i {
  margin-left: 0.5rem;
}

#company #philosophy {
  background: #1A2B4A;
  padding: 5rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #company #philosophy {
    padding: 3.5rem 1.5rem;
  }
}
#company #philosophy .philosophy__inner {
  max-width: 720px;
  margin: 0 auto;
}
#company #philosophy .philosophy__en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.25em;
  line-height: 1;
}
#company #philosophy .philosophy__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  border: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}
@media screen and (max-width: 768px) {
  #company #philosophy .philosophy__title {
    font-size: 1.2rem;
  }
}
#company #philosophy .philosophy__text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.95;
}
@media screen and (max-width: 768px) {
  #company #philosophy .philosophy__text p {
    font-size: 0.9375rem;
  }
}
#company .company {
  padding: 0 0 5rem;
}
@media screen and (max-width: 768px) {
  #company .company {
    padding: 0 0 3rem;
  }
}
#company .company .company_contents {
  width: 80%;
  max-width: 880px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents {
    width: 92%;
    padding: 0;
  }
}
#company .company .company_contents table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #e5e5e5;
  margin-bottom: 2rem;
}
#company .company .company_contents table tr {
  border-bottom: 1px solid #e5e5e5;
}
#company .company .company_contents table tr th, #company .company .company_contents table tr td {
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr th, #company .company .company_contents table tr td {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.9rem;
  }
}
#company .company .company_contents table tr th {
  width: 30%;
  background: #E6F1FB;
  color: #0C447C;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr th {
    width: 100%;
    margin-top: 0;
  }
}
#company .company .company_contents table tr td {
  width: 70%;
  color: #555;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr td {
    width: 100%;
    text-align: left;
    background: #fff;
  }
}
#company .company .company_contents .map {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 8px 24px rgba(12, 68, 124, 0.1);
}
#company .company .company_contents .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

#sales .sales {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales .lower_headline {
    margin-bottom: 6vw;
  }
}
#sales .sales ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #sales .sales ul {
    flex-flow: column;
  }
}
#sales .sales ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 45%;
  margin-bottom: 2vw;
  padding-bottom: 1vw;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li {
    width: 100%;
  }
}
#sales .sales ul li .sales_name {
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li .sales_name h4 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li .sales_name h4 {
    font-size: 3.3vw;
  }
}
#sales .sales ul li .sales_contents {
  width: 60%;
}
#sales .sales ul li .sales_contents p {
  margin-bottom: 0.5vw;
}
#sales .sales ul li .sales_contents .tel {
  color: #0068C8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #sales .sales ul li .sales_contents .tel {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #sales .sales ul li .sales_contents .tel {
    font-size: 3.3vw;
  }
}
#sales .sales ul li .sales_contents .tel i {
  margin-right: 0.25rem;
}

#history .history {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #history .history {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #history .history {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #history .history .lower_headline {
    margin-bottom: 6vw;
  }
}
#history .history table {
  width: 100%;
}
#history .history table tr {
  margin-bottom: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  #history .history table tr {
    width: 100%;
    margin-bottom: 6vw;
  }
}
#history .history table tr th, #history .history table tr td {
  padding: 1.5rem 0.5rem 0.5rem;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #history .history table tr th, #history .history table tr td {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #history .history table tr th, #history .history table tr td {
    font-size: 3.3vw;
  }
}
#history .history table tr th {
  width: 30%;
}
#history .history table tr td {
  width: 70%;
}

#policy {
  width: 88%;
  max-width: 800px;
  padding: 1rem 0 5rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #policy {
    width: 92%;
  }
}
#policy h2 {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0C447C;
  margin: 2rem 0 0.75rem;
  padding-left: 0.85rem;
  border-left: 4px solid #0068C8;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #policy h2 {
    font-size: 1rem;
  }
}
#policy h2:first-of-type {
  margin-top: 0;
}
#policy p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  #policy p {
    font-size: 0.9rem;
  }
}

#recruit {
  padding: 0 0 6rem;
}
#recruit .recruit .recruit_lead {
  text-align: center;
  padding: 1rem 1.5rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}
#recruit .recruit .recruit_lead__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #0C447C;
  line-height: 1.7;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_lead__title {
    font-size: 1.2rem;
  }
}
#recruit .recruit .recruit_lead__text {
  color: #555;
  line-height: 1.95;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_lead__text {
    font-size: 0.9375rem;
  }
}
#recruit .recruit .recruit_contents {
  width: 88%;
  max-width: 880px;
  margin: 0 auto 2.5rem;
  padding: 3rem 0;
  background: #E6F1FB;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents {
    width: 95%;
    padding: 2rem 1rem;
  }
}
#recruit .recruit .recruit_contents .recruit_content {
  width: 90%;
  max-width: 760px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content {
    width: 100%;
  }
}
#recruit .recruit .recruit_contents .recruit_content .sec-head {
  margin-bottom: 1.5rem;
}
#recruit .recruit .recruit_contents .recruit_content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(12, 68, 124, 0.06);
}
#recruit .recruit .recruit_contents .recruit_content table tr {
  border-bottom: 1px solid #e5e5e5;
}
#recruit .recruit .recruit_contents .recruit_content table tr:last-child {
  border-bottom: none;
}
#recruit .recruit .recruit_contents .recruit_content table tr th, #recruit .recruit .recruit_contents .recruit_content table tr td {
  color: #555;
  padding: 1.1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.85;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr th, #recruit .recruit .recruit_contents .recruit_content table tr td {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #eaeaea;
  }
}
#recruit .recruit .recruit_contents .recruit_content table tr th {
  width: 30%;
  background: #E6F1FB;
  color: #0C447C;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr th {
    width: 100%;
  }
}
#recruit .recruit .recruit_contents .recruit_content table tr td {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content table tr td {
    width: 100%;
    background: #fff;
  }
}
#recruit .recruit_btn {
  text-align: center;
  margin-top: 2rem;
}
#recruit .recruit_btn a {
  text-decoration: none;
  display: inline-block;
}
#recruit .recruit_btn a button {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background: #0C447C;
  padding: 0.9rem 3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: inherit;
  letter-spacing: 0.04em;
}
#recruit .recruit_btn a button i {
  margin-left: 0.5rem;
}
#recruit .recruit_btn a button:hover {
  background: #0068C8;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 68, 124, 0.25);
}

#recruit_form .recruit_form {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form {
    width: 95%;
  }
}
#recruit_form .recruit_form .recruit_form_text {
  margin-bottom: 2rem;
}
#recruit_form .recruit_form .recruit_form_text p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form .recruit_form_text p {
    text-align: left;
  }
}
#recruit_form .recruit_form form {
  width: 100%;
  margin-bottom: 8vw;
}
#recruit_form .recruit_form form table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-top: 1px solid #333;
}
#recruit_form .recruit_form form table tr {
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr {
    display: flex;
    flex-flow: column;
  }
}
#recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr th, #recruit_form .recruit_form form table tr td {
    font-size: 3.3vw;
  }
}
#recruit_form .recruit_form form table tr th {
  padding: 40px 0;
  width: 35%;
  text-align: end;
  padding-right: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr th {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
  }
}
#recruit_form .recruit_form form table tr th .red {
  color: #fff;
  padding: 10px;
  background-color: red;
  margin-left: 20px;
}
#recruit_form .recruit_form form table tr th .blue {
  color: #fff;
  padding: 10px;
  background-color: blue;
  margin-left: 20px;
}
#recruit_form .recruit_form form table tr td {
  padding: 40px 0;
  width: 65%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
#recruit_form .recruit_form form table tr td .mushroom input {
  width: 1vw;
  height: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td .mushroom input {
    width: 2vw;
    height: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td .mushroom input {
    width: 4vw;
    height: 4vw;
  }
}
#recruit_form .recruit_form form table tr td .number {
  margin-top: 2vw;
}
#recruit_form .recruit_form form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td input {
    width: 100%;
  }
}
#recruit_form .recruit_form form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr td textarea {
    width: 100%;
  }
}
#recruit_form .recruit_form form table tr.tel-number td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr.tel-number td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr.tel-number td input {
    width: 29% !important;
  }
}
#recruit_form .recruit_form form table tr:first-child td,
#recruit_form .recruit_form form table tr:last-child td {
  display: flex;
  width: 100%;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field,
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
  width: 35%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr:first-child td .mwform-radio-field,
  #recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr:first-child td .mwform-radio-field,
  #recruit_form .recruit_form form table tr:last-child td .mwform-radio-field {
    width: 45%;
  }
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field label,
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field label {
  display: flex;
  height: 20px;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field input,
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field input {
  width: 10%;
  height: 100%;
}
#recruit_form .recruit_form form table tr:first-child td .mwform-radio-field .mwform-radio-field-text,
#recruit_form .recruit_form form table tr:last-child td .mwform-radio-field .mwform-radio-field-text {
  display: inline-block;
  height: 100%;
}
#recruit_form .recruit_form form table tr:nth-child(5) th span {
  background-color: blue;
}
#recruit_form .recruit_form form table tr:nth-child(5) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_form .recruit_form form table tr:nth-child(5) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form table tr:nth-child(5) td input {
    width: 29% !important;
  }
}
#recruit_form .recruit_form form .agree {
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .agree {
    margin: 10px 0;
  }
}
#recruit_form .recruit_form form .submit {
  text-align: center;
}
#recruit_form .recruit_form form .submit input {
  padding: 20px 180px;
  font-size: 18px;
  border: none;
  background: #0C447C;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input {
    padding: 10px 90px;
  }
}
#recruit_form .recruit_form form .submit input:hover {
  opacity: 0.7;
}
#recruit_form .recruit_form form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#recruit_form .recruit_form form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  #recruit_form .recruit_form form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}

#news {
  padding: 0 0 4rem;
}
#news .news .news_contents {
  width: 88%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents {
    width: 92%;
  }
}
#news .news__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #news .news__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
#news .news__card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
#news .news__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(12, 68, 124, 0.14);
}
#news .news__card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
#news .news__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #E6F1FB;
}
#news .news__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.news__card:hover #news .news__thumb img {
  transform: scale(1.06);
}
#news .news__body {
  padding: 1rem 1.1rem 1.25rem;
}
#news .news__cat {
  display: inline-block;
  background: #E6F1FB;
  color: #0068C8;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 999px;
  margin-right: 0.5rem;
}
#news .news__date {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #777;
}
#news .news__title {
  font-size: 1rem;
  font-weight: 500;
  color: #0C447C;
  line-height: 1.6;
  margin-top: 0.4rem;
}
#news .news__empty {
  text-align: center;
  color: #777;
  padding: 3rem 0;
}

.navigation {
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}
.navigation .current {
  border: none;
}
.navigation a {
  border: none;
  color: #0C447C;
}

.wp-pagenavi a, .wp-pagenavi span {
  border: 1px solid #B5D4F4 !important;
  margin: 0 4px !important;
  color: #0C447C !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 50% !important;
  width: 38px;
  height: 38px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.wp-pagenavi a:hover, .wp-pagenavi span:hover {
  background: #E6F1FB !important;
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  background: #0C447C !important;
  color: #fff !important;
  border-color: #0C447C !important;
}

#news_single {
  padding: 0 0 5rem;
}
#news_single .news_single {
  width: 88%;
  max-width: 760px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #news_single .news_single {
    width: 92%;
  }
}
#news_single .single__meta {
  margin-bottom: 0.75rem;
}
#news_single .single__cat {
  display: inline-block;
  background: #E6F1FB;
  color: #0068C8;
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 999px;
}
#news_single .single__date {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #777;
  margin-left: 0.65rem;
}
#news_single .single__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0C447C;
  line-height: 1.5;
  margin: 0.75rem 0 1.75rem;
}
@media screen and (max-width: 768px) {
  #news_single .single__title {
    font-size: 1.25rem;
  }
}
#news_single .single__hero {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}
#news_single .single__hero img {
  width: 100%;
  height: auto;
  display: block;
}
#news_single .single__body {
  color: #333;
  line-height: 2;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #news_single .single__body {
    font-size: 0.9375rem;
  }
}
#news_single .single__body p {
  margin-bottom: 1.25rem;
}
#news_single .single__body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0.5rem 0 1.5rem;
}
#news_single .single__body h2, #news_single .single__body h3, #news_single .single__body h4 {
  color: #0C447C;
  margin: 2rem 0 1rem;
}
#news_single .single__body a {
  color: #0068C8;
  text-decoration: underline;
}
#news_single .single__back {
  text-align: center;
  margin-top: 2.5rem;
}
#news_single .single__back a {
  display: inline-block;
  color: #0C447C;
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid #B5D4F4;
  border-radius: 999px;
  padding: 0.65rem 2rem;
  transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#news_single .single__back a i {
  margin-right: 0.35rem;
}
#news_single .single__back a:hover {
  background: #E6F1FB;
}

#contact {
  padding: 0 0 5rem;
}
#contact .contact {
  width: 88%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contact .contact {
    width: 92%;
  }
}
#contact .contact .contact_text {
  text-align: center;
  margin-bottom: 2rem;
}
#contact .contact .contact_text p {
  color: #555;
  line-height: 1.95;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text p {
    font-size: 0.9375rem;
  }
}
#contact .contact .contact_tel {
  background: #E6F1FB;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
#contact .contact .contact_tel__label {
  display: block;
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 0.35rem;
}
#contact .contact .contact_tel__num {
  display: block;
  font-size: 1.65rem;
  font-weight: 700;
  color: #0C447C;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.3;
}
#contact .contact .contact_tel__num i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
  color: #0068C8;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_tel__num {
    font-size: 1.4rem;
  }
}
#contact .contact .contact_tel__hours {
  display: block;
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.25rem;
}
#contact .contact .form {
  width: 100%;
  margin-bottom: 2rem;
}
#contact .contact .form .wpcf7 {
  color: #333;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: auto;
}
#contact .contact .form .wpcf7 label {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0C447C;
}
#contact .contact .form .wpcf7 label .red {
  background-color: #0068C8;
  color: #fff;
  padding: 1px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-size: 0.65rem;
  font-weight: 500;
}
#contact .contact .form .wpcf7 label .blue {
  background-color: #98a4b5;
  color: #fff;
  padding: 1px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-size: 0.65rem;
  font-weight: 500;
}
#contact .contact .form .wpcf7 label .wpcf7-form-control-wrap input {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  background: #fafbfc;
  font-size: 1rem;
  font-family: inherit;
  transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
#contact .contact .form .wpcf7 label .wpcf7-form-control-wrap input:focus {
  outline: none;
  border-color: #0068C8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 104, 200, 0.12);
}
#contact .contact .form .wpcf7 label textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background: #fafbfc;
  height: 200px;
  resize: vertical;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
#contact .contact .form .wpcf7 label textarea:focus {
  outline: none;
  border-color: #0068C8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 104, 200, 0.12);
}
#contact .contact .form .wpcf7 label.policy {
  text-align: center;
}
#contact .contact .form .wpcf7 label.policy input {
  width: auto;
}
#contact .contact .form .wpcf7 .wpcf7 input[type=url],
#contact .contact .form .wpcf7 .wpcf7 input[type=email],
#contact .contact .form .wpcf7 .wpcf7 input[type=tel] {
  padding: 0.85rem 1rem;
  margin-bottom: 0;
  height: auto;
}
#contact .contact .form .wpcf7 input[type=submit] {
  color: #fff;
  background: #0C447C;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  width: auto;
  min-width: 280px;
  margin: 1.5rem auto 0;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 3rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  font-family: inherit;
}
#contact .contact .form .wpcf7 input[type=submit]:hover {
  background: #0068C8;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(12, 68, 124, 0.2);
}
#contact .contact .form .wpcf7 .wpcf7-response-output {
  font-size: 0.95rem;
  text-align: center;
  padding: 1rem;
  color: #0C447C;
  border-radius: 8px;
  border-color: #B5D4F4 !important;
  margin-top: 1.5rem !important;
}
#contact .contact .form .wpcf7 .wpcf7-form-control {
  padding: 0;
  margin-bottom: 0;
}
#contact .contact .form .thanks {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.95;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .thanks {
    text-align: left;
    font-size: 1rem;
  }
}

footer {
  position: relative;
  background-size: cover;
  background-position: center;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(28, 42, 62, 0) 30%, rgba(28, 42, 62, 0.6) 60%, rgb(28, 42, 62));
  z-index: 5;
}
footer .footer_contact {
  width: 100%;
  position: relative;
}
footer .footer_contact_eria {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: rgb(255, 255, 255);
  width: 80%;
  margin: 0 auto;
  padding: 5rem;
  border-radius: 10px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_eria {
    padding: 2rem 2rem;
  }
}
footer .footer_contact_eria .footer_contact_eria_left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_eria .footer_contact_eria_left {
    width: 100%;
    padding: 1rem 0;
  }
}
footer .footer_contact_eria .footer_contact_eria_left h2 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_eria .footer_contact_eria_left h2 {
    font-size: 2rem;
  }
}
footer .footer_contact_eria .footer_contact_eria_right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_eria .footer_contact_eria_right {
    width: 100%;
    padding: 2rem 0;
  }
}
footer .footer_contact_eria .footer_contact_eria_right .footer_contact_form {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_eria .footer_contact_eria_right .footer_contact_form {
    width: 100%;
  }
}
footer .footer_contact_eria .footer_contact_eria_right .footer_contact_form a {
  text-decoration: none;
}
footer .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button {
  width: 100%;
  padding: 1rem 0.75rem;
  border: solid 1px #fff;
  border-radius: 0.25rem;
  background: #0C447C;
  color: #fff;
  font-size: 150%;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button {
    font-size: 1.8vw;
    padding: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button {
    font-size: 3.5vw;
  }
}
footer .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button:hover {
  opacity: 0.7;
}
footer .footer_contact_eria .footer_contact_eria_right .footer_contact_form a button i {
  margin-right: 0.5rem;
}
footer .footer_contact_contents {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 2rem 5rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents {
    width: 100%;
    padding: 2rem 1rem;
  }
}
footer .footer_contact_contents .footer_logo {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents .footer_logo {
    width: 90%;
    margin-bottom: 1rem;
  }
}
footer .footer_contact_contents .footer_logo ul {
  list-style: none;
}
footer .footer_contact_contents .footer_logo ul li {
  text-align: center;
  color: #fff;
}
footer .footer_contact_contents .footer_logo ul li a {
  color: #fff;
  transition: 0.4s all;
}
footer .footer_contact_contents .footer_logo ul li a:hover {
  opacity: 0.7;
}
footer .footer_contact_contents .footer_logo ul li a img {
  width: 50%;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents .footer_logo ul li a img {
    width: 80%;
  }
}
footer .footer_contact_contents .footer_logo ul li.tel {
  font-size: 1.3rem;
}
footer .footer_contact_contents .footer_logo ul li.tel a {
  pointer-events: none;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
footer .footer_contact_contents .footer_logo ul li.tel a i {
  font-size: 80%;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents .footer_logo ul li.tel a {
    pointer-events: auto;
  }
}
footer .footer_contact_contents .footer_logo ul.footer_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents .footer_logo ul.footer_sns {
    width: 95%;
    flex-wrap: wrap;
    padding-left: 0;
  }
}
footer .footer_contact_contents .footer_logo ul.footer_sns .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}
footer .footer_contact_contents .footer_logo ul.footer_sns li {
  width: auto;
  text-align: center;
  margin: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents .footer_logo ul.footer_sns li {
    margin: 1rem 1rem;
  }
}
footer .footer_contact_contents .footer_logo ul.footer_sns li a {
  color: #fff;
  transition: all 0.4s;
  font-size: 1.5rem;
}
footer .footer_contact_contents .footer_logo ul.footer_sns li a:hover {
  opacity: 0.7;
}
footer .footer_contact_contents .footer_logo ul.footer_sns li a img {
  width: 100%;
}
footer .footer_contact_contents .footer_menu {
  width: 50%;
  margin: auto;
  padding: 0.5rem 1rem 0 0;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents .footer_menu {
    width: 100%;
    padding: 1rem 0 0 0;
    margin-bottom: 1rem;
  }
}
footer .footer_contact_contents .footer_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents .footer_menu ul {
    width: 95%;
    flex-wrap: wrap;
    padding-left: 0;
  }
}
footer .footer_contact_contents .footer_menu ul li {
  flex: 0 0 auto;
  width: auto;
  font-size: 100%;
  padding: 0.5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact_contents .footer_menu ul li {
    font-size: 80%;
  }
}
footer .footer_contact_contents .footer_menu ul li a {
  color: #fff;
  padding: 0 1vw;
}
@media screen and (max-width: 768px) {
  footer .footer_contact_contents .footer_menu ul li a {
    font-size: 3vw;
    padding: 0 4vw;
  }
}
footer .footer_contact_contents .footer_menu ul li a i {
  margin-right: 0.5rem;
}
footer .copyright {
  position: relative;
  padding: 1vw 0;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding-left: 0;
  }
}
footer .copyright p {
  color: #fff;
  font-size: 0.9rem;
}/*# sourceMappingURL=style.css.map */