@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/* Reset all elements to remove default browser styling */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Remove list styles */
ol, ul {
  list-style: none;
}

/* Remove quotes from blockquotes and q */
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* Remove table spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset box-sizing to border-box for all elements */
*, *:before, *:after {
  box-sizing: border-box;
}

/* Remove background on input/textarea in some browser defaults */
input, textarea, select, button {
  background: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font: inherit;
  color: inherit;
}

/* Remove link underline and inherit color */
a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

[data-scroll-fade] {
  opacity: 1;
  transform: none;
  will-change: opacity, transform;
}

.js-scroll-observing [data-scroll-fade] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.js-scroll-observing [data-scroll-fade].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-observing [data-scroll-fade] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
body {
  font-size: 16px;
  line-height: 24px;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-screen .color-line {
  margin: 0;
}
.loading-screen .color-line i {
  animation: bounce 0.6s infinite alternate;
}
.loading-screen .color-line i:nth-child(1) {
  animation-delay: 0.1s;
}
.loading-screen .color-line i:nth-child(2) {
  animation-delay: 0.2s;
}
.loading-screen .color-line i:nth-child(3) {
  animation-delay: 0.3s;
}
.loading-screen .color-line i:nth-child(4) {
  animation-delay: 0.4s;
}
.loading-screen .color-line i:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
html.intro-active,
body.intro-active {
  overflow: hidden;
}

html.intro-active {
  height: 100%;
}

img {
  max-width: 100%;
}

/* ------------------------------------------------------------
 Common Classes
------------------------------------------------------------ */
.en {
  font-family: Arial, Helvetica, sans-serif;
}

.sp-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.lg-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .lg-only {
    display: block;
  }
}

.xxl-only {
  display: none;
}
@media only screen and (max-width: 1600px) {
  .xxl-only {
    display: block;
  }
}

.xl-only {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .xl-only {
    display: block;
  }
}

.container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}
@media only screen and (max-width: 1600px) {
  .container {
    max-width: 1240px;
  }
}
@media only screen and (max-width: 1400px) {
  .container {
    width: 94%;
    max-width: auto;
  }
}

.align-center {
  text-align: center;
}

.btns {
  display: flex;
  gap: 1em;
}
@media only screen and (max-width: 960px) {
  .btns {
    margin: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (max-width: 767px) {
  .btns {
    gap: 0.5em;
  }
}

.btn {
  display: block;
  padding: 1em 2em 1.4em 3em;
  border-radius: 60px;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.1s ease-out;
}
.btn i {
  margin-left: 0.8em;
  position: relative;
  top: 4px;
  left: 0;
  content: "";
  display: inline-block;
  width: 36px;
  height: 22px;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  transition: left 0.1s ease-out;
}
.btn-primary {
  background: #1D246E;
}
.btn-primary:hover {
  background: #283196;
}
.btn-primary i {
  background-image: url("../img/icon-arrow-primary.svg");
}
.btn-secondary {
  background: #4600FF;
}
.btn-secondary:hover {
  background: #3800cc;
}
.btn-secondary i {
  background-image: url("../img/icon-arrow-secondary.svg");
}
.btn:hover i {
  left: 2px;
}
@media only screen and (max-width: 1400px) {
  .btn {
    font-size: 1rem;
    padding: 1em 2em 1.6em 3em;
  }
  .btn i {
    width: 36px;
    height: 22px;
  }
}
@media only screen and (max-width: 1024px) {
  .btn {
    font-size: 0.9rem;
  }
  .btn i {
    width: 32px;
    height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    padding: 0.9em 1.6em 1.5em 2.2em;
  }
  .btn i {
    width: 32px;
    height: 20px;
  }
}
@media only screen and (max-width: 460px) {
  .btn {
    font-size: 0.9rem;
    padding: 1.2em 2em 1.5em 2.8em;
  }
  .btn i {
    margin-left: 0.4em;
    top: 2px;
    width: 24px;
    height: 16px;
  }
}

.color-line {
  margin: 3em auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
}
.color-line i {
  display: block;
  width: 20px;
  height: 20px;
  background: #1D246E;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 100%;
}
.color-line i:nth-child(1) {
  background-color: #AE90CB;
}
.color-line i:nth-child(2) {
  background-color: #57B360;
}
.color-line i:nth-child(3) {
  background-color: #FB8197;
}
.color-line i:nth-child(4) {
  background-color: #0065C4;
}
.color-line i:nth-child(5) {
  background-color: #FBB202;
}
@media only screen and (max-width: 960px) {
  .color-line {
    margin: 2em auto;
    gap: 1em;
  }
  .color-line i {
    width: 16px;
    height: 16px;
  }
}
@media only screen and (max-width: 460px) {
  .color-line i {
    width: 12px;
    height: 12px;
  }
}

/* ------------------------------------------------------------
Header
------------------------------------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s, visibility 0s;
}
header .header-inner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 1.4em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
header .header-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .header-left h1 {
  margin-right: 20px;
  position: relative;
  top: 2px;
}
header .header-left h1 a {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-left h1 img {
  width: 220px;
}
header .header-left .sub-title {
  text-align: left;
}
header .header-left .sub-title p {
  line-height: 1.2;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: #1D246E;
}
header .header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header-right ul li a {
  font-weight: 500;
  padding: 0.5em 0.8em;
}
header .header-right ul li a.btn {
  margin-left: 0.75em;
  padding: 0.6em 1.2em 1em 1.5em;
  font-size: 0.9rem;
  line-height: 1;
  border-radius: 48px;
  font-weight: 700;
  color: #fff;
}
header .header-right ul li a.btn i {
  width: 24px;
  height: 16px;
}
header .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
header .hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #1D246E;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
header .hamburger-menu[aria-expanded=true] span {
  background-color: #fff;
}
header .hamburger-menu[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
header .hamburger-menu[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
header .hamburger-menu[aria-expanded=true] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}
@media only screen and (max-height: 800px) and (min-width: 1024px) {
  header .header-inner {
    padding: 0.5em 1em !important;
  }
  header .header-inner .header-right ul li a {
    padding: 0.4em 0.6em;
  }
  header .header-inner .header-right ul li a.btn {
    margin-left: 0.4em;
    padding: 0.4em 0.7em 0.6em 1.2em;
    font-size: 0.8rem;
  }
  header .header-inner .header-right ul li a.btn i {
    top: 2px;
    margin-left: 0.4em;
    width: 22px;
    height: 14px;
  }
}
@media only screen and (max-width: 1600px) {
  header .header-left .sub-title p {
    font-size: 1rem;
  }
  header .header-right ul {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1400px) {
  header .header-left h1 {
    margin-right: 16px;
  }
  header .header-left h1 img {
    width: 180px;
  }
  header .header-left .sub-title p {
    font-size: 0.8rem;
  }
  header .header-right ul li a {
    font-size: 0.85rem;
    padding: 0.4em 0.6em;
  }
  header .header-right ul li a.btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 1024px) {
  header .header-left {
    width: auto;
  }
  header .header-left h1 {
    margin-right: 14px;
  }
  header .header-left h1 img {
    width: 172px;
  }
  header .hamburger-menu {
    display: flex;
  }
  header .header-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 2em 2em;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  header .header-right.is-open {
    right: 0;
    background: #1D246E;
    color: #fff;
  }
  header .header-right.is-open ul li a {
    color: #fff;
  }
  header .header-right.is-open ul li a.btn {
    background: #e9e9ff;
    color: #1D246E;
  }
  header .header-right.is-open ul li:last-child a.btn {
    background: #0065c4;
    color: #fff;
  }
  header .header-right ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  header .header-right ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  header .header-right ul li.btn-container {
    border-bottom: none;
  }
  header .header-right ul li a {
    display: block;
    width: 100%;
    padding: 1em;
    font-size: 1rem;
  }
  header .header-right ul li a.btn {
    margin-left: 0;
    margin-top: 1em;
    padding: 1.2em 1.5em;
    text-align: center;
    width: 100%;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  header .header-inner {
    padding: 0.5em 1em;
  }
  header .header-left h1 {
    margin-right: 10px;
  }
  header .header-left h1 img {
    width: 150px;
  }
  header .header-left .sub-title p {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 460px) {
  header .header-inner {
    padding: 0.5em 0.8em;
  }
  header .header-left h1 img {
    width: 120px;
  }
  header .header-left .sub-title p {
    font-size: 0.6rem;
  }
}

/* ------------------------------------------------------------
 Opening
------------------------------------------------------------ */
body.intro-active header {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}
body.intro-active #kv {
  opacity: 1;
  pointer-events: none;
  visibility: visible;
}

body.intro-complete header {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s, visibility 0s;
}
body.intro-complete #kv {
  opacity: 1;
  visibility: visible;
}

.intro-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.6s ease, background-color 1.2s ease;
}
.intro-screen.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-screen.is-photo-fading .intro-overlay__photo {
  animation: photoFadeOut 1.2s ease-in-out forwards;
}
.intro-screen.is-overlay-only {
  background-color: transparent;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  height: 100dvh;
  z-index: 100;
}
.intro-screen.is-overlay-only .intro-overlay__photo {
  opacity: 0;
  animation: none;
  transform: scale(1);
}
.intro-screen.is-overlay-only .intro-overlay {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .intro-screen.is-overlay-only {
    min-height: auto !important;
  }
}
.intro-screen.show-overlay .intro-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.intro-screen .intro-overlay__photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center center;
  opacity: 0;
  animation: photoScale 1.2s ease-out forwards;
  transition: opacity 1.2s ease-in-out;
}
.intro-screen .intro-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  pointer-events: none;
}
.intro-screen .intro-overlay {
  margin-left: 2em;
  position: absolute;
  aspect-ratio: 1/1;
  top: 36%;
  left: 20%;
  width: min(480px, 40vw, 50vh);
  height: min(480px, 40vw, 50vh);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform-origin: bottom right;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
.intro-screen .intro-overlay .intro-overlay__shape,
.intro-screen .intro-overlay .intro-overlay__copy {
  position: absolute;
}
.intro-screen .intro-overlay .intro-overlay__shape {
  width: 100%;
  height: auto;
  fill: #1D246E;
}
.intro-screen .intro-overlay .intro-overlay__copy {
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  width: 60%;
  margin: auto;
  height: auto;
  display: block;
  pointer-events: none;
}
@media only screen and (max-height: 780px) and (min-width: 1024px) {
  .intro-screen .intro-overlay {
    top: 40%;
    width: min(360px, 42vw);
    height: min(360px, 42vw);
  }
}
@media only screen and (max-width: 1024px) {
  .intro-screen .intro-overlay {
    top: 28%;
  }
}
@media only screen and (max-width: 767px) {
  .intro-screen .intro-overlay {
    margin-left: 0;
    top: 25%;
    left: 30%;
    width: min(400px, 50vw);
    height: min(400px, 50vw);
  }
}
@keyframes photoScale {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes photoFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1);
  }
}
body.intro-active #kv .chat,
body.intro-active #kv .photo,
body.intro-active #kv .copy-text,
body.intro-active #kv .pattern {
  animation-play-state: paused;
}

/* ------------------------------------------------------------
 Key Visual
------------------------------------------------------------ */
#kv {
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  #kv {
    min-height: auto !important;
  }
}
#kv .kv-elements {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
#kv .kv-elements .kv-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#kv .kv-elements .kv-bubbles .bubble {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
body.intro-complete #kv .kv-elements .kv-bubbles .bubble {
  animation-name: popInBubble, floatBubble;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-1 {
  animation-duration: 0.6s, 3.1s;
  animation-delay: 0.1s, 0.7s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275), ease-in-out;
  animation-direction: normal, alternate;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-2 {
  animation-duration: 0.6s, 4.7s;
  animation-delay: 0.2s, 0.8s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275), ease-in-out;
  animation-direction: normal, alternate-reverse;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-3 {
  animation-duration: 0.6s, 2.3s;
  animation-delay: 0.3s, 0.9s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275), ease-in-out;
  animation-direction: normal, alternate;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-4 {
  animation-duration: 0.6s, 5.3s;
  animation-delay: 0.4s, 1s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275), ease-in-out;
  animation-direction: normal, alternate-reverse;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-5 {
  animation-duration: 0.6s, 3.7s;
  animation-delay: 0.5s, 1.1s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275), ease-in-out;
  animation-direction: normal, alternate;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-6 {
  animation-duration: 0.6s, 2.9s;
  animation-delay: 0.6s, 1.2s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275), ease-in-out;
  animation-direction: normal, alternate-reverse;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-7 {
  animation-duration: 0.6s, 4.1s;
  animation-delay: 0.7s, 1.3s;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275), ease-in-out;
  animation-direction: normal, alternate;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-1 {
  bottom: 6%;
  left: 4%;
  width: min(260px, 20vh);
  height: min(260px, 20vh);
  background: #0065C4;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  transform-origin: top right;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-2 {
  bottom: 4%;
  left: 27%;
  width: min(140px, 10vh);
  height: min(140px, 10vh);
  background: #DEEBF3;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  transform-origin: bottom left;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-3 {
  top: 50%;
  left: 45%;
  width: min(150px, 15vh);
  height: min(150px, 15vh);
  background: #FBB202;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  transform-origin: top left;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-4 {
  top: 15%;
  left: 42%;
  width: min(150px, 10vh);
  height: min(150px, 10vh);
  background: #EEEEEE;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  transform-origin: top right;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-5 {
  top: 35%;
  right: 14%;
  width: min(80px, 10vh);
  height: min(80px, 10vh);
  background: #AE90CB;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  transform-origin: bottom right;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-6 {
  top: 12%;
  right: 2%;
  width: min(200px, 20vh);
  height: min(200px, 20vh);
  background: #57B360;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  transform-origin: top right;
}
#kv .kv-elements .kv-bubbles .bubble.bubble-7 {
  bottom: 3%;
  right: 3%;
  width: min(250px, 25vh);
  height: min(250px, 25vh);
  background: #FB8197;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  transform-origin: bottom right;
}
@media only screen and (max-height: 800px) and (min-width: 1024px) {
  #kv .kv-elements .kv-bubbles .bubble.bubble-1 {
    left: 6%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-6 {
    right: 5%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-7 {
    right: 6%;
  }
}
@media only screen and (min-height: 1200px) and (max-width: 1480px) {
  #kv .kv-elements .kv-bubbles .bubble.bubble-1 {
    left: -3%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-3 {
    left: 45%;
    width: min(120px, 15vh);
    height: min(120px, 15vh);
    min-width: 100px;
    min-height: 100px;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-5 {
    top: 36%;
    right: 15%;
  }
}
@media only screen and (max-width: 1024px) {
  #kv .kv-elements .kv-bubbles .bubble.bubble-1 {
    bottom: -2%;
    left: 2%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-2 {
    bottom: 30%;
    left: -3%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-3 {
    top: 52%;
    left: 20%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-4 {
    top: 10%;
    left: 38%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-6 {
    top: 10%;
    right: 1%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-7 {
    bottom: 5%;
    right: -4%;
  }
}
@media only screen and (max-width: 960px) {
  #kv .kv-elements .kv-bubbles .bubble.bubble-1 {
    bottom: -3%;
    left: -6%;
    width: min(160px, 16vw);
    height: min(160px, 16vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-2 {
    bottom: 35%;
    left: -3%;
    width: min(120px, 13vw);
    height: min(120px, 13vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-3 {
    top: 48%;
    left: 17%;
    width: min(130px, 14vw);
    height: min(130px, 14vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-4 {
    top: 9%;
    left: 47%;
    width: min(180px, 16vw);
    height: min(180px, 16vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-6 {
    top: 16%;
    right: 6%;
    width: min(200px, 22vw);
    height: min(200px, 22vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-7 {
    bottom: 10%;
    right: -4%;
    width: min(240px, 30vw);
    height: min(240px, 30vw);
  }
}
@media only screen and (max-width: 960px) and (max-width: 767px) {
  #kv .kv-elements .kv-bubbles .bubble.bubble-1 {
    bottom: -3%;
    left: -7%;
    width: min(180px, 20vw);
    height: min(180px, 20vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-2 {
    bottom: 37%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-3 {
    top: 45%;
    left: 17%;
    width: min(160px, 18vw);
    height: min(160px, 18vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-4 {
    top: 9%;
    left: 44%;
    width: min(180px, 14vw);
    height: min(180px, 14vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-5 {
    top: 34%;
    right: 20%;
    width: min(70px, 12vw);
    height: min(70px, 12vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-7 {
    bottom: 16%;
    right: -4%;
  }
}
@media only screen and (max-width: 960px) and (max-width: 460px) {
  #kv .kv-elements .kv-bubbles .bubble.bubble-1 {
    width: min(200px, 30vw);
    height: min(200px, 30vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-3 {
    top: 43%;
    left: 14%;
    width: min(180px, 20vw);
    height: min(200px, 20vw);
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-4 {
    top: 3%;
    left: 57%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-5 {
    top: 23%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-6 {
    top: 10%;
    right: -5%;
  }
  #kv .kv-elements .kv-bubbles .bubble.bubble-7 {
    bottom: -3%;
    right: -16%;
    width: min(240px, 50vw);
    height: min(240px, 50vw);
  }
}
#kv .kv-elements .kv-photos {
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#kv .kv-elements .kv-photos .photo {
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
}
body.intro-complete #kv .kv-elements .kv-photos .photo {
  animation: popInPhoto 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#kv .kv-elements .kv-photos .photo.photo-1 {
  animation-delay: 0.2s;
}
#kv .kv-elements .kv-photos .photo.photo-2 {
  animation-delay: 0.4s;
}
#kv .kv-elements .kv-photos .photo.photo-3 {
  animation-delay: 0.6s;
}
#kv .kv-elements .kv-photos .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
#kv .kv-elements .kv-photos .photo img.active {
  opacity: 1;
  z-index: 2;
}
#kv .kv-elements .kv-photos .photo.photo-1 {
  bottom: 8%;
  right: 8%;
  width: min(480px, 48vw);
  height: min(480px, 48vw);
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  transform-origin: top left;
}
#kv .kv-elements .kv-photos .photo.photo-2 {
  bottom: 16%;
  left: 24%;
  width: min(340px, 28vw);
  height: min(180px, 16vh);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  transform-origin: bottom right;
}
#kv .kv-elements .kv-photos .photo.photo-3 {
  top: 15%;
  left: 45%;
  width: min(360px, 28vw);
  height: min(172px, 16vh);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  transform-origin: bottom right;
}
@media only screen and (min-height: 1200px) and (max-width: 1480px) {
  #kv .kv-elements .kv-photos .photo.photo-1 {
    right: 9%;
    bottom: 9%;
    width: min(400px, 36vw);
    height: min(400px, 36vw);
    min-width: 320px;
    min-height: 320px;
    max-width: 440px;
    max-height: 440px;
  }
  #kv .kv-elements .kv-photos .photo.photo-2 {
    bottom: 18%;
    left: 22%;
    width: min(320px, 32vw);
    height: min(140px, 16vw);
    min-width: 220px;
    min-height: 100px;
    max-width: 320px;
    max-height: 140px;
  }
  #kv .kv-elements .kv-photos .photo.photo-3 {
    width: min(300px, 28vw);
    height: min(140px, 12vw);
    min-width: 200px;
    min-height: 100px;
    max-width: 300px;
    max-height: 140px;
  }
}
@media only screen and (max-width: 1400px) {
  #kv .kv-elements .kv-photos .photo.photo-1 {
    right: 9%;
    bottom: 9%;
    width: min(400px, 33vw);
    height: min(400px, 33vw);
  }
  #kv .kv-elements .kv-photos .photo.photo-2 {
    left: 20%;
    width: min(320px, 28vw);
    height: min(140px, 14vw);
  }
  #kv .kv-elements .kv-photos .photo.photo-3 {
    left: auto;
    right: 25%;
    width: min(300px, 26vw);
    height: min(140px, 10vw);
  }
}
@media only screen and (max-width: 1024px) {
  #kv .kv-elements .kv-photos .photo.photo-1 {
    top: 45%;
    right: 3%;
    left: auto;
    width: min(400px, 48vw);
    height: min(400px, 48vw);
  }
  #kv .kv-elements .kv-photos .photo.photo-2 {
    bottom: 15%;
    left: 15%;
    width: min(300px, 28vw);
    height: min(140px, 12vw);
  }
  #kv .kv-elements .kv-photos .photo.photo-3 {
    top: 20%;
    left: auto;
    right: 20%;
    width: min(280px, 26vw);
    height: min(140px, 12vw);
  }
}
@media only screen and (max-width: 767px) {
  #kv .kv-elements .kv-photos .photo.photo-1 {
    top: 45%;
  }
  #kv .kv-elements .kv-photos .photo.photo-2 {
    bottom: 20%;
    left: 5%;
    width: min(260px, 42vw);
    height: min(110px, 22vw);
  }
  #kv .kv-elements .kv-photos .photo.photo-3 {
    top: auto;
    bottom: 4%;
    left: 35%;
    width: min(220px, 38vw);
    height: min(90px, 20vw);
  }
}
@media only screen and (max-width: 460px) {
  #kv .kv-elements .kv-photos .photo.photo-1 {
    top: 43%;
  }
  #kv .kv-elements .kv-photos .photo.photo-2 {
    width: min(240px, 50vw);
    height: min(110px, 22vw);
  }
  #kv .kv-elements .kv-photos .photo.photo-3 {
    left: auto;
    right: 10%;
    width: min(200px, 40vw);
    height: min(80px, 18vw);
  }
}

@keyframes popInBubble {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes popInPhoto {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatBubble {
  0% {
    transform: translateY(0) scale(1);
  }
  33% {
    transform: translateY(-5px) scale(1);
  }
  66% {
    transform: translateY(5px) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* ------------------------------------------------------------
 Lead
------------------------------------------------------------ */
#lead {
  position: relative;
  z-index: 1;
  margin: 14em auto 8em;
}
#lead .lead__inner {
  padding: 0 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8em;
}
#lead .lead__inner .lead__image {
  width: 42%;
}
#lead .lead__inner .lead__content {
  width: 58%;
}
#lead .lead__inner .lead__content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1em;
}
#lead .lead__inner .lead__content p {
  font-size: 1.2rem;
  line-height: 2.8;
  margin-bottom: 3em;
}
@media only screen and (max-width: 1600px) {
  #lead {
    margin: 12em auto 8em;
  }
  #lead .lead__inner .lead__content p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1400px) {
  #lead {
    margin: 10em auto 6em;
  }
  #lead .lead__inner {
    gap: 6em;
  }
  #lead .lead__inner .lead__content h2 {
    font-size: 2.4rem;
    margin-bottom: 0.8em;
  }
  #lead .lead__inner .lead__content p {
    font-size: 1.1rem;
    line-height: 2.4;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 1024px) {
  #lead {
    margin: 8em auto 4em;
  }
  #lead .lead__inner {
    gap: 4em;
  }
  #lead .lead__inner .lead__content h2 {
    font-size: 2rem;
  }
  #lead .lead__inner .lead__content p {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 960px) {
  #lead .lead__inner {
    display: block;
    padding: 0 5%;
  }
  #lead .lead__inner .lead__image {
    width: 100%;
    margin-bottom: 2em;
  }
  #lead .lead__inner .lead__content {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #lead {
    margin: 7.5em auto 0;
  }
  #lead .lead__inner {
    padding: 0 10px;
  }
  #lead .lead__inner .lead__content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8em;
    letter-spacing: 0;
  }
  #lead .lead__inner .lead__content p {
    letter-spacing: 0;
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 2em;
  }
}
@media only screen and (max-width: 460px) {
  #lead {
    margin: 4em auto 0;
  }
}

/* ------------------------------------------------------------
 Features Navigation
------------------------------------------------------------ */
#features-navigation {
  margin: 5em auto 10em;
  padding-top: 4em;
  position: relative;
  z-index: 1;
}
#features-navigation h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3em;
  letter-spacing: 0.1em;
}
#features-navigation h3 span {
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: #1D246E;
  color: #fff;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 100%;
  margin-right: 0.4em;
  margin-left: 0.2em;
}
#features-navigation nav {
  position: relative;
  padding: 2.5em;
}
#features-navigation nav .features-navigation__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.5em;
  justify-content: space-between;
}
#features-navigation nav .features-navigation__list:not(.slick-initialized) > .features-navigation__item {
  width: calc(20% - 2.5em);
}
#features-navigation nav .features-navigation__list.slick-initialized {
  display: block;
  gap: 0;
}
#features-navigation nav .features-navigation__list.slick-initialized .slick-list {
  overflow: visible;
  margin: 0 -1.25em;
}
#features-navigation nav .features-navigation__list.slick-initialized .slick-track {
  display: flex;
}
#features-navigation nav .features-navigation__list.slick-initialized .slick-slide {
  padding: 0 1.25em;
  height: auto;
}
#features-navigation nav .features-navigation__item a {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: block;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 360px;
  transition: background-size 0.2s ease-out;
}
#features-navigation nav .features-navigation__item a:hover {
  background-size: 104%;
}
#features-navigation nav .features-navigation__item a:hover .arrow {
  background-position: calc(50% + 2px) center;
}
#features-navigation nav .features-navigation__item a span {
  z-index: 2;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
#features-navigation nav .features-navigation__item a span.num {
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 100%;
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
}
#features-navigation nav .features-navigation__item a span.arrow {
  bottom: 0px;
  right: 0px;
  width: 36px;
  height: 36px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 10px;
  background-image: url("../img/icon-arrow-white.svg");
  background-size: 14px auto;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-position 0.2s ease-out;
}
#features-navigation nav .features-navigation__item a .nav-title {
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6em 3em 1em 1em;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 1));
  color: #fff;
  line-height: 1.2;
}
#features-navigation nav .features-navigation__item a .nav-title h4 {
  font-size: 1rem;
  font-weight: 600;
}
#features-navigation nav .features-navigation__item a .nav-title p {
  margin-top: 0.5em;
  font-size: 0.7rem;
}
#features-navigation nav .features-navigation__item--01 a {
  background-image: url("../img/feature-nav_1.png");
}
#features-navigation nav .features-navigation__item--01 .num,
#features-navigation nav .features-navigation__item--01 .arrow {
  background-color: #AE90CB;
}
#features-navigation nav .features-navigation__item--02 a {
  background-image: url("../img/feature-nav_2.png");
}
#features-navigation nav .features-navigation__item--02 .num,
#features-navigation nav .features-navigation__item--02 .arrow {
  background-color: #57B360;
}
#features-navigation nav .features-navigation__item--03 a {
  background-image: url("../img/feature-nav_3.png");
}
#features-navigation nav .features-navigation__item--03 .num,
#features-navigation nav .features-navigation__item--03 .arrow {
  background-color: #FB8197;
}
#features-navigation nav .features-navigation__item--04 a {
  background-image: url("../img/feature-nav_4.png");
}
#features-navigation nav .features-navigation__item--04 .num,
#features-navigation nav .features-navigation__item--04 .arrow {
  background-color: #0065C4;
}
#features-navigation nav .features-navigation__item--05 a {
  background-image: url("../img/feature-nav_5.png");
}
#features-navigation nav .features-navigation__item--05 .num,
#features-navigation nav .features-navigation__item--05 .arrow {
  background-color: #FBB202;
}
@media only screen and (max-width: 1600px) {
  #features-navigation {
    margin-bottom: 6em;
  }
  #features-navigation .container {
    width: 100%;
    max-width: none;
  }
  #features-navigation nav::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(40px, 8vw, 150px);
    pointer-events: none;
    z-index: 2;
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }
}
@media only screen and (max-width: 1400px) {
  #features-navigation h3 {
    margin-bottom: 1.6em;
    font-size: 2rem;
  }
  #features-navigation h3 span {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
  #features-navigation nav .features-navigation__item a {
    height: 300px;
  }
}
@media only screen and (max-width: 1024px) {
  #features-navigation {
    padding-top: 3em;
    margin: auto;
  }
  #features-navigation h3 {
    margin-bottom: 1.2em;
    font-size: 1.8rem;
  }
  #features-navigation h3 span {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 960px) {
  #features-navigation {
    padding-top: 2em;
    margin: 3em auto;
  }
  #features-navigation h3 {
    margin-bottom: 1em;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
  #features-navigation h3 span {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  #features-navigation {
    padding-top: 1em;
    margin: 1em auto;
  }
  #features-navigation .container {
    width: 100%;
    overflow-x: hidden;
  }
  #features-navigation h3 {
    margin-bottom: 0.8em;
    font-size: 1.4rem;
  }
  #features-navigation h3 span {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------------------
 Features
------------------------------------------------------------ */
#features {
  position: relative;
  z-index: 1;
}
#features .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
#features nav {
  position: sticky;
  top: 80px;
  right: 20px;
  width: 40px;
  height: 100%;
  background: #fff;
  z-index: 100;
  padding: 1.5em 0;
}
#features nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
}
#features nav ul li a {
  letter-spacing: -1px;
  font-weight: 700;
  color: #ccc;
  text-decoration: none;
  font-size: 1.1em;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#features nav ul li a:hover {
  color: #aaa;
}
#features nav ul li a.active {
  font-size: 1.5em;
  color: #fff;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 100%;
}
#features nav ul li:nth-child(1) a.active {
  background: #AE90CB;
}
#features nav ul li:nth-child(2) a.active {
  background: #57B360;
}
#features nav ul li:nth-child(3) a.active {
  background: #FB8197;
}
#features nav ul li:nth-child(4) a.active {
  background: #0065C4;
}
#features nav ul li:nth-child(5) a.active {
  background: #FBB202;
}
#features .cards {
  padding: 2em;
  width: calc(100% - 6em);
  display: flex;
  flex-direction: column;
  gap: 4em;
}
#features .cards .card {
  border-radius: 24px;
  padding: 0;
  position: relative;
  background: transparent;
}
#features .cards .card .card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
#features .cards .card .card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 1.5em 1.2em;
  line-height: 1;
}
#features .cards .card .card-header .card-header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
#features .cards .card .card-header .card-header-left .number {
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  border-right: 1px solid #fff;
  padding-right: 1em;
}
#features .cards .card .card-header .card-header-left p {
  font-size: 1em;
  font-weight: 700;
}
#features .cards .card .card-header .card-header-right {
  text-align: right;
}
#features .cards .card .card-header .card-header-right p {
  font-size: 0.8rem;
  font-weight: 700;
}
#features .cards .card .card-content {
  text-align: left;
  margin: 0 2.8em 2.8em;
  background: #fff;
  padding: 4em 5em 4em;
  border-radius: 16px;
}
#features .cards .card .card-content .card-content__body > h3:first-child {
  margin-bottom: 3.5rem;
}
#features .cards .card .card-content .card-content__body h3 {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1em;
  line-height: 1;
  margin-bottom: 0.4em;
}
#features .cards .card .card-content .card-content__body h3 span {
  color: #fff;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 100%;
  font-weight: 700;
  font-size: 1.5em;
}
#features .cards .card .card-content .card-content__body h3 span i {
  position: relative;
  top: 2px;
  font-size: 2rem;
}
#features .cards .card .card-content .card-content__body h4 {
  margin: 2.4em 0 1em;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
#features .cards .card .card-content .card-content__body p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
#features .cards .card .card-content .card-content__body .box {
  border: 1px solid #cccccc;
  padding: 2em 2.4em 1em;
  border-radius: 4px;
}
#features .cards .card .card-content .card-content__body .box h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.8em;
}
#features .cards .card .card-content .card-content__body .box h5 span {
  letter-spacing: 0;
  display: block;
  font-size: 0.8rem;
  line-height: 1;
  margin-bottom: 0.5em;
}
#features .cards .card .card-content .card-content__body .box p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#features .cards .card .card-content .card-content__body .flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
}
#features .cards .card .card-content .card-content__body img {
  border-radius: 8px;
}
#features .cards .card.card-1 {
  background: #AE90CB;
}
#features .cards .card.card-1 .card-content h3 span {
  background: #AE90CB;
}
#features .cards .card.card-1 .card-content .flex .img {
  width: 46%;
}
#features .cards .card.card-1 .card-content .flex .txt {
  width: 50%;
}
#features .cards .card.card-1 .card-content .flex.skill-up li:first-child {
  width: 54%;
}
#features .cards .card.card-1 .card-content .flex.skill-up li:last-child {
  width: 44%;
}
#features .cards .card.card-1 .card-content .box h5 span {
  color: #AE90CB;
}
#features .cards .card.card-2 {
  background: #57B360;
}
#features .cards .card.card-2 .card-content .card-content__body h3 span {
  background: #57B360;
}
#features .cards .card.card-2 .card-content .card-content__body .career-paths {
  margin: 2em auto;
  gap: 1.5rem;
  flex-wrap: wrap;
}
#features .cards .card.card-2 .card-content .card-content__body .career-paths .box {
  width: calc(50% - 0.75rem);
}
#features .cards .card.card-2 .card-content .card-content__body .career-paths h5 {
  text-align: center;
}
#features .cards .card.card-2 .card-content .card-content__body .career-paths h5 span {
  margin-top: 0.7em;
  color: #57B360;
}
#features .cards .card.card-2 .card-content .card-content__body .workstyle {
  gap: 1.5rem;
  flex-wrap: wrap;
}
#features .cards .card.card-2 .card-content .card-content__body .workstyle .box {
  width: calc(32.5% - 0.75rem);
}
#features .cards .card.card-2 .card-content .card-content__body .workstyle .box h5 {
  text-align: center;
}
#features .cards .card.card-2 .card-content .card-content__body .workstyle .box h5 span {
  color: #57B360;
}
#features .cards .card.card-2 .card-content .card-content__body .workstyle .box .icon {
  text-align: center;
  margin: 2em auto 1.5em;
}
#features .cards .card.card-2 .card-content .card-content__body .workstyle .box .icon img {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
  display: block;
  margin-bottom: 1em;
}
#features .cards .card.card-2 .card-content .card-content__body .workstyle .box p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#features .cards .card.card-2 .card-content .card-content__body .locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 1rem;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li {
  width: calc(25% - 1rem);
  margin-bottom: 1rem;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li:last-child {
  margin-bottom: 0;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-name h6 {
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.8em;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-name h6 span {
  font-size: 0.8rem;
  font-weight: 400;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-img {
  overflow: hidden;
  border-radius: 6px;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-img img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-address p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.2em 0;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-btn {
  margin-top: auto;
  padding-top: 0.5rem;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-btn .btn-detail {
  display: inline-block;
  padding: 0.5em 1.5em;
  background: #57B360;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.3s;
}
#features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-btn .btn-detail:hover {
  opacity: 0.8;
}
#features .cards .card.card-2 .card-content .card-content__body .locations-close {
  display: none;
}
#features .cards .card.card-3 {
  background: #FB8197;
}
#features .cards .card.card-3 .card-content h3 span {
  background: #FB8197;
}
#features .cards .card.card-3 .card-content h4 {
  text-align: center;
  line-height: 1;
  margin-bottom: 10px;
}
#features .cards .card.card-3 .card-content h4 span {
  font-weight: 500;
  font-size: 0.8rem;
}
#features .cards .card.card-3 .card-content .chart-block {
  margin-top: 2rem;
}
#features .cards .card.card-3 .card-content .chart-block .chart {
  position: relative;
  box-sizing: border-box;
  width: 80%;
  max-width: 800px;
  margin: auto;
  gap: 4em;
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#features .cards .card.card-3 .card-content .chart-block .chart img {
  display: block;
  height: auto;
  border-radius: 0;
}
#features .cards .card.card-4 {
  background: #0065C4;
}
#features .cards .card.card-4 .card-content h3 span {
  background: #0065C4;
}
#features .cards .card.card-4 .card-content .flex {
  margin: 3em auto 0;
  gap: 3em;
}
#features .cards .card.card-4 .card-content .flex > div p {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}
#features .cards .card.card-5 {
  background: #FBB202;
}
#features .cards .card.card-5 .card-content h3 span {
  background: #FBB202;
}
#features .cards .card.card-5 .card-content .flex {
  margin: 3em auto 0;
  gap: 3em;
}
@media only screen and (max-width: 1600px) {
  #features nav {
    width: 30px;
    padding: 1em 0;
  }
  #features nav ul li a {
    width: 50px;
    height: 50px;
    font-size: 1em;
    gap: 1em;
  }
  #features nav ul li a.active {
    font-size: 1.2em;
  }
  #features .cards {
    padding: 1em 2em 1em 0;
  }
  #features .cards .card .card-content {
    padding: 3em 4em 3em;
  }
  #features .cards .card .card-content .box {
    padding: 1.5em 2em 1em;
  }
  #features .cards .card .card-content .box h5 span {
    font-size: 0.8rem;
  }
  #features .cards .card .card-content .box p {
    font-size: 0.85rem;
  }
  #features .cards .card.card-2 .card-content .card-content__body .workstyle .box p {
    font-size: 0.85rem;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations {
    gap: 1rem;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li {
    width: calc(33% - 1rem);
    margin-bottom: 1rem;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper {
    gap: 0.4rem;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-name h6 {
    font-size: 0.9rem;
    line-height: 1;
    margin-bottom: 0.8em;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-name h6 span {
    font-size: 0.7rem;
    font-weight: 400;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-address p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0.2em 0;
  }
}
@media only screen and (max-width: 1200px) {
  #features .cards .card.card-2 .card-content .card-content__body .workstyle {
    flex-direction: column;
  }
  #features .cards .card.card-2 .card-content .card-content__body .workstyle .box {
    width: 100%;
  }
  #features .cards .card.card-2 .card-content .card-content__body .workstyle .box p {
    font-size: 0.85rem;
  }
  #features .cards .card.card-3 .card-content .chart-block .chart {
    gap: 3em;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  #features .cards .card .card-content .card-content__body h3 {
    margin-bottom: 1em;
    font-size: 1.6rem;
  }
  #features .cards .card .card-content .card-content__body h3 span {
    width: 56px;
    height: 56px;
  }
  #features .cards .card .card-content .card-content__body h3 span i {
    font-size: 1.4rem;
  }
  #features .cards .card .card-content .card-content__body h3:first-child {
    margin-bottom: 1.8em;
  }
  #features .cards .card .card-content .card-content__body h4 {
    margin-bottom: 0.8em;
  }
  #features .cards .card .card-content .card-content__body p {
    margin-bottom: 1.5em;
  }
  #features .cards .card.card-1 .card-content .card-1_intro {
    display: block;
  }
  #features .cards .card.card-1 .card-content .card-1_intro .img, #features .cards .card.card-1 .card-content .card-1_intro .txt {
    width: 100%;
  }
  #features .cards .card.card-1 .card-content .card-1_intro .txt {
    margin-top: 1em;
  }
  #features .cards .card.card-2 .card-content .card-content__body .career-paths {
    flex-direction: column;
  }
  #features .cards .card.card-2 .card-content .card-content__body .career-paths .box {
    width: 100%;
  }
  #features .cards .card.card-2 .card-content .card-content__body h4.js-accordion-trigger {
    cursor: default;
    position: relative;
  }
  #features .cards .card.card-2 .card-content .card-content__body h4.js-accordion-trigger::after, #features .cards .card.card-2 .card-content .card-content__body h4.js-accordion-trigger::before {
    display: none;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations.js-accordion-content {
    display: flex;
    position: relative;
    height: 180px;
    overflow: hidden;
    transition: height 0.3s ease;
    pointer-events: none;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations.js-accordion-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    pointer-events: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations.js-accordion-content.is-open {
    height: auto;
    overflow: visible;
    pointer-events: auto;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations.js-accordion-content.is-open::after {
    opacity: 0;
    pointer-events: none;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li {
    width: calc(50% - 1rem);
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper {
    gap: 0.4rem;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations-close.is-visible {
    display: block;
    text-align: center;
    margin-top: 1em;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations-close.is-visible span {
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5em 1em;
    text-decoration: none;
  }
  #features .cards .card.card-3 .card-content .chart-block .chart {
    gap: 2em;
    width: 100%;
    max-width: auto;
  }
}
@media only screen and (max-width: 960px) {
  #features nav {
    display: none;
  }
  #features .cards {
    padding-right: 0;
    width: 100%;
  }
  #features .cards .card .card__link {
    padding: 0;
    gap: 1.5rem;
    max-height: none;
    overflow: visible;
  }
  #features .cards .card .card-header {
    position: static;
    top: auto;
    padding: 1.4em;
  }
  #features .cards .card .card-header .card-header-left {
    gap: 1em;
  }
  #features .cards .card .card-header .card-header-left .number {
    font-size: 1em;
  }
  #features .cards .card .card-header .card-header-left p {
    font-size: 0.9em;
  }
  #features .cards .card .card-header .card-header-right {
    text-align: left;
  }
  #features .cards .card .card-header .card-header-right p {
    font-size: 0.7em;
  }
  #features .cards .card .card-content {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    margin: 1.5em 2em 2em;
    padding: 2em 3em;
  }
  #features .cards .card .card-content .card-content__body {
    overflow: visible;
    max-height: none;
    padding-bottom: 0.5em;
  }
  #features .cards .card .card-content .card-content__body h4 {
    font-size: 1.35rem;
  }
  #features .cards .card.card-3 .card-content .chart-block .chart {
    width: 80%;
    flex-direction: column;
  }
  #features .cards .card.card-3 .card-content .chart-block .chart > div:nth-child(1) {
    position: relative;
    left: -60px;
  }
  #features .cards .card.card-3 .card-content .chart-block .chart > div:nth-child(2) {
    max-width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  #features .cards {
    padding: 1em;
    gap: 1.6em;
  }
  #features .cards .card {
    border-radius: 16px;
    padding: 12px;
  }
  #features .cards .card .card-header {
    padding: 0 0.2em;
  }
  #features .cards .card .card-header .card-header-left {
    gap: 0.5em;
  }
  #features .cards .card .card-header .card-header-left .number {
    padding-right: 0.5em;
    font-size: 0.7em;
  }
  #features .cards .card .card-header .card-header-left p {
    font-size: 0.7em;
  }
  #features .cards .card .card-header .card-header-right p {
    font-size: 0.6em;
    letter-spacing: 0;
  }
  #features .cards .card .card-content {
    margin: 1.2em 0.9em;
    padding: 2em;
  }
  #features .cards .card .card-content .card-content__body h3 {
    font-size: 1.4rem;
  }
  #features .cards .card .card-content .card-content__body h3:first-child {
    margin-bottom: 1.2em;
  }
  #features .cards .card .card-content .card-content__body h3 span {
    width: 48px;
    height: 48px;
  }
  #features .cards .card .card-content .card-content__body h3 span i {
    font-size: 1.2rem;
  }
  #features .cards .card .card-content .card-content__body h4 {
    font-size: 1.2rem;
  }
  #features .cards .card .card-content .card-content__body p {
    font-size: 0.9rem;
  }
  #features .cards .card .card-content .card-content__body .flex {
    flex-direction: column;
  }
  #features .cards .card .card-content .card-content__body .flex > div {
    width: 100%;
  }
  #features .cards .card .card-content .card-content__body .box h5 {
    font-size: 1rem;
  }
  #features .cards .card .card-content .card-content__body .box h5 span {
    font-size: 0.7rem;
  }
  #features .cards .card .card-content .card-content__body .box p {
    font-size: 0.8rem;
  }
  #features .cards .card.card-1 .card-content .skill-up .box {
    width: 100% !important;
  }
  #features .cards .card.card-2 .card-content .card-content__body .workstyle .box h5 {
    margin: 0;
  }
  #features .cards .card.card-2 .card-content .card-content__body .workstyle .box .icon {
    margin: 1em auto 0;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li {
    width: 100%;
  }
  #features .cards .card.card-2 .card-content .card-content__body .locations li .location-wrapper .location-address p {
    font-size: 0.7rem;
    line-height: 1.6;
    margin: 0.2em 0;
  }
  #features .cards .card.card-3 .card-content .chart-block .chart {
    width: 100%;
  }
  #features .cards .card.card-3 .card-content .chart-block .chart > div:nth-child(1) {
    left: -20px;
  }
  #features .cards .card.card-3 .card-content .chart-block .chart > div:nth-child(2) {
    max-width: 180px;
  }
}
@media only screen and (max-width: 460px) {
  #features .cards {
    gap: 0.75em;
    padding: 0;
  }
  #features .cards .card .card-header .card-header-left p {
    letter-spacing: 0;
  }
  #features .cards .card .card-content {
    margin: 1em 0 0;
    padding: 1.5em;
  }
  #features .cards .card .card-content .card-content__body {
    padding-bottom: 0;
  }
  #features .cards .card .card-content .card-content__body h3 {
    text-align: left;
    font-size: 1.2rem;
    letter-spacing: 0;
    gap: 0.4em;
  }
  #features .cards .card .card-content .card-content__body h3 span {
    width: 40px;
    height: 40px;
  }
  #features .cards .card .card-content .card-content__body h3 span i {
    font-size: 1rem;
  }
  #features .cards .card .card-content .card-content__body h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
  }
  #features .cards .card .card-content .card-content__body p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  #features .cards .card .card-content .card-content__body .flex {
    gap: 1em;
  }
  #features .cards .card .card-content .card-content__body .box {
    padding: 1em 1.4em;
  }
  #features .cards .card.card-2 .card-content .card-content__body .flex {
    gap: 0.5em;
  }
  #features .cards .card.card-4 .card-content .card-content__body .flex {
    margin: 2em auto 0;
  }
  #features .cards .card.card-5 .card-content .card-content__body .flex {
    margin: 2em auto 0;
  }
}

/* ------------------------------------------------------------
 Photo Slider
------------------------------------------------------------ */
#photo-slider {
  margin: 10em 0 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  --photo-slider-duration: 90s;
}
#photo-slider .photo-slider__track {
  display: flex;
  gap: 0;
  width: 600%;
  animation: photo-slider-marquee var(--photo-slider-duration) linear infinite;
}
#photo-slider .photo-slider__item {
  display: block;
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
}
#photo-slider .photo-slider__item img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1400px) {
  #photo-slider {
    margin: 10em 0 5em;
    --photo-slider-duration: 80s;
  }
  #photo-slider .photo-slider__track {
    width: 700%;
  }
}
@media only screen and (max-width: 1024px) {
  #photo-slider {
    margin: 8em 0 4em;
    --photo-slider-duration: 70s;
  }
  #photo-slider .photo-slider__track {
    width: 800%;
  }
}
@media only screen and (max-width: 960px) {
  #photo-slider {
    margin: 6em 0 3em;
    --photo-slider-duration: 60s;
  }
  #photo-slider .photo-slider__track {
    width: 1000%;
  }
}
@media only screen and (max-width: 767px) {
  #photo-slider {
    margin: 3em 0 1.5em;
  }
  #photo-slider .photo-slider__track {
    width: 1200%;
  }
}
@media only screen and (max-width: 460px) {
  #photo-slider {
    margin: 2em 0 1em;
  }
  #photo-slider .photo-slider__track {
    width: 2000%;
  }
}

@keyframes photo-slider-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  #photo-slider .photo-slider__track {
    animation: none;
    transform: none;
  }
}
/* ------------------------------------------------------------
 Senior Day
------------------------------------------------------------ */
#senior-day {
  padding-top: 4em;
  margin: 4em auto 0;
}
#senior-day .senior-day-title {
  text-align: center;
}
#senior-day .senior-day-title h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1em;
}
#senior-day .senior-day-title p {
  font-size: 1.1rem;
  line-height: 1.6;
}
#senior-day .senior-day-content {
  margin: 8em auto 0;
  background: linear-gradient(90deg, #F9EFF1 0, #F9EFF1 50%, #ffffff 50%, #ffffff 100%);
}
#senior-day .senior-day-content .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
#senior-day .senior-day-content .left {
  align-self: flex-start;
  padding: 8em 0;
  width: 50%;
  position: sticky;
  top: 0;
  left: 0;
}
#senior-day .senior-day-content .left:before, #senior-day .senior-day-content .left:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
}
#senior-day .senior-day-content .left:before {
  background: #fff;
}
#senior-day .senior-day-content .left:after {
  border-top-right-radius: 100%;
  background: #F9EFF1;
}
#senior-day .senior-day-content .left .profile {
  width: 60%;
  margin: 0 auto;
  max-width: 320px;
}
#senior-day .senior-day-content .left .profile .profile-img {
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
}
#senior-day .senior-day-content .left .profile .profile-img:before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  right: -30px;
  top: -30px;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  background: #fff;
  position: absolute;
  z-index: -1;
}
#senior-day .senior-day-content .left .profile h6 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5em;
}
#senior-day .senior-day-content .left .profile p {
  font-size: 1rem;
  line-height: 1.6;
}
#senior-day .senior-day-content .right {
  padding: 5em 0 2em;
  width: 50%;
  background: #fff;
}
#senior-day .senior-day-content .right dl {
  border-left: 2px solid #FB8197;
  position: relative;
  left: -70px;
}
#senior-day .senior-day-content .right dl:last-child {
  border-left: none;
}
#senior-day .senior-day-content .right dl dt {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #FB8197;
  border-radius: 100%;
  position: absolute;
  left: -10px;
  top: 0px;
  z-index: 1;
}
#senior-day .senior-day-content .right dl dt:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #FB8197;
  border-radius: 100%;
  position: absolute;
  z-index: 2;
  left: 3px;
  top: 3px;
}
#senior-day .senior-day-content .right dl dd {
  position: relative;
  padding-left: 8.4em;
  padding-bottom: 6em;
}
#senior-day .senior-day-content .right dl dd:before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  border-top: 1px dotted #FB8197;
}
#senior-day .senior-day-content .right dl dd .time {
  color: #FB8197;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.5em;
}
#senior-day .senior-day-content .right dl dd h5 {
  margin: 0.5em 0 0.8em;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5em;
}
#senior-day .senior-day-content .right dl dd p {
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
}
#senior-day .senior-day-content .right dl dd .img {
  margin-top: 1em;
}
#senior-day .senior-day-content .right dl dd .img img {
  width: 60%;
  max-width: 500px;
  min-width: 300px;
  border-radius: 16px;
}
@media only screen and (max-width: 1400px) {
  #senior-day .senior-day-title h3 {
    font-size: 2.2rem;
  }
  #senior-day .senior-day-title p {
    font-size: 1.1rem;
  }
  #senior-day .senior-day-content {
    margin: 6em auto 0;
  }
  #senior-day .senior-day-content .left {
    width: 45%;
    padding: 6em 0;
  }
  #senior-day .senior-day-content .left .profile {
    margin: 0 20% 0 15%;
    max-width: 300px;
  }
  #senior-day .senior-day-content .left .profile .profile-img:before {
    width: 120px;
    height: 120px;
    right: -20px;
    top: -20px;
  }
  #senior-day .senior-day-content .left .profile h6 {
    font-size: 1rem;
  }
  #senior-day .senior-day-content .left .profile p {
    font-size: 0.9rem;
  }
  #senior-day .senior-day-content .right {
    width: 55%;
    padding: 4em 0 2em;
  }
  #senior-day .senior-day-content .right dl {
    left: -50px;
  }
  #senior-day .senior-day-content .right dl dd {
    padding-left: 7em;
    padding-bottom: 5em;
  }
  #senior-day .senior-day-content .right dl dd:before {
    width: 90px;
  }
  #senior-day .senior-day-content .right dl dd h5 {
    font-size: 1.4rem;
  }
  #senior-day .senior-day-content .right dl dd p {
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 1024px) {
  #senior-day {
    padding-top: 3em;
  }
  #senior-day .senior-day-title h3 {
    font-size: 1.8rem;
  }
  #senior-day .senior-day-title p {
    font-size: 1rem;
  }
  #senior-day .senior-day-content {
    margin: 5em auto 0;
  }
  #senior-day .senior-day-content .left {
    padding: 5em 0;
  }
  #senior-day .senior-day-content .left .profile h6 {
    font-size: 1.1rem;
  }
  #senior-day .senior-day-content .left .profile p {
    font-size: 0.9rem;
  }
  #senior-day .senior-day-content .right {
    padding: 3em 0 2em;
  }
  #senior-day .senior-day-content .right dl {
    left: -50px;
  }
  #senior-day .senior-day-content .right dl dd {
    padding-left: 6em;
    padding-bottom: 4em;
  }
  #senior-day .senior-day-content .right dl dd h5 {
    font-size: 1.3rem;
  }
  #senior-day .senior-day-content .right dl dd .img img {
    width: 70%;
    min-width: 250px;
  }
}
@media only screen and (max-width: 960px) {
  #senior-day {
    padding-top: 2em;
  }
  #senior-day .senior-day-title {
    padding: 0 5%;
  }
  #senior-day .senior-day-title h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8em;
  }
  #senior-day .senior-day-title p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  #senior-day .senior-day-content {
    margin: 0 auto;
    background: #fff;
  }
  #senior-day .senior-day-content .container {
    flex-direction: column;
  }
  #senior-day .senior-day-content .left {
    width: 100%;
    padding: 3em 0 2em;
    position: static;
  }
  #senior-day .senior-day-content .left:before, #senior-day .senior-day-content .left:after {
    display: none;
  }
  #senior-day .senior-day-content .left .profile {
    width: 80%;
    max-width: 280px;
    margin: 2em auto 1em;
    text-align: center;
  }
  #senior-day .senior-day-content .left .profile .profile-img:before {
    width: 120px;
    height: 120px;
    right: -20px;
    top: -20px;
    background: #F9EFF1;
  }
  #senior-day .senior-day-content .left .profile h6 {
    font-size: 1rem;
  }
  #senior-day .senior-day-content .left .profile p {
    font-size: 0.85rem;
  }
  #senior-day .senior-day-content .right {
    border-radius: 30px;
    background: #F9EFF1;
    width: 90%;
    margin: auto;
    padding: 5em 6% 3em;
  }
  #senior-day .senior-day-content .right dl {
    width: 80%;
    margin: 0 auto;
    left: auto;
    border-left: 2px solid #FB8197;
    padding-left: 1.5em;
  }
  #senior-day .senior-day-content .right dl dt {
    left: -11px;
  }
  #senior-day .senior-day-content .right dl dd {
    padding-left: 1.8em;
    padding-bottom: 2.5em;
    padding-top: 0.2em;
  }
  #senior-day .senior-day-content .right dl dd:before {
    left: -20px;
    width: 40px;
  }
  #senior-day .senior-day-content .right dl dd .time {
    font-size: 0.9rem;
  }
  #senior-day .senior-day-content .right dl dd h5 {
    font-size: 1.2rem;
    margin: 0.5em 0 0.6em;
  }
  #senior-day .senior-day-content .right dl dd p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  #senior-day .senior-day-content .right dl dd .img {
    margin-top: 0.8em;
  }
  #senior-day .senior-day-content .right dl dd .img img {
    width: 100%;
    max-width: 600px;
    min-width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  #senior-day {
    padding-top: 1em;
  }
  #senior-day .senior-day-title {
    padding: 0 3%;
  }
  #senior-day .senior-day-title h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6em;
  }
  #senior-day .senior-day-title p {
    font-size: 0.85rem;
  }
  #senior-day .senior-day-content {
    margin: 0 auto;
  }
  #senior-day .senior-day-content .left {
    padding: 2em 0 1.5em;
  }
  #senior-day .senior-day-content .left .profile {
    width: 90%;
    max-width: 250px;
  }
  #senior-day .senior-day-content .left .profile .profile-img:before {
    width: 100px;
    height: 100px;
    right: -15px;
    top: -15px;
  }
  #senior-day .senior-day-content .left .profile h6 {
    font-size: 1.1rem;
  }
  #senior-day .senior-day-content .left .profile p {
    font-size: 0.8rem;
  }
  #senior-day .senior-day-content .right {
    border-radius: 20px;
    padding: 2em 5% 1em;
  }
  #senior-day .senior-day-content .right dl {
    padding-left: 1em;
  }
  #senior-day .senior-day-content .right dl dd {
    padding-bottom: 2.5em;
  }
  #senior-day .senior-day-content .right dl dd .time {
    font-size: 0.85rem;
  }
  #senior-day .senior-day-content .right dl dd h5 {
    line-height: 1.3;
    font-size: 1.2rem;
    margin: 0.4em 0 0.5em;
  }
}
@media only screen and (max-width: 460px) {
  #senior-day {
    margin: 3em auto 0;
  }
  #senior-day .senior-day-title {
    padding: 0 2%;
  }
  #senior-day .senior-day-title h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
  }
  #senior-day .senior-day-title p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  #senior-day .senior-day-content .left {
    padding: 1.5em 0 1em;
  }
  #senior-day .senior-day-content .left .profile {
    width: 95%;
    max-width: 220px;
  }
  #senior-day .senior-day-content .left .profile .profile-img:before {
    width: 80px;
    height: 80px;
    right: -10px;
    top: -10px;
  }
  #senior-day .senior-day-content .left .profile p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  #senior-day .senior-day-content .right dl {
    width: 90%;
  }
  #senior-day .senior-day-content .right dl dd {
    padding-left: 1em;
    padding-bottom: 2em;
  }
  #senior-day .senior-day-content .right dl dd:before {
    width: 30px;
  }
  #senior-day .senior-day-content .right dl dd .time {
    font-size: 0.8rem;
  }
  #senior-day .senior-day-content .right dl dd h5 {
    font-size: 1rem;
    margin: 0.3em 0 0.4em;
  }
  #senior-day .senior-day-content .right dl dd p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  #senior-day .senior-day-content .right dl dd .img {
    margin-top: 0.6em;
  }
  #senior-day .senior-day-content .right dl dd .img img {
    border-radius: 8px;
    min-width: 200px;
  }
}

/* ------------------------------------------------------------
 Senior Voice
------------------------------------------------------------ */
#senior-voice {
  position: relative;
  z-index: 2;
  padding: 10em 0;
}
#senior-voice:before {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #DEEBF3;
  display: block;
  z-index: -1;
  width: 96%;
  max-width: 2800px;
  height: 100%;
}
#senior-voice .container {
  width: 80%;
  max-width: 1200px;
}
#senior-voice .senior-voice__title {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 2em;
  margin-bottom: 3em;
}
#senior-voice .senior-voice__title .icon {
  width: 80px;
  height: 80px;
  background: #0065C4;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-left-radius: 100%;
  position: relative;
}
#senior-voice .senior-voice__title .title p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #0065C4;
  margin-bottom: 10px;
}
#senior-voice .senior-voice__title .title h5 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
#senior-voice .senior-voice__content {
  padding-left: 7em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#senior-voice .senior-voice__content .txt {
  width: 65%;
}
#senior-voice .senior-voice__content .txt h6 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1em;
}
#senior-voice .senior-voice__content .txt p {
  font-size: 1rem;
  line-height: 2;
}
#senior-voice .senior-voice__content .profile {
  width: 30%;
}
#senior-voice .senior-voice__content .profile .img {
  margin-bottom: 1em;
  position: relative;
  z-index: 2;
}
#senior-voice .senior-voice__content .profile .img:before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  right: -30px;
  top: -30px;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  background: #0065C4;
  position: absolute;
  z-index: -1;
}
#senior-voice .senior-voice__content .profile .img img {
  max-width: 300px;
  width: 100%;
}
#senior-voice .senior-voice__content .profile p {
  font-size: 0.9rem;
  line-height: 1.4;
}
#senior-voice .senior-voice__content .profile p.name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 1600px) {
  #senior-voice {
    padding: 8em 0;
  }
  #senior-voice .senior-voice__title {
    gap: 1.5em;
    margin-bottom: 2.5em;
  }
  #senior-voice .senior-voice__content {
    padding-left: 6em;
    padding-right: 2em;
  }
  #senior-voice .senior-voice__content .txt {
    width: 60%;
  }
  #senior-voice .senior-voice__content .profile {
    width: 35%;
  }
  #senior-voice .senior-voice__content .profile .img:before {
    right: 20px;
    top: -20px;
  }
}
@media only screen and (max-width: 1400px) {
  #senior-voice {
    padding: 8em 0;
  }
  #senior-voice:before {
    width: 97%;
  }
  #senior-voice .container {
    width: 85%;
  }
  #senior-voice .senior-voice__title {
    gap: 1.5em;
    margin-bottom: 2.5em;
  }
  #senior-voice .senior-voice__title .icon {
    width: 70px;
    height: 70px;
  }
  #senior-voice .senior-voice__title .title p {
    font-size: 1.1rem;
  }
  #senior-voice .senior-voice__title .title h5 {
    font-size: 2rem;
  }
  #senior-voice .senior-voice__content {
    padding-left: 6em;
  }
  #senior-voice .senior-voice__content .txt {
    width: 65%;
  }
  #senior-voice .senior-voice__content .txt h6 {
    font-size: 1.4rem;
  }
  #senior-voice .senior-voice__content .txt p {
    font-size: 0.95rem;
  }
  #senior-voice .senior-voice__content .profile {
    width: 30%;
  }
  #senior-voice .senior-voice__content .profile .img:before {
    width: 100px;
    height: 100px;
    right: -20px;
    top: -20px;
  }
  #senior-voice .senior-voice__content .profile p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  #senior-voice .senior-voice__content .profile p.name {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  #senior-voice {
    padding: 6em 0;
  }
  #senior-voice .container {
    width: 90%;
  }
  #senior-voice .senior-voice__title {
    gap: 1.2em;
    margin-bottom: 2em;
  }
  #senior-voice .senior-voice__title .icon {
    width: 60px;
    height: 60px;
  }
  #senior-voice .senior-voice__title .title p {
    font-size: 1rem;
  }
  #senior-voice .senior-voice__title .title h5 {
    font-size: 1.8rem;
  }
  #senior-voice .senior-voice__content {
    padding-left: 5em;
  }
  #senior-voice .senior-voice__content .txt {
    width: 60%;
  }
  #senior-voice .senior-voice__content .txt h6 {
    font-size: 1.3rem;
  }
  #senior-voice .senior-voice__content .txt p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  #senior-voice .senior-voice__content .profile {
    width: 35%;
  }
}
@media only screen and (max-width: 960px) {
  #senior-voice {
    margin: 3em auto 0;
    padding: 4em 0;
    background: #DEEBF3;
  }
  #senior-voice:before {
    display: none;
  }
  #senior-voice .container {
    width: 90%;
  }
  #senior-voice .senior-voice__title {
    margin-bottom: 2em;
    justify-content: center;
  }
  #senior-voice .senior-voice__title .icon {
    width: 50px;
    height: 50px;
  }
  #senior-voice .senior-voice__title .title p {
    font-size: 0.95rem;
  }
  #senior-voice .senior-voice__title .title h5 {
    font-size: 1.6rem;
  }
  #senior-voice .senior-voice__content {
    margin-top: 4em;
    padding: 0;
    flex-direction: column;
  }
  #senior-voice .senior-voice__content .txt {
    width: 100%;
    margin-bottom: 2em;
  }
  #senior-voice .senior-voice__content .txt h6 {
    text-align: center;
    font-size: 1.2rem;
  }
  #senior-voice .senior-voice__content .txt p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  #senior-voice .senior-voice__content .profile {
    width: 100%;
    max-width: auto;
    margin: 1em auto 0;
    text-align: center;
  }
  #senior-voice .senior-voice__content .profile .img {
    display: inline-block;
    margin: 1em auto;
    text-align: center;
  }
  #senior-voice .senior-voice__content .profile .img:before {
    width: 100px;
    height: 100px;
    right: -20px;
    top: -20px;
  }
  #senior-voice .senior-voice__content .profile .img img {
    max-width: 250px;
  }
  #senior-voice .senior-voice__content .profile p {
    font-size: 0.8rem;
  }
  #senior-voice .senior-voice__content .profile p.name {
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 767px) {
  #senior-voice {
    margin-top: 2em;
    padding: 4em 0;
  }
  #senior-voice .senior-voice__title {
    gap: 1em;
  }
  #senior-voice .senior-voice__title .icon {
    width: 45px;
    height: 45px;
  }
  #senior-voice .senior-voice__title .title p {
    font-size: 0.85rem;
  }
  #senior-voice .senior-voice__title .title h5 {
    font-size: 1.4rem;
  }
  #senior-voice .senior-voice__content .txt h6 {
    line-height: 1.4;
    font-size: 1.3rem;
  }
  #senior-voice .senior-voice__content .txt p {
    font-size: 0.85rem;
  }
  #senior-voice .senior-voice__content .profile .img:before {
    width: 80px;
    height: 80px;
    right: -15px;
    top: -15px;
  }
}
@media only screen and (max-width: 460px) {
  #senior-voice {
    padding: 3em 0;
  }
  #senior-voice .senior-voice__title .icon {
    width: 40px;
    height: 40px;
  }
  #senior-voice .senior-voice__title .title p {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }
  #senior-voice .senior-voice__title .title h5 {
    font-size: 1.2rem;
  }
  #senior-voice .senior-voice__content {
    margin-top: 2em;
  }
  #senior-voice .senior-voice__content .txt {
    margin-bottom: 1em;
  }
  #senior-voice .senior-voice__content .profile .img img {
    max-width: 220px;
  }
  #senior-voice .senior-voice__content .profile p {
    font-size: 0.7rem;
  }
  #senior-voice .senior-voice__content .profile p.name {
    font-size: 0.9rem;
  }
}

/* ------------------------------------------------------------
 WeWorld
------------------------------------------------------------ */
#weworld {
  position: relative;
  background: #1D246E;
  color: #fff;
  padding: 10em 0;
  top: -100px;
  z-index: 1;
  padding: 15em 0 10em;
}
#weworld .weworld__title {
  text-align: center;
}
#weworld .weworld__title .weworld__title__lead {
  margin-bottom: 2em;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}
#weworld .weworld__title .sub {
  color: #8FB4EB;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 700;
}
#weworld .weworld__title .logo {
  margin: 1.6em auto 1em;
}
#weworld .weworld__title .logo img {
  width: min(360px, 30vw);
  margin: 0 auto;
}
#weworld .weworld__title h4 {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
#weworld .weworld__title p {
  font-size: 1rem;
  line-height: 2;
}
#weworld .weworld__content {
  margin-top: 4em;
}
#weworld .weworld__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
#weworld .weworld__content ul li {
  border-right: 1px dotted #7694B1;
  padding: 0 2.5em;
}
#weworld .weworld__content ul li:first-child {
  padding-left: 0;
}
#weworld .weworld__content ul li:last-child {
  border-right: none;
  padding-right: 0;
}
#weworld .weworld__content ul li a {
  display: block;
  color: #1D246E;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
#weworld .weworld__content ul li a:hover {
  opacity: 0.7;
}
#weworld .weworld__content ul li a p {
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 500;
  color: #8FB4EB;
}
#weworld .weworld__content ul li a h6 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5em;
  color: #fff;
}
#weworld .weworld__content ul li a .img img {
  border-radius: 6px;
}
@media only screen and (max-width: 1400px) {
  #weworld {
    padding: 12em 0 8em;
    top: -80px;
  }
  #weworld .weworld__title .logo img {
    width: 320px;
  }
  #weworld .weworld__title h4 {
    font-size: 1.8rem;
  }
  #weworld .weworld__content {
    margin-top: 3em;
  }
  #weworld .weworld__content ul li {
    padding: 0 1.4em;
  }
  #weworld .weworld__content ul li a p {
    font-size: 0.7rem;
  }
  #weworld .weworld__content ul li a h6 {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 1024px) {
  #weworld {
    padding: 10em 0 6em;
    top: -60px;
  }
  #weworld .weworld__title .logo img {
    width: 260px;
  }
  #weworld .weworld__title h4 {
    font-size: 1.6rem;
  }
  #weworld .weworld__title p {
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 960px) {
  #weworld {
    padding: 8em 0 5em;
    top: -40px;
  }
  #weworld .weworld__title {
    padding: 0 5%;
  }
  #weworld .weworld__title .sub {
    font-size: 0.8rem;
  }
  #weworld .weworld__title .logo {
    margin: 1.2em auto 0.5em;
  }
  #weworld .weworld__title .logo img {
    width: 240px;
  }
  #weworld .weworld__title h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8em;
  }
  #weworld .weworld__title p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  #weworld .weworld__content {
    margin-top: 2.5em;
  }
  #weworld .weworld__content ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5%;
  }
  #weworld .weworld__content ul li {
    margin-bottom: 2em;
    width: 30%;
    padding: 0;
    border-right: none;
  }
  #weworld .weworld__content ul li a h6 {
    font-size: 0.95rem;
  }
  #weworld .weworld__content ul li a .img img {
    width: 300px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  #weworld {
    padding: 6em 0 4em;
    top: -30px;
  }
  #weworld .weworld__title {
    padding: 0 3%;
  }
  #weworld .weworld__title .logo img {
    width: 220px;
  }
  #weworld .weworld__title h4 {
    font-size: 1.2rem;
  }
  #weworld .weworld__title p {
    font-size: 0.75rem;
  }
  #weworld .weworld__content {
    margin-top: 2em;
  }
  #weworld .weworld__content ul {
    gap: 2%;
  }
  #weworld .weworld__content ul li {
    width: 48%;
    padding: 0 0.8em;
  }
  #weworld .weworld__content ul li:first-child, #weworld .weworld__content ul li:last-child {
    padding: 0 0.8em;
  }
  #weworld .weworld__content ul li a p {
    font-size: 0.65rem;
  }
  #weworld .weworld__content ul li a h6 {
    font-size: 0.9rem;
  }
  #weworld .weworld__content ul li a .img img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 460px) {
  #weworld {
    padding: 5em 0 3em;
    top: -20px;
  }
  #weworld .weworld__title {
    padding: 0 2%;
  }
  #weworld .weworld__title .sub {
    font-size: 0.75rem;
  }
  #weworld .weworld__title .logo {
    margin: 1em auto 0.5em;
  }
  #weworld .weworld__title .logo img {
    width: 200px;
  }
  #weworld .weworld__title h4 {
    line-height: 1.4;
    margin-bottom: 0.6em;
  }
  #weworld .weworld__title p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  #weworld .weworld__content {
    margin-top: 2.5em;
  }
  #weworld .weworld__content ul li {
    margin-bottom: 1.2em;
  }
  #weworld .weworld__content ul li a p {
    font-size: 0.6rem;
  }
  #weworld .weworld__content ul li a h6 {
    font-size: 0.85rem;
  }
  #weworld .weworld__content ul li a .img img {
    height: 132px;
  }
}

/* ------------------------------------------------------------
 recruitment
------------------------------------------------------------ */
#recruitment {
  padding-top: 4em;
  margin: auto;
}
#recruitment .container {
  max-width: 1200px;
}
#recruitment .recruitment__title {
  text-align: center;
}
#recruitment .recruitment__title h3 {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 1em;
}
#recruitment .recruitment__title p {
  font-size: 1rem;
  line-height: 2;
}
#recruitment .recruitment__content {
  margin-top: 4em;
}
#recruitment .recruitment__content a {
  color: #1D246E;
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
#recruitment .recruitment__content a:hover {
  text-decoration: none;
}
#recruitment .recruitment__content dl {
  display: flex;
  border-top: 1px dotted #ccc;
  padding: 2em 0;
}
#recruitment .recruitment__content dl dt {
  width: 200px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}
#recruitment .recruitment__content dl dd {
  width: calc(100% - 200px);
  font-size: 1rem;
  line-height: 1.6;
}
#recruitment .recruitment__content dl:last-child {
  border-bottom: 1px dotted #ccc;
}
#recruitment .recruitment__content ul {
  list-style: none;
}
#recruitment .recruitment__content ul.disc {
  list-style: disc;
  padding-left: 1em;
}
#recruitment .recruitment__content ul.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
#recruitment .recruitment__content ul.flex li {
  width: 25%;
}
#recruitment .recruitment__content h6 {
  font-weight: 700;
  margin: 1em 0;
}
#recruitment .recruitment__content h6:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 1400px) {
  #recruitment .recruitment__title h3 {
    font-size: 2rem;
  }
  #recruitment .recruitment__content {
    margin-top: 3em;
  }
  #recruitment .recruitment__content dl dt {
    width: 180px;
  }
  #recruitment .recruitment__content dl dd {
    width: calc(100% - 180px);
  }
}
@media only screen and (max-width: 1024px) {
  #recruitment .recruitment__title h3 {
    font-size: 1.7rem;
  }
  #recruitment .recruitment__title p {
    font-size: 0.9rem;
  }
  #recruitment .recruitment__content {
    margin-top: 3em;
  }
  #recruitment .recruitment__content dl dt {
    width: 160px;
    font-size: 0.9rem;
  }
  #recruitment .recruitment__content dl dd {
    width: calc(100% - 160px);
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 960px) {
  #recruitment {
    padding-top: 2em;
  }
  #recruitment .recruitment__title h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8em;
  }
  #recruitment .recruitment__title p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  #recruitment .recruitment__content {
    margin-top: 2.5em;
  }
  #recruitment .recruitment__content dl {
    flex-direction: column;
    padding: 1.5em 1em;
  }
  #recruitment .recruitment__content dl dt {
    width: 100%;
    margin-bottom: 0.5em;
    font-size: 0.9rem;
  }
  #recruitment .recruitment__content dl dd {
    width: 100%;
    font-size: 0.9rem;
  }
  #recruitment .recruitment__content ul.flex li {
    width: 50%;
  }
  #recruitment .recruitment__content ul.disc {
    padding-left: 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  #recruitment {
    padding-top: 1em;
  }
  #recruitment .container {
    padding: 0 3%;
  }
  #recruitment .recruitment__title p {
    font-size: 0.8rem;
  }
  #recruitment .recruitment__content {
    margin-top: 2em;
  }
  #recruitment .recruitment__content dl {
    padding: 1.2em 0;
  }
  #recruitment .recruitment__content ul.flex li {
    width: 100%;
  }
}
@media only screen and (max-width: 460px) {
  #recruitment {
    padding-top: 0em;
  }
  #recruitment .container {
    padding: 0 2%;
  }
  #recruitment .recruitment__title p {
    font-size: 0.7rem;
    line-height: 1.6;
  }
  #recruitment .recruitment__content {
    margin-top: 1.5em;
  }
  #recruitment .recruitment__content dl {
    padding: 1em 0;
  }
  #recruitment .recruitment__content dl dd {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* ------------------------------------------------------------
 faq
------------------------------------------------------------ */
#faq {
  padding-top: 6em;
  position: relative;
  z-index: 1;
  background: #fff;
  margin-bottom: 8em;
}
#faq .container {
  max-width: 1200px;
}
#faq .faq__title {
  text-align: center;
}
#faq .faq__title h3 {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.1;
}
#faq .faq__title p {
  margin-top: 1.2em;
  font-size: 1rem;
  line-height: 1.7;
}
#faq .faq__list {
  margin-top: 3.5em;
}
#faq .faq-category {
  text-align: center;
  margin-top: 2em;
  padding: 1.5em 0 2em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1D246E;
  line-height: 1.4;
  border-top: none;
  border-bottom: 1px solid #E3E6EC;
}
#faq .faq-item {
  border-bottom: 1px solid #E3E6EC;
}
#faq .faq-item.is-open .faq-item__question {
  color: #1D246E;
}
#faq .faq-item.is-open .faq-item__question:hover {
  background: #fff;
}
#faq .faq-item.is-open .faq-item__icon::after {
  opacity: 0;
}
#faq .faq-item__question {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2em;
  background: transparent;
  border: none;
  padding: 1em;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}
#faq .faq-item__question:before {
  content: "Q.";
  display: inline-block;
  color: #1D246E;
  font-size: 1.1rem;
  font-family: "Arial", sans-serif;
  font-weight: 700;
}
#faq .faq-item__question:hover {
  color: #1D246E;
  background: rgba(29, 36, 110, 0.05);
}
#faq .faq-item__question:hover .faq-item__icon {
  border-color: rgba(29, 36, 110, 0.35);
}
#faq .faq-item__question:hover .faq-item__icon::before,
#faq .faq-item__question:hover .faq-item__icon::after {
  background: #1D246E;
}
#faq .faq-item__question:focus-visible {
  outline: 2px solid rgba(29, 36, 110, 0.35);
  outline-offset: 4px;
}
#faq .faq-item__label {
  flex: 1;
  line-height: 1.4;
}
#faq .faq-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
#faq .faq-item__icon::before, #faq .faq-item__icon::after {
  content: "";
  position: absolute;
  background: #cccccc;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, opacity 0.2s ease;
}
#faq .faq-item__icon::before {
  width: 18px;
  height: 2px;
}
#faq .faq-item__icon::after {
  width: 2px;
  height: 18px;
}
#faq .faq-item__answer {
  padding: 0 1em 1.8em;
  text-align: left;
  font-size: 1rem;
}
#faq .faq-item__answer[hidden] {
  display: none;
}
#faq .faq-item__answer p {
  margin: 0;
  line-height: 1.6;
}
@media only screen and (max-width: 1400px) {
  #faq .faq__title h3 {
    font-size: 2rem;
  }
  #faq .faq-item__question {
    font-size: 1.15rem;
  }
}
@media only screen and (max-width: 1024px) {
  #faq {
    padding-top: 3em;
  }
  #faq .faq-item__question {
    padding: 1.5em 0;
  }
  #faq .faq__title h3 {
    font-size: 1.7rem;
  }
  #faq .faq-item__icon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 960px) {
  #faq .container {
    padding: 0 5%;
  }
  #faq .faq-category {
    font-size: 1.3rem;
    margin-top: 2em;
    padding-top: 1.5em;
  }
  #faq .faq-item__question {
    font-size: 1.05rem;
    gap: 1em;
  }
}
@media only screen and (max-width: 767px) {
  #faq .container {
    padding: 0 4%;
  }
  #faq .faq__title h3 {
    font-size: 1.5rem;
  }
  #faq .faq__title p {
    font-size: 0.95rem;
  }
  #faq .faq-category {
    font-size: 1.2rem;
    margin-top: 1.8em;
    padding-top: 1.3em;
  }
  #faq .faq-item__question {
    padding: 1.3em 0;
    font-size: 1rem;
  }
  #faq .faq-item__icon {
    width: 36px;
    height: 36px;
  }
  #faq .faq-item__answer {
    font-size: 0.95rem;
  }
}
@media only screen and (max-width: 460px) {
  #faq .container {
    padding: 0 3%;
  }
  #faq .faq__title p {
    font-size: 0.7rem;
    line-height: 1.6;
  }
  #faq .faq-category {
    font-size: 1.1rem;
    margin-top: 1.5em;
    padding-top: 1.2em;
  }
  #faq .faq__list {
    margin-top: 2em;
  }
  #faq .faq-category {
    font-size: 1rem;
    margin-top: 1.5em;
    padding: 1.2em 0;
  }
  #faq .faq-item__question {
    padding: 1em 0;
    gap: 0.8em;
    font-size: 0.85rem;
  }
  #faq .faq-item__answer {
    line-height: 1.5;
    font-size: 0.75rem;
  }
  #faq .faq-item__icon {
    width: 24px;
    height: 24px;
  }
  #faq .faq-item__icon::before {
    width: 10px;
    height: 1px;
  }
  #faq .faq-item__icon::after {
    width: 1px;
    height: 10px;
  }
}

/* ------------------------------------------------------------
 recruitment-flow
------------------------------------------------------------ */
#recruitment-flow {
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  background: #F7F3F0;
  padding: 8em 0;
}
#recruitment-flow .container {
  max-width: 800px;
}
#recruitment-flow .recruitment-flow__title {
  text-align: center;
}
#recruitment-flow .recruitment-flow__title h3 {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1;
}
#recruitment-flow .recruitment-flow__content {
  margin-top: 4em;
}
#recruitment-flow .recruitment-flow__content ul li {
  text-align: center;
  background: #fff;
  padding: 1.5em;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
#recruitment-flow .recruitment-flow__content ul li:last-child {
  margin-bottom: 0;
}
#recruitment-flow .recruitment-flow__content ul li.arrow {
  padding: 1em 0;
  background: transparent;
}
#recruitment-flow .recruitment-flow__content ul li.arrow i {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 12px solid #FBB202;
  border-bottom: 0;
}
@media only screen and (max-width: 1400px) {
  #recruitment-flow {
    padding: 6em 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
  #recruitment-flow .recruitment-flow__title h3 {
    font-size: 1.8rem;
  }
  #recruitment-flow .recruitment-flow__content {
    margin-top: 3em;
  }
  #recruitment-flow .recruitment-flow__content ul li {
    font-size: 1rem;
    padding: 1.2em;
  }
}
@media only screen and (max-width: 1024px) {
  #recruitment-flow {
    padding: 5em 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
  #recruitment-flow .recruitment-flow__title h3 {
    font-size: 1.6rem;
  }
  #recruitment-flow .recruitment-flow__content {
    margin-top: 3em;
  }
  #recruitment-flow .recruitment-flow__content ul li {
    font-size: 0.95rem;
    padding: 1em;
  }
}
@media only screen and (max-width: 960px) {
  #recruitment-flow {
    padding: 4em 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  #recruitment-flow .container {
    padding: 0 5%;
  }
  #recruitment-flow .recruitment-flow__title h3 {
    font-size: 1.4rem;
  }
  #recruitment-flow .recruitment-flow__content {
    margin-top: 2.5em;
  }
  #recruitment-flow .recruitment-flow__content ul li {
    font-size: 0.9rem;
    padding: 1.4em;
  }
  #recruitment-flow .recruitment-flow__content ul li.arrow {
    padding: 0.8em 0;
  }
  #recruitment-flow .recruitment-flow__content ul li.arrow i {
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 10px solid #FBB202;
  }
}
@media only screen and (max-width: 767px) {
  #recruitment-flow {
    padding: 3em 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  #recruitment-flow .container {
    padding: 0 3%;
  }
  #recruitment-flow .recruitment-flow__title h3 {
    font-size: 1.2rem;
  }
  #recruitment-flow .recruitment-flow__content {
    margin-top: 2em;
  }
  #recruitment-flow .recruitment-flow__content ul li.arrow {
    padding: 0.6em 0;
  }
  #recruitment-flow .recruitment-flow__content ul li.arrow i {
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 8px solid #FBB202;
  }
}
@media only screen and (max-width: 460px) {
  #recruitment-flow {
    padding: 2.5em 0;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  #recruitment-flow .container {
    padding: 0 2%;
  }
  #recruitment-flow .recruitment-flow__title h3 {
    font-size: 1.1rem;
  }
  #recruitment-flow .recruitment-flow__content {
    margin-top: 1.5em;
  }
  #recruitment-flow .recruitment-flow__content ul li {
    font-size: 0.8rem;
    padding: 0.8em;
  }
  #recruitment-flow .recruitment-flow__content ul li.arrow {
    padding: 0.5em 0;
  }
  #recruitment-flow .recruitment-flow__content ul li.arrow i {
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 6px solid #FBB202;
  }
}

/* ------------------------------------------------------------
 session-info
------------------------------------------------------------ */
#session-info {
  position: relative;
  z-index: 1;
  padding: 8em 0 0;
}
#session-info .container {
  max-width: 1200px;
}
#session-info .session-info__box {
  background: #7694B1;
  padding: 4em 3em 3em;
  border-radius: 24px;
}
#session-info .session-info__box .session-info__title {
  text-align: center;
  margin-bottom: 2em;
}
#session-info .session-info__box .session-info__title h3 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
#session-info .session-info__box .session-info__content {
  background: #fff;
  border-radius: 16px;
  padding: 3em;
}
#session-info .session-info__box .session-info__content .session-info__content__inner img {
  max-width: 100%;
}
#session-info .session-info__box .session-info__content .session-info__content__inner .align-center {
  margin: auto;
  text-align: center;
}
#session-info .session-info__box .session-info__content .session-info__content__inner h1 {
  font-size: 2rem;
  font-weight: bolder;
  line-height: 1.6;
}
#session-info .session-info__box .session-info__content .session-info__content__inner h2 {
  font-size: 1.8rem;
  font-weight: bolder;
  line-height: 1.6;
}
#session-info .session-info__box .session-info__content .session-info__content__inner h3 {
  font-size: 1.6rem;
  font-weight: bolder;
  line-height: 1.6;
}
#session-info .session-info__box .session-info__content .session-info__content__inner h4 {
  font-size: 1.4rem;
  font-weight: bolder;
  line-height: 1.6;
}
#session-info .session-info__box .session-info__content .session-info__content__inner h5 {
  font-size: 1.2rem;
  font-weight: bolder;
  line-height: 1.6;
}
#session-info .session-info__box .session-info__content .session-info__content__inner ul {
  list-style: disc;
  padding-left: 1.5em;
}
#session-info .session-info__box .session-info__content .session-info__content__inner ul li {
  margin-bottom: 0.3em;
}
#session-info .session-info__box .session-info__content .session-info__content__inner ul li:last-child {
  margin-bottom: 0;
}
#session-info .session-info__box .session-info__content .session-info__content__inner ol {
  list-style: decimal;
  padding-left: 1.5em;
}
#session-info .session-info__box .session-info__content .session-info__content__inner ol li {
  margin-bottom: 0.3em;
}
#session-info .session-info__box .session-info__content .session-info__content__inner ol li:last-child {
  margin-bottom: 0;
}
#session-info .session-info__box .session-info__content .session-info__content__inner p {
  margin-bottom: 1em;
}
#session-info .session-info__box .session-info__content .session-info__content__inner strong {
  font-weight: 700;
}
#session-info .session-info__box .session-info__content .session-info__content__inner i, #session-info .session-info__box .session-info__content .session-info__content__inner em {
  font-style: italic;
}
#session-info .session-info__box .session-info__content .session-info__content__inner a {
  margin: auto;
  display: inline-block;
}
@media only screen and (max-width: 1400px) {
  #session-info {
    padding: 6em 0 0;
  }
  #session-info .session-info__box {
    padding: 3.5em 2.5em 2.5em;
  }
  #session-info .session-info__box .session-info__title {
    margin-bottom: 1.8em;
  }
  #session-info .session-info__box .session-info__title h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 1024px) {
  #session-info {
    padding: 5em 0 0;
  }
  #session-info .session-info__box {
    padding: 3em 2em 2em;
  }
  #session-info .session-info__box .session-info__title {
    margin-bottom: 1.5em;
  }
  #session-info .session-info__box .session-info__title h3 {
    font-size: 1.6rem;
  }
  #session-info .session-info__box .session-info__content {
    padding: 2.4em;
  }
}
@media only screen and (max-width: 960px) {
  #session-info {
    padding: 4em 0 0;
  }
  #session-info .container {
    padding: 0 5%;
  }
  #session-info .session-info__box {
    padding: 2.5em 1.5em 1.5em;
    border-radius: 20px;
  }
  #session-info .session-info__box .session-info__title {
    margin-bottom: 1.5em;
  }
  #session-info .session-info__box .session-info__title h3 {
    font-size: 1.4rem;
  }
  #session-info .session-info__box .session-info__content {
    padding: 1.8em;
    border-radius: 12px;
  }
}
@media only screen and (max-width: 767px) {
  #session-info {
    padding: 3em 0 0;
  }
  #session-info .container {
    padding: 0 3%;
  }
  #session-info .session-info__box {
    padding: 2em 1em 1em;
    border-radius: 16px;
  }
  #session-info .session-info__box .session-info__title {
    margin-bottom: 1.2em;
  }
  #session-info .session-info__box .session-info__title h3 {
    font-size: 1.2rem;
  }
  #session-info .session-info__box .session-info__content {
    padding: 1.5em;
    border-radius: 10px;
  }
  #session-info .session-info__box .session-info__content .session-info__content__inner p {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 460px) {
  #session-info {
    padding: 2.5em 0 0;
  }
  #session-info .container {
    padding: 0;
  }
  #session-info .session-info__box {
    padding: 1.5em 0.8em 0.8em;
    border-radius: 12px;
  }
  #session-info .session-info__box .session-info__title {
    margin-bottom: 1em;
  }
  #session-info .session-info__box .session-info__title h3 {
    font-size: 1.1rem;
  }
  #session-info .session-info__box .session-info__content {
    padding: 1.2em;
    border-radius: 8px;
  }
  #session-info .session-info__box .session-info__content .session-info__content__inner p {
    font-size: 0.85rem;
    margin-bottom: 0.8em;
  }
}

/* ------------------------------------------------------------
 application
------------------------------------------------------------ */
#entry {
  position: relative;
  z-index: 1;
  padding: 4em 0 8em;
}
#entry .container {
  max-width: 1200px;
}
#entry .entry-title {
  text-align: center;
}
#entry .entry-title h3 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}
#entry .entry-conditions {
  background: #EEEEEE;
  padding: 2.4em;
  border-radius: 12px;
  margin: 3em auto 0;
}
#entry .entry-conditions dl {
  width: 70%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 1.4em;
}
#entry .entry-conditions dl:last-child {
  margin-bottom: 0;
}
#entry .entry-conditions dl dt {
  text-align: center;
  width: 120px;
  color: #1D246E;
  border: 1px solid #1D246E;
  background: #fff;
  padding: 0.2em 1em;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
}
#entry .entry-conditions dl dd {
  color: #1D246E;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
}
#entry .entry-conditions dl dd.large {
  font-size: 1.3rem;
  font-weight: 700;
}
#entry .entry-content {
  margin: 4em auto 0;
  position: relative;
}
#entry .entry-content h4 {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}
#entry .entry-content .form {
  position: relative;
  margin: 4em auto 0;
}
#entry .entry-content .form .form-tab ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
#entry .entry-content .form .form-tab ul li a {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: block;
  color: #1D246E;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  padding: 1em 4em;
  border: 1px solid #1D246E;
}
#entry .entry-content .form .form-tab ul li a:hover {
  background: #f4f5fc;
}
#entry .entry-content .form .form-tab ul li.active a {
  background: #1D246E;
  color: #fff;
}
#entry .entry-content .form .form-tab ul li.active a:hover {
  cursor: default;
  background: #1D246E;
}
#entry .entry-content .form .form-content {
  position: relative;
  top: -1px;
  background: #1D246E;
  padding: 3em;
  border-radius: 16px;
}
#entry .entry-content .form .form-content .form-content__inner {
  background: #fff;
  padding: 5em;
  border-radius: 12px;
  position: relative;
}
#entry .entry-content .form .form-content .form-content__inner .form-panel {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  width: 100%;
  transition: opacity 0.4s ease;
}
#entry .entry-content .form .form-content .form-content__inner .form-panel.is-visible {
  visibility: visible;
}
#entry .entry-content .form .form-content .form-content__inner .form-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__title {
  margin-bottom: 2em;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__title h5 {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
}
#entry .entry-content .form .form-content .form-content__inner .screen-reader-response {
  display: none !important;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form {
  position: relative;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group {
  margin-bottom: 2em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5em;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .required {
  display: inline-block;
  margin-left: 0.5em;
  color: #DD0000;
  font-size: 0.7rem;
  line-height: 1;
  border: 1px solid #DD0000;
  padding: 1px 4px;
  border-radius: 1px;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .span {
  display: inline-block;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .small {
  font-size: 0.7rem;
  line-height: 1.4;
  font-weight: 500;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-label {
  width: 240px;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-label label {
  letter-spacing: 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-label small,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-label .small {
  font-size: 0.7rem;
  line-height: 1.4;
  font-weight: 500;
  display: block;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  position: relative;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field.half {
  width: calc(50% - 1em);
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field textarea,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field select {
  width: 100%;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field textarea,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field select {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input:focus,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field textarea:focus,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field select:focus {
  box-shadow: 0 0 6px 4px rgba(29, 36, 110, 0.25);
  outline: none;
  border-color: #1D246E;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input.wpcf7-file,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field textarea.wpcf7-file,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field select.wpcf7-file {
  border: none !important;
  padding: 0.75em 0 0 !important;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field textarea {
  height: 160px;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox] + label {
  border-radius: 4px;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5em;
  min-height: 44px;
  padding: 0.65em 1.5em 0.65em 2.8em;
  line-height: 1.5;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  left: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.35em;
  border: 2px solid #333;
  background: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox] + label::after {
  content: "";
  position: absolute;
  left: 1.8em;
  top: 50%;
  width: 0.35em;
  height: 0.7em;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -60%) rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox]:hover + label {
  transform: translateY(-2px);
  border-color: #323ebf;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox]:hover + label::before {
  border-color: #1D246E;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox]:checked + label {
  background: #e0e2f7;
  font-weight: 700;
  color: #1D246E;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox]:checked + label::before {
  background: #1D246E;
  border-color: #1D246E;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox]:checked + label::after {
  transform: translate(-50%, -60%) rotate(45deg) scale(1);
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item {
  display: inline-block;
  width: 100%;
  margin-left: 0;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item.half {
  width: calc(50% - 0.5em);
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item label {
  border-radius: 4px;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5em;
  min-height: 44px;
  padding: 0.65em 1.5em 0.65em 2.8em;
  line-height: 1.5;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item label::before {
  content: "";
  position: absolute;
  left: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.35em;
  border: 2px solid #333;
  background: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item label::after {
  content: "";
  position: absolute;
  left: 1.8em;
  top: 50%;
  width: 0.35em;
  height: 0.7em;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -60%) rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item label:hover {
  transform: translateY(-2px);
  border-color: #323ebf;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item label:hover::before {
  border-color: #1D246E;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item label:has(input:checked) {
  background: #e0e2f7;
  font-weight: 700;
  color: #1D246E;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item label:has(input:checked)::before {
  background: #1D246E;
  border-color: #1D246E;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item label:has(input:checked)::after {
  transform: translate(-50%, -60%) rotate(45deg) scale(1);
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  pointer-events: none;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .wpcf7-list-item-label {
  display: inline-block;
  width: 100%;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 100%;
  appearance: none;
  padding: 0.8em 2.5em 0.8em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > span:has(select) {
  position: relative;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > span:has(select)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  border-top: 0.45em solid #333;
  transform: translateY(-50%);
  z-index: 2;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > span.half,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > span:has(.half) {
  width: calc(50% - 0.5em);
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > span:has(textarea) {
  width: 100%;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .half label,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > div label,
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > span label {
  width: 100%;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > div:not(.half) {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > div:not(.half) > div {
  display: block;
  width: 100%;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .policy {
  height: 200px;
  overflow: scroll;
  padding: 1em 1.5em;
  background: #d9e2ef;
  border-radius: 4px;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .policy h5 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .policy h6 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .policy p {
  font-size: 0.9rem;
  line-height: 1.6;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group.submit {
  justify-content: center;
  text-align: center;
  margin-top: 3em;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group.submit button, #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group.submit input[type=submit] {
  margin: auto;
  width: 220px;
  padding: 1.2em 4.8em;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
  background: #4600FF;
  cursor: pointer;
  border: none;
  transition: background 0.1s ease-out;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group.submit button:hover, #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group.submit input[type=submit]:hover {
  background: #3800cc;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .wpcf7-not-valid-tip {
  display: block;
  color: #DD0000;
  font-size: 0.875rem;
  margin-top: 0.5em;
  line-height: 1.4;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .wpcf7-not-valid {
  border-color: #DD0000 !important;
  background-color: #fff5f5;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .wpcf7-not-valid:focus {
  border-color: #DD0000 !important;
  box-shadow: 0 0 6px 4px rgba(221, 0, 0, 0.25) !important;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .wpcf7-validation-errors {
  display: block;
  color: #DD0000;
  font-size: 0.875rem;
  margin-top: 1em;
  padding: 1em;
  background-color: #fff5f5;
  border: 1px solid #DD0000;
  border-radius: 4px;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .wpcf7-mail-sent-ok {
  display: block;
  color: #006400;
  font-size: 0.875rem;
  margin-top: 1em;
  padding: 1em;
  background-color: #f0fff0;
  border: 1px solid #006400;
  border-radius: 4px;
}
#entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .wpcf7-spinner {
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
}
#entry .entry-content .form .form-content .form-content__inner .wpcf7-response-output {
  text-align: center;
  margin: 2em 0 0;
  padding: 1.5em;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}
#entry .entry-content .form .form-content .form-content__inner form.invalid .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form.unaccepted .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form.payment-required .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form[data-status=invalid] .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form[data-status=unaccepted] .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form[data-status=payment-required] .wpcf7-response-output {
  color: #DD0000;
  background-color: #fff5f5;
  border: 1px solid #DD0000;
  display: block;
}
#entry .entry-content .form .form-content .form-content__inner form.sent .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form[data-status=sent] .wpcf7-response-output {
  color: #006400;
  background-color: #f0fff0;
  border: 1px solid #006400;
  display: block;
}
#entry .entry-content .form .form-content .form-content__inner form.spam .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form[data-status=spam] .wpcf7-response-output {
  color: #856404;
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  display: block;
}
#entry .entry-content .form .form-content .form-content__inner form.failed .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form.aborted .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form[data-status=failed] .wpcf7-response-output, #entry .entry-content .form .form-content .form-content__inner form[data-status=aborted] .wpcf7-response-output {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  display: block;
}
@media only screen and (max-width: 1400px) {
  #entry {
    padding: 3em 0 6em;
  }
  #entry .entry-title h3 {
    font-size: 2rem;
  }
  #entry .entry-conditions {
    padding: 1.8em;
  }
  #entry .entry-conditions dl dt {
    width: 110px;
  }
  #entry .entry-content h4 {
    font-size: 1.6rem;
  }
  #entry .entry-content .form .form-tab ul li a {
    font-size: 1rem;
    padding: 0.9em 3.5em;
  }
  #entry .entry-content .form .form-content {
    padding: 2.5em;
  }
  #entry .entry-content .form .form-content .form-content__inner {
    padding: 4em;
  }
}
@media only screen and (max-width: 1024px) {
  #entry {
    padding: 3em 0 5em;
  }
  #entry .entry-title h3 {
    font-size: 1.8rem;
  }
  #entry .entry-conditions {
    padding: 1.5em;
  }
  #entry .entry-conditions dl {
    width: 60%;
  }
  #entry .entry-conditions dl dt {
    width: 100px;
    font-size: 0.85rem;
  }
  #entry .entry-conditions dl dd {
    font-size: 0.95rem;
  }
  #entry .entry-conditions dl dd.large {
    font-size: 1.1rem;
  }
  #entry .entry-content {
    margin-top: 3em;
  }
  #entry .entry-content h4 {
    font-size: 1.5rem;
  }
  #entry .entry-content .form {
    margin-top: 3em;
  }
  #entry .entry-content .form .form-tab ul {
    gap: 1em;
  }
  #entry .entry-content .form .form-tab ul li a {
    font-size: 0.95rem;
    padding: 0.8em 3em;
  }
  #entry .entry-content .form .form-content {
    padding: 2em;
  }
  #entry .entry-content .form .form-content .form-content__inner {
    padding: 3.5em;
  }
}
@media only screen and (max-width: 960px) {
  #entry {
    padding: 2.5em 0 4em;
  }
  #entry .container {
    padding: 0 5%;
  }
  #entry .entry-title h3 {
    font-size: 1.6rem;
  }
  #entry .entry-conditions {
    padding: 1.5em;
    margin: 2em auto 0;
  }
  #entry .entry-conditions dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
  #entry .entry-conditions dl dt {
    width: auto;
    font-size: 0.85rem;
  }
  #entry .entry-conditions dl dd {
    font-size: 0.9rem;
  }
  #entry .entry-conditions dl dd.large {
    font-size: 1rem;
  }
  #entry .entry-content {
    margin-top: 2.5em;
  }
  #entry .entry-content h4 {
    font-size: 1.4rem;
  }
  #entry .entry-content .form {
    margin-top: 2.5em;
  }
  #entry .entry-content .form .form-tab {
    margin-bottom: 1.6em;
  }
  #entry .entry-content .form .form-tab ul {
    flex-direction: column;
    gap: 0.5em;
  }
  #entry .entry-content .form .form-tab ul li {
    width: 100%;
  }
  #entry .entry-content .form .form-tab ul li a {
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 1.2em 2em;
    text-align: center;
  }
  #entry .entry-content .form .form-content {
    padding: 1.5em;
    border-radius: 12px;
  }
  #entry .entry-content .form .form-content .form-content__inner {
    padding: 2em;
    border-radius: 10px;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__title {
    margin-bottom: 1.5em;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__title h5 {
    font-size: 1.4rem;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group {
    flex-direction: column;
    gap: 0.8em;
    margin-bottom: 1.5em;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-label {
    width: 100%;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field {
    width: 100%;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input, #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field textarea {
    display: block;
    width: 100%;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field .half,
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > span:has(.half) {
    width: 100%;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox] + label {
    gap: 0.5em;
    min-height: 44px;
    padding: 0.5em 1.5em 0.5em 2em;
    line-height: 1.5;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox] + label::before {
    left: 2px;
    top: 0;
    transform: translateY(62%);
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox] + label::after {
    left: 0.8em;
    top: 0;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input[type=checkbox]:checked + label::after {
    transform: translate(-3px, 120%) rotate(45deg) scale(1);
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field > div:not(.half) {
    gap: 4px;
  }
}
@media only screen and (max-width: 767px) {
  #entry {
    padding: 2em 0 3em;
  }
  #entry .container {
    padding: 0;
  }
  #entry .entry-title h3 {
    font-size: 1.4rem;
  }
  #entry .entry-conditions {
    padding: 2em;
    margin: 1.5em auto 0;
  }
  #entry .entry-conditions dl dt {
    font-size: 0.8rem;
  }
  #entry .entry-conditions dl dd {
    font-size: 0.85rem;
  }
  #entry .entry-conditions dl dd.large {
    font-size: 0.95rem;
  }
  #entry .entry-content {
    margin-top: 2.8em;
  }
  #entry .entry-content h4 {
    font-size: 1.3rem;
  }
  #entry .entry-content .form {
    margin-top: 2em;
  }
  #entry .entry-content .form .form-tab ul li a {
    font-size: 0.85rem;
  }
  #entry .entry-content .form .form-content {
    padding: 1em;
  }
  #entry .entry-content .form .form-content .form-content__inner {
    padding: 2em 1.2em;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__title {
    margin-bottom: 1.2em;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__title h5 {
    font-size: 1.2rem;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group {
    margin-bottom: 1.6em;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-label label {
    font-size: 1rem;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field input,
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field textarea {
    padding: 0.7em 0.8em;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .form-group .item-field textarea {
    height: 120px;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .policy {
    height: 160px;
    padding: 0.8em 1em;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .policy h5 {
    font-size: 0.9rem;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .policy h6 {
    font-size: 0.8rem;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form .policy p {
    font-size: 0.8rem;
  }
  #entry .entry-content .form .form-content .form-content__inner .form-content__form.submit button {
    width: 100%;
    max-width: 280px;
    padding: 1em 3em;
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */