@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  box-sizing: border-box;
  object-fit: cover;
}

em {
  font-style: normal;
}

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

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

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

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #303030;
  --gray-light: #f5f5f5;
  --main: #58bdd1;
  --blue: #58bdd1;
  --blue-dark: #0d767e;
  --blue-navy: #3079b4;
  --blue-light: #edfbfb;
  --blue-light2: #ecfafc;
  --blue-light3: #e2f6f6;
  --blue-teal: #629ca0;
  --orange: #e29778;
  --orange-light: #f7eae6;
  --orange-bright: #ff764a;
  --gray-light: #f7f7f7;
  --gray: #ccc;
  --gradient-primary: linear-gradient(90deg, #74cbd7 0%, #6cd5ba 100%);
  --gradient-vertical: linear-gradient(180deg, #74cbd7 0%, #6cd5ba 100%);
  --gradient-overlay: linear-gradient(
    90deg,
    rgba(116, 203, 215, 0.8) 0%,
    rgba(108, 213, 186, 0.8) 100%
  );
  --leading-trim: calc((1em - 1lh) / 2);
  --zenmarugothic: "Zen Maru Gothic", sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

html {
  font-size: min(0.6944444444vw, 10px);
  margin-top: 0 !important;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: min(2.5641025641vw, 14px);
  }
}

body {
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
  position: relative;
  overflow: hidden;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

a {
  color: var(--black);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    transition: 0.5s;
  }
}

.palt {
  font-feature-settings: "palt";
}

p,
h2,
h3,
h4,
span {
  font-weight: 500;
  color: var(--black);
}

svg {
  width: 100%;
  height: 100%;
}

#wpadminbar {
  position: fixed !important;
  top: auto;
  bottom: 0;
  left: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-inline: 4rem;
  padding-block: 1.6rem;
  z-index: 101;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header {
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding-inline: 1rem;
    padding-block: 1rem;
  }
}
.header__logo {
  width: 27.9rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header__logo {
    width: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 15rem;
  }
}
.header__nav {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header__nav {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav .header__menu {
    display: none;
  }
}
.header__nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__nav-sp {
    position: fixed;
    display: block;
    top: 0;
    right: -100%;
    width: 22rem;
    height: 100vh;
    background: var(--white);
    z-index: 100;
    transition: 0.3s;
    padding-top: 7rem;
    padding-left: 2rem;
    overflow-y: auto;
  }
  .header__nav-sp.is-active {
    right: 0;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header__menu {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.header__menu-item {
  position: relative;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header__menu-item {
    font-size: 13px;
  }
}
.header__menu-item a {
  color: var(--black);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .header__menu-item a:hover {
    color: var(--main);
  }
}
.header__menu-item > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 2rem;
}
@media screen and (max-width: 768px) {
  .header__menu-item > a {
    padding-block: 1rem;
  }
}
.header__menu-item:has(.header__sub-menu) > a::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.6rem;
  background-image: url(../images/arrow-bottom.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .header__menu-item:has(.header__sub-menu) > a::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-item {
    font-weight: 400;
    letter-spacing: 0.1em;
  }
}
.header__menu-item:hover .header__sub-menu {
  display: block;
}
.header__menu-item:hover a::after {
  filter: brightness(0) saturate(100%) invert(85%) sepia(7%) saturate(4485%) hue-rotate(156deg) brightness(86%) contrast(90%);
}
.header__menu-item:hover .header__sub-menu:hover,
.header__menu-item .header__sub-menu:hover {
  display: block;
}
.header__menu .header__sub-menu {
  display: none;
  min-width: 18.5rem;
  position: absolute;
  top: 4.2rem;
  left: 0;
  padding: 3rem;
  background: var(--white);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0509803922);
  z-index: 1000;
  margin-top: 0.5rem;
}
.header__menu .header__sub-menu::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: transparent;
}
.header__menu .header__sub-menu .header__sub-menu-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.8rem 0;
  transition: background-color 0.2s ease;
}
.header__menu .header__sub-menu .header__sub-menu-item + .header__sub-menu-item {
  margin-top: 0.8rem;
}
.header__menu .header__sub-menu .header__sub-menu-item::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--main);
  border-radius: 50%;
}
.header__menu .header__sub-menu .header__sub-menu-item:hover {
  background-color: rgba(var(--main), 0.1);
  border-radius: 0.4rem;
}
@media screen and (max-width: 768px) {
  .header__menu .header__sub-menu {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    box-shadow: none;
    padding: 1rem;
  }
  .header__menu .header__sub-menu .header__sub-menu-item {
    font-size: 15px;
  }
  .header__menu .header__sub-menu .header__sub-menu-item::before {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.header__button.arrow-btn {
  width: max(19.4rem, 180px);
  padding: 1rem 1.6rem 1rem 0;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.header__button.arrow-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 0.3rem);
  height: calc(100% - 0.3rem);
  background: transparent;
  transition: 0.3s;
  z-index: 2;
  border-radius: 62.5rem;
}
.header__button.arrow-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: 0.3s;
  z-index: 1;
  border-radius: 62.5rem;
}
.header__button.arrow-btn * {
  transition: 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header__button.arrow-btn {
    width: max(14rem, 140px);
  }
}
@media screen and (max-width: 768px) {
  .header__button.arrow-btn {
    width: 15rem;
    padding: 0.5rem 1rem 0.5rem 0;
  }
}
.header__button.arrow-btn p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header__button.arrow-btn p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .header__button.arrow-btn p {
    font-size: 1.4rem;
  }
}
.header__button.arrow-btn svg {
  width: 37px;
  position: relative;
  z-index: 3;
}
.header__button.arrow-btn svg ellipse,
.header__button.arrow-btn svg path {
  fill: var(--white);
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .header__button.arrow-btn svg {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__button.arrow-btn svg {
    width: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__button.arrow-btn:hover::before {
    background: var(--white);
  }
  .header__button.arrow-btn:hover p {
    color: transparent;
    background-image: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .header__button.arrow-btn:hover .arrow-icon ellipse {
    fill: url(#ellipse_gradient);
  }
  .header__button.arrow-btn:hover .arrow-icon path {
    stroke: var(--white);
    fill: transparent;
  }
}

.overlay {
  display: none;
}
@media screen and (max-width: 768px) {
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    width: 3.6rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 101;
  }
  .hamburger .hamburger__line {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
    width: 3.6rem;
    height: 2.2rem;
  }
  .hamburger .hamburger__line span {
    width: 3.6rem;
    height: 2px;
    display: block;
    position: absolute;
    transition: 0.3s;
    left: 0;
    z-index: 30;
    background: var(--black);
  }
  .hamburger .hamburger__line span:nth-child(1) {
    top: 0rem;
  }
  .hamburger .hamburger__line span:nth-child(2) {
    top: 1rem;
  }
  .hamburger .hamburger__line span:nth-child(3) {
    bottom: 0rem;
    opacity: 1;
    animation-delay: 1s;
  }
  .hamburger.is-active .hamburger__line span:nth-child(1) {
    top: 1rem;
    transform: rotate(45deg);
  }
  .hamburger.is-active .hamburger__line span:nth-child(2) {
    top: 1rem;
    transform: rotate(-45deg);
  }
  .hamburger.is-active .hamburger__line span:nth-child(3) {
    bottom: 0rem;
    opacity: 0;
  }
}

@keyframes footerYura1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-6px) rotate(-1deg);
  }
}
@keyframes footerYura2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  30% {
    transform: translateY(-10px) rotate(-1deg);
  }
  60% {
    transform: translateY(-15px) rotate(0deg);
  }
  90% {
    transform: translateY(-8px) rotate(1deg);
  }
}
@keyframes footerYura3 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-6px) rotate(1deg);
  }
  40% {
    transform: translateY(-10px) rotate(0deg);
  }
  60% {
    transform: translateY(-8px) rotate(-1deg);
  }
  80% {
    transform: translateY(-4px) rotate(0deg);
  }
}
.footer {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 4rem;
  }
}
.footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-inline: 2rem;
  }
}
.footer__bunner {
  width: 100%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__bunner:hover {
    background: #faf8f3;
  }
  .footer__bunner:hover .footer__bunner-body {
    scale: 1.1;
  }
}
@media screen and (max-width: 768px) {
  .footer__bunner {
    /*  gap: rem(20);
    flex-direction: column; */
    display: none;
  }
}
.footer__bunner-fig {
  width: 24.3rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer__bunner-fig {
    width: 100%;
    height: 15rem;
  }
  .footer__bunner-fig img {
    height: 100%;
    object-position: center;
    transition: 0.5s;
  }
}
.footer__bunner-body {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .footer__bunner-body {
    gap: 0.8rem;
  }
}
.footer__bunner-text-title {
  font-size: max(2.4rem, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer__bunner-text-title {
    font-size: 1.8rem;
  }
}
.footer__bunner-text-text {
  font-size: max(1.5rem, 12px);
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer__bunner-text-text {
    font-size: 1.3rem;
    line-height: 180%;
  }
}
.footer__nav {
  margin-block: 8rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav-item {
  width: fit-content;
}
.footer__nav-list {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__nav-list li {
  font-size: max(1.5rem, 12px);
  font-weight: 500;
  display: flex;
  padding-left: 1.5rem;
  position: relative;
}
.footer__nav-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  height: 0.7rem;
  background: var(--main);
  border-radius: 50%;
}
.footer__nav-list li a {
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-list li a:hover {
    color: var(--main);
  }
}
.footer__nav-title {
  font-size: max(1.6rem, 13px);
  font-weight: 500;
  letter-spacing: 0.03em;
  background: var(--gradient-vertical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__body {
  padding-top: 5.6rem;
  border-top: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .footer__body {
    padding-top: 4rem;
  }
}
.footer__address {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__address {
    flex-direction: column;
  }
}
.footer__address-item {
  padding-block: 2.65rem;
}
.footer__address-item a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer__address-item {
    padding-block: 1.5rem;
  }
}
.footer__address-item:nth-child(1) {
  border-right: 1px solid var(--gray);
  padding-right: 5.6rem;
}
@media screen and (max-width: 768px) {
  .footer__address-item:nth-child(1) {
    border-right: none;
    padding-right: 0;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid var(--gray);
  }
}
.footer__address-item:nth-child(2) {
  padding-left: 5.6rem;
}
@media screen and (max-width: 768px) {
  .footer__address-item:nth-child(2) {
    padding-left: 0;
    padding-top: 2.4rem;
  }
}
.footer__address-item-title {
  font-size: 20px;
  font-weight: 500;
}
.footer__address-item-address {
  font-style: normal;
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__address-item-address p {
  font-size: 15px;
  font-weight: 500;
}
.footer__address-item .google-map,
.footer__address-item .phone {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s;
  width: fit-content;
  border-bottom: 1px solid transparent;
}
.footer__address-item .google-map a,
.footer__address-item .phone a {
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__address-item .google-map a:hover,
  .footer__address-item .phone a:hover {
    color: var(--main);
  }
}
.footer__address-item .google-map svg,
.footer__address-item .phone svg {
  width: 24px;
  margin-right: 3px;
}
.footer__address-item .phone {
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .footer__address {
    flex-direction: column;
  }
}
.footer__bottom {
  margin-block: 11rem 4.6rem;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .footer__bottom-inner {
    gap: 1.6rem;
  }
}
.footer__bottom-logo {
  width: 171px;
}
@media screen and (max-width: 768px) {
  .footer__bottom-logo {
    width: 15rem;
  }
}
.footer__bottom-link {
  width: max(19.4rem, 180px);
  padding: 1rem 1.6rem 1rem 0 !important;
  background: var(--gradient-primary) !important;
}
.footer__bottom-link p {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.footer__bottom-link svg {
  width: 37px;
}
.footer__bottom-text {
  margin-top: 2.4rem;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.footer__images {
  width: 342px;
  height: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .footer__images {
    right: initial;
    left: 0;
  }
}
.footer__images-item {
  flex-shrink: 0;
  aspect-ratio: 3/4;
  position: absolute;
}
.footer__images-item:nth-child(1) {
  left: -8px;
  bottom: 7.5rem;
  width: 100px;
  animation: footerYura1 3s ease-in-out infinite;
}
@media (768px < width < 850px) {
  .footer__images-item:nth-child(1) {
    width: 80px;
    left: 80px;
  }
}
@media screen and (max-width: 768px) {
  .footer__images-item:nth-child(1) {
    width: 6rem;
    bottom: 14rem;
    left: 2rem;
  }
}
.footer__images-item:nth-child(2) {
  right: 109px;
  bottom: 11.6rem;
  width: 150px;
  animation: footerYura2 4s ease-in-out infinite;
}
@media (768px < width < 850px) {
  .footer__images-item:nth-child(2) {
    width: 120px;
    right: 80px;
  }
}
@media screen and (max-width: 768px) {
  .footer__images-item:nth-child(2) {
    right: initial;
    left: 7.5rem;
    width: 9.5rem;
  }
}
.footer__images-item:nth-child(3) {
  width: 130px;
  right: 12px;
  bottom: 6.1rem;
  animation: footerYura3 3.5s ease-in-out infinite;
}
@media (768px < width < 850px) {
  .footer__images-item:nth-child(3) {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .footer__images-item:nth-child(3) {
    right: initial;
    left: 14rem;
    width: 9.5rem;
    bottom: 13rem;
  }
}

/* page */
.grad-title-wrapper {
  position: absolute;
  z-index: 5;
}

.grad-title {
  letter-spacing: 0.32em;
  border-radius: 0.4rem;
  line-height: 1;
  display: flex;
  position: relative;
  background: var(--gradient-vertical);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 500;
  padding: 2.2rem 2.6rem;
}
.grad-title svg {
  display: block;
  position: absolute;
  width: 5.4rem;
  height: 12.6rem;
  top: -4rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .grad-title {
    font-size: 2rem;
    padding: 1rem;
    letter-spacing: 0.15em;
  }
  .grad-title svg {
    width: 3.6rem;
    height: 8.4rem;
    top: -2rem;
  }
}

.c-w1120 {
  max-width: 112rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-w1120 {
    padding: 0 2rem;
  }
}

body.page,
body.archive,
body.wp-singular {
  margin-top: 10.8rem;
}
@media screen and (max-width: 768px) {
  body.page,
  body.archive,
  body.wp-singular {
    margin-top: 6.4rem;
  }
}

.page__header {
  padding: 4.8rem 16rem;
  background: var(--gradient-primary);
}
@media screen and (max-width: 768px) {
  .page__header {
    padding: 2.4rem 4rem;
  }
}
.page__header .page__header-title {
  font-size: 4rem;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .page__header .page__header-title {
    font-size: 3.2rem;
  }
}

.page__main {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .page__main {
    margin-top: 7.2rem;
  }
}
.page__main--contact {
  padding: 10rem 0;
  background: var(--blue-light2);
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .page__main--contact {
    padding: 6rem 0;
  }
}
.page__main--single {
  margin-top: 10rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .page__main--single {
    margin-top: 4rem;
    padding-bottom: 3.2rem;
  }
}
.page__main .page__main-col {
  display: flex;
  align-items: flex-start;
  gap: 8rem;
  padding-block: 8rem 16rem;
  max-width: 112rem;
  margin-inline: auto;
}
@media (768px < width < 980px) {
  .page__main .page__main-col {
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .page__main .page__main-col {
    padding-block: 4rem 8rem;
    padding-inline: 2rem;
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
.page__main--about .page__main-col, .page__main--history .page__main-col, .page__main--information .page__main-col, .page__main--access .page__main-col {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page__main--about .page__main-col, .page__main--history .page__main-col, .page__main--information .page__main-col, .page__main--access .page__main-col {
    padding-inline: 2rem;
  }
}

.page__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.page__content-title {
  padding: 1.85rem 2.4rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4333333333;
  letter-spacing: 0.06em;
  background: var(--gray-light);
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .page__content-title {
    padding: 1.2rem;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.page__text p {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}

.page__history-list {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page__history-list {
    margin-top: 4rem;
  }
}
.page__history-list .page__history-item {
  display: flex;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .page__history-list .page__history-item {
    flex-direction: column;
    gap: .4rem;
  }
}
.page__history-list .page__history-item-title {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4375;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  min-width: 11.8rem;
}
@media screen and (max-width: 768px) {
  .page__history-list .page__history-item-title {
    justify-content: flex-start;
    min-width: auto;
    gap: 3rem;
  }
}
.page__history-list .page__history-item-title span {
  background: var(--gradient-vertical);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page__history-list .page__history-item-text {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.4375;
}

@keyframes fill {
  0% {
    fill: url(#paint0_linear_384_1709);
  }
  100% {
    fill: var(--blue-dark);
  }
}
.sidebar {
  width: 28.9rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background: var(--white);
  padding: 4rem;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
    padding: 2rem;
  }
}
.sidebar .sidebar__menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar__menu {
    gap: 1.6rem;
  }
}
.sidebar .sidebar__menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
.sidebar .sidebar__menu li a span {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4375;
  color: #888;
  transition: 0.5s;
}
.sidebar .sidebar__menu li a svg {
  width: 1.8rem;
  height: 1.9rem;
  transition: 0.5s;
}
.sidebar .sidebar__menu li a svg rect {
  display: block;
}
.sidebar .sidebar__menu li a:hover span {
  color: var(--blue-dark);
}
.sidebar .sidebar__menu li a:hover rect {
  animation: fill forwards 0.5s;
}

.c-title {
  position: relative;
}
.c-title h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .c-title h2 {
    font-size: 2rem;
  }
}
.c-title svg {
  display: block;
  position: absolute;
  height: 54px;
  width: 126px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-title svg {
    height: 5.5rem;
    width: 6rem;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46.1rem;
  height: 7.7rem;
  border-radius: 5rem;
  appearance: none;
  border: none;
  position: relative;
  z-index: 1;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 0.3rem);
  height: calc(100% - 0.3rem);
  background: transparent;
  border-radius: 5rem;
  z-index: -1;
  transition: 0.3s;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 5rem;
  z-index: -2;
  transition: 0.3s;
}
.c-btn .c-btn__text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: var(--white);
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover .c-btn__text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .c-btn:hover::before {
    background: var(--white);
  }
}
@media screen and (max-width: 768px) {
  .c-btn {
    width: 32rem;
    height: 5.6rem;
  }
  .c-btn .c-btn__text {
    font-size: 1.6rem;
  }
}

.arrow-icon {
  width: 5.3rem;
}
@media screen and (max-width: 768px) {
  .arrow-icon {
    width: 4rem;
  }
}

.arrow-icon ellipse {
  transition: fill 0.3s;
}

.arrow-icon path {
  transition: stroke 0.3s;
}

.arrow-btn {
  background: var(--white);
  border-radius: 62.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1.8rem;
  padding-inline: 2.9rem 2rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .arrow-btn {
    padding-block: 1.4rem;
    padding-inline: 2rem 1rem;
  }
}
.arrow-btn p {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .arrow-btn p {
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .arrow-btn:hover .arrow-icon ellipse {
    fill: var(--white);
  }
  .arrow-btn:hover .arrow-icon path {
    transition: 0.3s;
  }
  .arrow-btn:hover .arrow-icon--orange path {
    stroke: var(--orange);
  }
  .arrow-btn:hover .arrow-icon--green path {
    stroke: var(--blue-teal);
  }
  .arrow-btn:hover .arrow-icon--grad ellipse {
    fill: var(--gradient-primary);
    transition: fill 0.3s;
  }
  .arrow-btn:hover .arrow-icon--grad path {
    stroke: var(--white);
    transition: stroke 0.3s;
  }
}

.toc-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .toc-btn {
    gap: 1.6rem;
  }
}
.toc-btn .toc-btn__item {
  display: flex;
  align-items: center;
  width: fit-content;
  min-width: 22.4rem;
  padding: 1.3rem 1.9rem;
  gap: 0.8rem;
  background: var(--main);
  border-radius: 6.25em;
  transition: 0.5s;
  border: 0.1rem solid var(--main);
}
@media screen and (max-width: 768px) {
  .toc-btn .toc-btn__item {
    min-width: 15rem;
    padding: 0.9rem 1.5rem;
  }
}
.toc-btn .toc-btn__item .toc-btn__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: 0.5s;
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .toc-btn .toc-btn__item .toc-btn__item-title {
    font-size: 1.4rem;
  }
}
.toc-btn .toc-btn__item .toc-btn__item-icon {
  width: 1.35rem;
  height: 0.9rem;
}
.toc-btn .toc-btn__item .toc-btn__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .toc-btn .toc-btn__item:hover {
    background: var(--white);
  }
  .toc-btn .toc-btn__item:hover .toc-btn__item-title {
    color: var(--main);
  }
  .toc-btn .toc-btn__item:hover .toc-btn__item-icon img {
    filter: brightness(0) saturate(100%) invert(78%) sepia(83%) saturate(980%) hue-rotate(159deg) brightness(88%) contrast(84%);
  }
}

.home .cta,
.single .cta,
.page-id-5 .cta {
  margin-top: 0;
}

.cta {
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .cta {
    margin-top: 6rem;
  }
}
.cta__content {
  /*  > *:nth-child(n + 3) {
    height: rem(63);
  } */
  display: grid;
  grid-template-areas: "cta cta cta cta" "staff staff volunteer volunteer";
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cta__content {
    display: flex;
    flex-direction: column;
  }
}
.cta__content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 3rem;
}
.cta__content-item--1 {
  padding-block: 6.4rem;
  grid-area: cta;
  background: url(../images/cta-bg.webp) no-repeat center center/cover;
  padding-block: 6.4rem 8rem;
  text-align: center;
}
.cta__content-item--1 h2 {
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 500;
}
.cta__content-item--1 p {
  margin-top: 1.8rem;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .cta__content-item--1 p {
    font-size: 1.4rem;
  }
}
.cta__content-item--2 {
  grid-area: staff;
  background: #f7eae6;
}
.cta__content-item--3 {
  grid-area: volunteer;
  background: #e2f6f6;
}
.cta__content-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta__content-title-label {
  font-size: 14px;
  color: var(--white);
  border-radius: 62.5rem;
  padding: 0.2rem 1.2rem;
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta__content-title-label {
    font-size: 1.2rem;
  }
}
.cta__content-title-label--orange {
  background: var(--orange);
}
.cta__content-title-label--green {
  background: var(--blue-teal);
}
.cta__content-title-text {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta__content-title-text {
    font-size: 1.8rem;
  }
}
.cta__content-title-text--orange {
  color: var(--orange);
}
.cta__content-title-text--green {
  color: var(--blue-teal);
}
.cta__content-link {
  margin-top: 2.4rem;
  width: 40.2rem;
}
@media screen and (max-width: 768px) {
  .cta__content-link {
    width: 30rem;
  }
}

body {
  overflow-x: hidden;
}

.wrapper {
  max-width: 126rem;
  padding-inline: 3rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}

.wrapper-1120 {
  max-width: 118rem;
  padding-inline: 3rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrapper-1120 {
    max-width: 100%;
  }
}

.fdc--row {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (min-width: 769px) {
  .fdc--row {
    flex-direction: row;
  }
}

.dib {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.mt3 {
  margin-top: 0.3rem;
}

.mt7 {
  margin-top: 0.7rem;
}

.mt8 {
  margin-top: 0.8rem;
}

.mt16 {
  margin-top: 1.6rem;
}

.mt24 {
  margin-top: 2.4rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.mt40 {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .mt40 {
    margin-top: 2rem;
  }
}

.mt48 {
  margin-top: 4.8rem;
}

.mt48--sp24 {
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .mt48--sp24 {
    margin-top: 2.4rem;
  }
}

.mt56 {
  margin-top: 5.6rem;
}

.mt56--sp32 {
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .mt56--sp32 {
    margin-top: 3.2rem;
  }
}

.mt64 {
  margin-top: 6.4rem;
}

.mt56--sp32 {
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .mt56--sp32 {
    margin-top: 3.2rem;
  }
}

.gradeient-primary-text {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: 3.2rem;
  line-height: 180%;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.txt-15 {
  font-size: 1.5rem;
  line-height: 1.4375;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .txt-15 {
    font-size: 1.3rem;
  }
}

.txt-16 {
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .txt-16 {
    font-size: 1.4rem;
  }
}

.bg-blue-light {
  background: var(--blue-light);
}

.breadcrumbs {
  padding-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: max(1.3rem, 12px);
  line-height: 1.4615384615;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding-top: 0.8rem;
  }
}
.breadcrumbs a {
  text-decoration: underline;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-fv {
  position: relative;
  max-width: 144rem;
  width: 100%;
  margin-inline: auto;
  height: 65.4rem;
  padding-top: 13.4rem;
  margin-top: 8.3rem;
}
@media screen and (max-width: 768px) {
  .top-fv {
    height: 50rem;
    padding-top: 22rem;
  }
}
.top-fv .top-fv__title {
  font-size: 4.8rem;
  line-height: 1.1041666667;
  letter-spacing: 0.04em;
  width: 51.8rem;
  padding-left: 13.2rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  .top-fv .top-fv__title {
    font-size: 2.4rem;
    padding-left: 3.2rem;
  }
}
.top-fv .top-fv__figure {
  position: absolute;
}
.top-fv .top-fv__figure .top-fv__figure-swiper {
  overflow: hidden;
}
.top-fv .top-fv__figure .swiper-slide {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}
.top-fv .top-fv__figure .swiper-slide::before {
  content: "";
  width: 100%;
  padding-top: 74.7474747475%;
  display: block;
}
.top-fv .top-fv__figure .swiper-slide-active img,
.top-fv .top-fv__figure .swiper-slide-duplicate-active img,
.top-fv .top-fv__figure .swiper-slide-prev img {
  animation: zoomUp 7s linear 0s normal both;
}
.top-fv .top-fv__figure .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.top-fv .top-fv__figure svg {
  position: absolute;
  width: 5.6rem;
  height: 12.7rem;
}
@media screen and (max-width: 768px) {
  .top-fv .top-fv__figure svg {
    width: 2.8rem;
    height: 6.35rem;
  }
}
.top-fv .top-fv__figure-01 {
  top: 8.4rem;
  left: 0rem;
  width: 49.5rem;
}
.top-fv .top-fv__figure-01 svg {
  right: -3.5rem;
  bottom: -4rem;
}
@media screen and (max-width: 768px) {
  .top-fv .top-fv__figure-01 {
    top: 1.6rem;
    left: 0rem;
    width: 24.75rem;
  }
  .top-fv .top-fv__figure-01 svg {
    right: -1.75rem;
    bottom: -2rem;
  }
}
.top-fv .top-fv__figure-02 {
  top: 15.4rem;
  right: 4.1rem;
  width: 27.2rem;
}
.top-fv .top-fv__figure-02 svg {
  right: -2.1rem;
  bottom: -8.6rem;
}
@media screen and (max-width: 768px) {
  .top-fv .top-fv__figure-02 {
    top: auto;
    bottom: 12rem;
    right: 2rem;
    width: 13.6rem;
  }
  .top-fv .top-fv__figure-02 svg {
    right: -1.05rem;
    bottom: -4.3rem;
  }
}
.top-fv .top-fv__figure-03 {
  bottom: 0;
  right: 30.5rem;
  width: 26rem;
}
.top-fv .top-fv__figure-03 svg {
  left: -7rem;
  bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .top-fv .top-fv__figure-03 {
    right: 15rem;
    width: 13rem;
  }
  .top-fv .top-fv__figure-03 svg {
    left: -3.5rem;
    bottom: 0.75rem;
  }
}

.top-fv__btn {
  max-width: calc(100% - 4rem);
  width: 61.6rem;
  display: flex;
  gap: 1.6rem;
  margin-top: -10rem;
  margin-left: 4rem;
  position: relative;
  z-index: 90;
}
@media screen and (max-width: 768px) {
  .top-fv__btn {
    margin-inline: auto;
    margin-top: 1.6rem;
    width: 34rem;
    flex-direction: column;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.top-about {
  margin-top: 16rem;
  padding-inline: 4rem;
  max-width: 144rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding-inline: 2rem;
    margin-top: 4rem;
  }
}
.top-about .top-about__inner {
  display: flex;
  gap: 7.6rem;
  max-width: max(124rem, 1120px);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .top-about .top-about__inner {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.top-about .top-about__body {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-about .top-about__body {
    gap: 2.4rem;
  }
}
.top-about .top-about__content p {
  font-size: max(1.7rem, 13px);
  line-height: 200%;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-about .top-about__content p {
    font-size: 1.3rem;
  }
}
.top-about .top-about__img {
  width: 60.4rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 8.9rem;
}
@media screen and (max-width: 768px) {
  .top-about .top-about__img {
    max-width: 32rem;
    width: 100%;
    margin-inline: auto;
    margin-top: 2.4rem;
    gap: 1.6rem;
  }
}
.top-about .top-about__img img {
  display: block;
}
.top-about .top-about__img img:nth-child(1) {
  width: 40.9rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .top-about .top-about__img img:nth-child(1) {
    width: 24rem;
  }
}
.top-about .top-about__img img:nth-child(2) {
  width: 60.4rem;
}
@media screen and (max-width: 768px) {
  .top-about .top-about__img img:nth-child(2) {
    width: 100%;
  }
}

.top-hagukukumi {
  max-width: 144rem;
  margin-inline: auto;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .top-hagukukumi {
    margin-top: 4rem;
  }
}
.top-hagukukumi .top-hagukukumi__inner {
  position: relative;
  max-width: 140rem;
  width: 100%;
  margin-left: auto;
  background: var(--blue-light);
  padding: 6.4rem 12rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-hagukukumi .top-hagukukumi__inner {
    max-width: calc(100% - 2rem);
    padding: 2.4rem 1rem;
    flex-direction: column;
    gap: 2.4rem;
  }
}
.top-hagukukumi .top-hagukukumi__inner > svg {
  position: absolute;
  width: 5.4rem;
  height: 12.7rem;
  top: -6.1rem;
  left: -2.1rem;
}
@media screen and (max-width: 768px) {
  .top-hagukukumi .top-hagukukumi__inner > svg {
    top: -3rem;
    left: -1rem;
    width: 3.6rem;
    height: 8.4rem;
  }
}
.top-hagukukumi .top-hagukukumi__title {
  text-align: center;
  width: fit-content;
}
.top-hagukukumi .top-hagukukumi__col {
  display: flex;
  gap: 4rem;
  width: 79rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem 6.4rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .top-hagukukumi .top-hagukukumi__col {
    width: 86rem;
  }
}
@media screen and (max-width: 768px) {
  .top-hagukukumi .top-hagukukumi__col {
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
  }
}
.top-hagukukumi .top-hagukukumi__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .top-hagukukumi .top-hagukukumi__item {
    gap: 0.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-hagukukumi .top-hagukukumi__item:hover .top-hagukukumi__item-img img {
    scale: 1.2;
  }
  .top-hagukukumi .top-hagukukumi__item:hover .top-hagukukumi__item-icon svg {
    scale: 1.2;
  }
}
.top-hagukukumi .top-hagukukumi__item-img {
  width: 19.8rem;
  border-radius: 6.25em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-hagukukumi .top-hagukukumi__item-img img {
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .top-hagukukumi .top-hagukukumi__item-img {
    width: 6.8rem;
  }
}
.top-hagukukumi .top-hagukukumi__item-title {
  font-size: max(1.8rem, 14px);
  line-height: 120%;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--main);
  width: 4em;
}
@media screen and (max-width: 768px) {
  .top-hagukukumi .top-hagukukumi__item-title {
    font-size: 1.2rem;
    width: 4em;
  }
}
.top-hagukukumi .top-hagukukumi__item-icon {
  width: 5.4rem;
  height: 4.2rem;
}
.top-hagukukumi .top-hagukukumi__item-icon svg {
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .top-hagukukumi .top-hagukukumi__item-icon {
    width: 3.5rem;
    height: 2.5rem;
  }
}

.top-life {
  margin-top: 22.4rem;
}
@media screen and (max-width: 768px) {
  .top-life {
    margin-top: 14rem;
  }
}
.top-life .gallary {
  position: relative;
  z-index: 1;
}
.top-life .gallary .gallary__inner {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.top-life .gallary .gallary-swiper {
  width: 100%;
}
.top-life .gallary .gallary-swiper-wrapper {
  width: 100%;
}
.top-life .gallary .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
.top-life .gallary .gallary__item {
  width: 50rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-life .gallary .gallary__item {
    width: 18rem;
  }
}
.top-life__body {
  margin-top: -14.3rem;
  background: #ecfbfc;
  padding-top: 22.3rem;
  padding-bottom: 13.4rem;
}
@media screen and (max-width: 768px) {
  .top-life__body {
    padding-top: 10rem;
    padding-bottom: 13rem;
    margin-top: -5rem;
    padding-inline: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-life__body-inner {
    flex-direction: column;
  }
}
.top-life__inner {
  position: relative;
  display: flex;
  max-width: 1440px;
  margin-left: auto;
  gap: 17rem;
  justify-content: flex-end;
}
@media (min-width: 1441px) {
  .top-life__inner {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-life__inner {
    gap: 10rem;
  }
}
.top-life__textcontent {
  width: fit-content;
  max-width: 540px;
}
.top-life__textcontent h3 {
  font-size: 3.2rem;
  line-height: 160%;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.1em;
}
.top-life__textcontent p {
  margin-top: 6.4rem;
  font-size: max(1.6rem, 13px);
  line-height: 160%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .top-life__textcontent h3 {
    font-size: 2.4rem;
  }
  .top-life__textcontent p {
    margin-top: 3.2rem;
    font-size: 1.4rem;
  }
}
.top-life__title {
  margin-right: 8rem;
  margin-top: -11rem;
}
.top-life__title svg {
  right: -4rem;
}
@media screen and (max-width: 768px) {
  .top-life__title {
    margin-right: 4rem;
    margin-top: -8rem;
  }
  .top-life__title svg {
    right: -2rem;
  }
}
.top-life__links {
  position: relative;
  align-self: flex-end;
  z-index: 1;
}
.top-life__links .linkdpath {
  animation: rotation 30s linear infinite;
  position: absolute;
  left: 6.4rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .top-life__links .linkdpath {
    left: 0rem;
    width: 80%;
    margin-left: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .top-life__links {
    align-self: center;
  }
}
.top-life__link {
  background: linear-gradient(90deg, rgba(116, 203, 215, 0.8) 0%, rgba(108, 213, 186, 0.8) 100%);
  backdrop-filter: blur(3px);
  border-radius: 2rem 0 0 2rem;
  width: 57.2rem;
  justify-content: center;
  gap: 5.6rem;
  padding-inline: 2rem;
  height: 15rem;
  align-items: center;
  transition: background 0.3s ease;
}
@media (min-width: 1441px) {
  .top-life__link {
    border-radius: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-life__link {
    border-radius: 2rem;
    width: 33rem;
    height: 10rem;
    padding-inline: 1rem;
    gap: 2rem;
  }
  .top-life__link p {
    font-size: 1.6rem;
  }
}
.top-life__link p {
  color: var(--white);
  font-size: 20px;
  width: auto;
  flex: auto;
  font-weight: 700;
  flex-grow: 0;
}
@media (hover: hover) and (pointer: fine) {
  .top-life__link:hover {
    background: linear-gradient(90deg, rgba(88, 189, 209, 0.8) 0%, rgba(88, 189, 209, 0.8) 100%);
  }
  .top-life__link:hover .arrow-icon ellipse {
    fill: url(#paint0_linear_301_1262);
    transition: 0.5s;
  }
}

@keyframes rotation {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
.top-can {
  margin-block: 10rem 18rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .top-can {
    padding-inline: 2rem;
    margin-block: 5rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .top-can .top-can__title {
    margin-left: 1rem;
  }
}
.top-can .top-can__title svg {
  top: -21px;
  left: -66px;
}
@media screen and (max-width: 768px) {
  .top-can .top-can__title svg {
    top: -2rem;
    left: -2rem;
  }
}
.top-can__inner {
  max-width: 1120px;
  margin-inline: auto;
}
.top-can__list {
  margin-top: 5.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 514px));
  gap: 5.6rem 6rem;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-can__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
    margin-inline: auto;
    gap: 2rem;
  }
}
.top-can__item h3 {
  margin-top: 3rem;
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .top-can__item h3 {
    font-size: min(1.8rem, 20px);
  }
}
.top-can__item h3 small {
  font-size: max(1.8rem, 14px);
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 800px) {
  .top-can__item h3 small {
    display: block;
    margin-top: 1.5rem;
    font-size: min(1.4rem, 16px);
  }
}
.top-can__item p {
  font-size: max(1.6rem, 13px);
  letter-spacing: 0.05em;
  margin-top: 2.4rem;
  margin-bottom: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top-can__item p {
    font-size: min(1.4rem, 16px);
  }
}

.top-news {
  position: relative;
  background: #ECFAFC;
  padding: 12rem 10rem;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 4rem 0rem;
  }
}
.top-news .grad-title-wrapper {
  top: 0;
  left: 0;
}
.top-news .top-news__inner {
  width: 100%;
}
.top-news .top-news__title {
  margin-left: 4rem;
  margin-top: -5.5rem;
}
@media screen and (max-width: 768px) {
  .top-news .top-news__title {
    margin-left: 1rem;
    margin-top: -8rem;
  }
}
.top-news .top-news__title svg {
  right: -4rem;
}
@media screen and (min-width: 769px) {
  .top-news .top-news__content {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.top-news .top-news__content .archive__content-item .archive__content-item-img img {
  filter: none;
}
@media screen and (min-width: 769px) {
  .top-news .top-news__content .archive__content-item:nth-child(1) {
    grid-area: 1/1/2/4;
  }
  .top-news .top-news__content .archive__content-item:nth-child(1) a {
    flex-direction: row;
  }
  .top-news .top-news__content .archive__content-item:nth-child(1) .archive__content-item-img {
    width: 50rem;
    flex-shrink: 0;
  }
  .top-news .top-news__content .archive__content-item:nth-child(1) .archive__content-item-body {
    flex: 1;
  }
  .top-news .top-news__content .archive__content-item:nth-child(1) .archive__content-item-meta {
    justify-content: flex-start;
  }
  .top-news .top-news__content .archive__content-item:nth-child(2) {
    grid-area: 2/1/3/2;
  }
  .top-news .top-news__content .archive__content-item:nth-child(3) {
    grid-area: 2/2/3/3;
  }
  .top-news .top-news__content .archive__content-item:nth-child(4) {
    grid-area: 2/3/3/4;
  }
}
.top-news .top-news__btn {
  margin-top: 10rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-news .top-news__btn {
    margin-top: 3.2rem;
  }
}

.wpcf7-form {
  padding: 10rem 16rem;
  background: var(--white);
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .wpcf7-form {
    padding: 3.2rem 2.4rem;
  }
}

.contact__form .contact__form-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact__form .contact__form-item + .contact__form-item {
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-item + .contact__form-item {
    margin-top: 2.4rem;
  }
}
.contact__form .contact__form-item-label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-item-label {
    gap: 0.8rem;
    font-size: 1.4rem;
  }
}
.contact__form .contact__form-item-label .hissu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--white);
  background: #EB4920;
  border-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-item-label .hissu {
    font-size: 0.9rem;
  }
}
.contact__form .contact__form-item-input .wpcf7-form-control-wrap {
  width: 100%;
}
.contact__form .contact__form-item-input input[type=text],
.contact__form .contact__form-item-input input[type=tel],
.contact__form .contact__form-item-input input[type=email],
.contact__form .contact__form-item-input select,
.contact__form .contact__form-item-input textarea {
  width: 100%;
  padding: 0.46rem 1.6rem;
  background-color: #F6F8FA;
  border: 1px solid #CCCCCC;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-item-input input[type=text],
  .contact__form .contact__form-item-input input[type=tel],
  .contact__form .contact__form-item-input input[type=email],
  .contact__form .contact__form-item-input select,
  .contact__form .contact__form-item-input textarea {
    padding: 0.8rem 1.6rem;
  }
}
.contact__form .contact__form-item-input input[type=text]::placeholder,
.contact__form .contact__form-item-input input[type=tel]::placeholder,
.contact__form .contact__form-item-input input[type=email]::placeholder,
.contact__form .contact__form-item-input select::placeholder,
.contact__form .contact__form-item-input textarea::placeholder {
  color: #BBBBBB;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-item-input input[type=text]::placeholder,
  .contact__form .contact__form-item-input input[type=tel]::placeholder,
  .contact__form .contact__form-item-input input[type=email]::placeholder,
  .contact__form .contact__form-item-input select::placeholder,
  .contact__form .contact__form-item-input textarea::placeholder {
    font-size: 1.4rem;
  }
}
.contact__form .contact__form-item-input textarea {
  height: 28rem;
  resize: none;
}
@media screen and (max-width: 768px) {
  .contact__form .contact__form-item-input textarea {
    height: 21.2rem;
  }
}

.active-policy-check {
  margin-top: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .active-policy-check {
    margin-top: 2.4rem;
  }
}
.active-policy-check .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.active-policy-check .wpcf7-list-item input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #CCCCCC;
}
.active-policy-check .wpcf7-list-item-label {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .active-policy-check .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
}
.active-policy-check .wpcf7-list-item-label a {
  color: #3E6AC1;
}

.contact__form-submit {
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .contact__form-submit {
    margin-top: 2.4rem;
  }
}
.contact__form-submit .wpcf7-spinner {
  display: none;
}
.contact__form-submit .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__form-submit input {
  background: linear-gradient(90deg, #74CBD7 0%, #6CD5BA 100%);
  width: 46.1rem;
  height: 7.7rem;
  border-radius: 5rem;
  appearance: none;
  border: none;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .contact__form-submit input {
    width: 32rem;
    height: 5.6rem;
    font-size: 1.6rem;
  }
}

.page--about .page__main-about-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 3rem;
}
@media screen and (max-width: 768px) {
  .page--about .page__main-about-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page--about .page__main-about-list li {
  margin-top: 4rem;
  min-height: 15.5rem;
  padding-top: 8rem;
  padding-bottom: 3rem;
  background: #f5f5f5;
  border-radius: 1rem;
  padding-inline: 0.9rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page--about .page__main-about-list li {
    min-height: 12rem;
  }
}
.page--about .page__main-about-list li p {
  font-size: max(1.8rem, 12px);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page--about .page__main-about-list li p {
    font-size: 1.6rem;
  }
}
.page--about .page__main-about-list li img {
  display: block;
  position: absolute;
  top: -4rem;
  width: 10.7rem;
  left: 50%;
  transform: translateX(-50%);
}
.page--about .page__main-about-content {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .page--about .page__main-about-content {
    gap: 4rem;
  }
}
.page--about .page__main-about-content img {
  width: max(14.6rem, 132px);
  display: block;
  margin-left: auto;
}
.page--about .page__main-about-content-body h2 {
  font-size: max(3.2rem, 25px);
  font-weight: 500;
  color: var(--main);
  padding-bottom: 1.6rem;
  border-bottom: 2px dashed var(--main);
}
@media screen and (max-width: 768px) {
  .page--about .page__main-about-content-body h2 {
    font-size: 2rem;
  }
}
.page--about .page__main-about-content-body p {
  padding-top: 1.6rem;
  font-size: max(1.6rem, 14px);
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page--about .page__main-about-content-body p {
    font-size: 1.4rem;
  }
}

.page--information .page__main-body {
  width: 100%;
  flex: 1;
}
.page--information .page__main-information-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.6rem;
}
.page--information .page__main-information-list li {
  width: 100%;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page--information .page__main-information-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.page--information .page__main-information-list li p {
  font-size: max(1.6rem, 13px);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.03em;
}
.page--information .page__main-information-list li a {
  font-size: max(1.4rem, 13px);
  color: var(--main);
  font-weight: 500;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  border: 1px solid var(--main);
  border-radius: 62.5rem;
  padding: 0.3rem 1.4rem;
}
.page--information .page__main-information-list li a svg {
  width: max(2.4rem, 16px);
  height: max(2.4rem, 16px);
}

.product__box {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  .product__box {
    margin-top: 5rem;
    gap: 2.4rem;
  }
}
.product__title {
  padding: 1.85rem 2.4rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4333333333;
  letter-spacing: 0.06em;
  background: var(--gray-light);
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .product__title {
    padding: 1.2rem 2rem;
    font-size: 2rem;
    line-height: 1.15;
  }
}
.product__showcase {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .product__showcase {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.product__showcase-img {
  position: relative;
  width: 50.7rem;
  flex-shrink: 0;
  border-radius: 2rem;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 768px) {
  .product__showcase-img {
    width: 100%;
  }
}
.product__showcase-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 72.9783037475%;
  background: var(--gray-light);
}
.product__showcase-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__showcase-body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .product__showcase-body {
    gap: 1.6rem;
    padding-top: 0rem;
  }
}
.product__showcase-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.0454545455;
}
@media screen and (max-width: 768px) {
  .product__showcase-title {
    font-size: 1.8rem;
    line-height: 1.2777777778;
  }
}
.product__showcase-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .product__showcase-text {
    font-size: 1.4rem;
  }
}
.product__showcase-text--small {
  font-size: 1.4rem;
  line-height: 1.6428571429;
}
@media screen and (max-width: 768px) {
  .product__showcase-text--small {
    font-size: 1.2rem;
  }
}
.product__showcase-box {
  display: flex;
  gap: 3rem;
  padding: 2rem 3rem;
  background: var(--blue-light);
}
@media screen and (max-width: 768px) {
  .product__showcase-box {
    gap: 1.6rem;
    padding: 1.6rem 2rem;
  }
}
.product__showcase-box-head {
  height: 7.1em;
  width: 2.9em;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.4375;
  border-radius: 6.25em;
  background: var(--main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .product__showcase-box-head {
    font-size: 1.4rem;
    width: 1.8em;
    height: 4.8em;
  }
}
.product__showcase-box-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 0.8rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .product__showcase-box-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product__showcase-box-list li {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5333333333;
}
@media screen and (max-width: 768px) {
  .product__showcase-box-list li {
    font-size: 1.4rem;
  }
}
.product__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.4rem;
}
@media screen and (max-width: 768px) {
  .product__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
.product__list-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.product__list-item-img {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  border-radius: 2rem;
  overflow: hidden;
  display: block;
}
.product__list-item-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 61.7283950617%;
  background: var(--gray-light);
}
.product__list-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__list-item-body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.product__list-item-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2777777778;
}
.product__list-item-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4375;
}

.recruit__content {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin-top: 5.6rem;
}
@media screen and (max-width: 768px) {
  .recruit__content {
    gap: 4rem;
    margin-top: 3.2rem;
  }
}

.recruit__content-box {
  display: flex;
  flex-direction: column;
}
.recruit__content-box .copy {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4333333333;
  letter-spacing: 0.06em;
  color: var(--main);
  padding-block: 1.85rem;
}
@media screen and (max-width: 768px) {
  .recruit__content-box .copy {
    font-size: 1.8rem;
    padding-block: 0.4rem;
  }
}
.recruit__content-box .txt-15 {
  line-height: 1.8;
}
.recruit__content-box p strong {
  color: var(--main);
}
.recruit__content-box h3 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.0454545455;
  padding-block: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
}
.recruit__content-box h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.3rem;
  height: 100%;
  background: var(--main);
}
@media screen and (max-width: 768px) {
  .recruit__content-box h3 {
    font-size: 1.8rem;
  }
}
.recruit__content-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.recruit__content-box ul li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .recruit__content-box ul li {
    font-size: 1.4rem;
  }
}

.recruit__content-box-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.recruit__content-box-btn {
  width: 26.2rem;
  height: 5.4rem;
  border-radius: 6.25em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--white);
  position: relative;
}
.recruit__content-box-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 6.25em;
  z-index: 1;
}
.recruit__content-box-btn::after {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  background: transparent;
  border-radius: 6.25em;
  z-index: 2;
  transition: all 0.3s;
}
.recruit__content-box-btn .recruit__content-box-btn-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  position: relative;
  z-index: 3;
}
.recruit__content-box-btn .recruit__content-box-btn-text span {
  font-size: 1.2rem;
  color: var(--white);
  transition: all 0.3s;
}
.recruit__content-box-btn .recruit__content-box-btn-icon {
  width: 2.6rem;
  height: 2.6rem;
  transition: all 0.3s;
  position: relative;
  z-index: 3;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(3160%) hue-rotate(17deg) brightness(111%) contrast(105%);
}
@media (hover: hover) and (pointer: fine) {
  .recruit__content-box-btn:hover::after {
    background: var(--white);
  }
  .recruit__content-box-btn:hover .recruit__content-box-btn-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .recruit__content-box-btn:hover .recruit__content-box-btn-icon {
    filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(432%) hue-rotate(98deg) brightness(87%) contrast(90%);
  }
}

.recruit__content-box-blue {
  padding: 2rem;
  background: var(--blue-light);
  border-radius: 2rem;
  max-width: 862px;
}
.recruit__content-box-blue h4 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--main);
}
.recruit__content-box-blue ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.recruit__content-box-blue ul li {
  color: var(--black);
  font-weight: 400;
  font-size: 1.5rem;
}
.recruit__content-box-blue p,
.recruit__content-box-blue li {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
}

.page--access .page__main-body {
  flex: 1;
}
.page--access .access__content {
  width: 100%;
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .page--access .access__content {
    margin-top: 4rem;
    gap: 6rem;
  }
}
.page--access .access__box-content {
  margin-top: 3.2rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page--access .access__box-content {
    margin-top: 2rem;
  }
}
.page--access .access__box-content-img {
  width: 30rem;
}
@media screen and (max-width: 768px) {
  .page--access .access__box-content-img {
    width: 100%;
  }
}
.page--access .access__box-content-body {
  width: calc(100% - 30rem);
  padding-left: 2.4rem;
}
@media screen and (max-width: 768px) {
  .page--access .access__box-content-body {
    width: 100%;
    padding-left: 0;
  }
}
.page--access .access__box-content-body address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media screen and (max-width: 768px) {
  .page--access .access__box-content-body address {
    margin-top: 2rem;
  }
}
.page--access .access__box-content-body address p {
  display: flex;
  font-size: 1.6rem;
}
.page--access .access__box-content-body address a:hover {
  text-decoration: underline;
  transition: 0.3s;
}
.page--access .access__box-content-body address svg {
  width: 2.4rem;
  height: 2.4rem;
}
.page--access .access__box-content-body-info {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}
.page--access .access__box-content-body-map-link {
  margin-top: 2.4rem;
  display: flex;
  border-radius: 62.5rem;
  border: 1px solid var(--blue-dark);
  padding: 0.8rem 1.6rem;
  width: fit-content;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
}
.page--access .access__box-content-body-map-link svg {
  width: 5px;
  height: 10px;
}
.page--access .access__box-content-body-map-link svg path {
  stroke: var(--blue-dark);
  transition: 0.3s;
}
.page--access .access__box-content-body-map-link:hover {
  background: var(--blue-dark);
  transition: 0.3s;
  color: var(--white);
}
.page--access .access__box-content-body-map-link:hover svg path {
  stroke: var(--white);
}
.page--access .access__box-content-map {
  margin-top: 3.2rem;
  border-radius: 2rem;
  width: 100%;
  height: 32rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page--access .access__box-content-map {
    height: 20rem;
  }
}
.page--access .access__box-content-map iframe {
  width: 100%;
  height: 100%;
}

.category__content {
  display: flex;
  align-items: center;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .category__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.category__content .category__content-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--main);
}
.category__content ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.category__content li a {
  width: fit-content;
  border: 0.1rem solid var(--main);
  border-radius: 6.25em;
  background: transparent;
  color: var(--main);
  font-size: 1.4rem;
  line-height: 2.1428571429;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.1428571429em 1.1428571429em;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .category__content li a {
    font-size: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .category__content li a:hover {
    background: var(--main);
    color: var(--white);
  }
}
.category__content li a.active {
  background: var(--main);
  color: var(--white);
}

.page__main .archive__content {
  margin-top: 12rem;
}
@media screen and (max-width: 768px) {
  .page__main .archive__content {
    margin-top: 4rem;
  }
}

.archive__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.4rem;
}
@media screen and (max-width: 768px) {
  .archive__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.archive__content .archive__content-item a {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .archive__content .archive__content-item a {
    gap: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .archive__content .archive__content-item a:hover .archive__content-item-img img {
    scale: 1.2;
  }
  .archive__content .archive__content-item a:hover .archive__content-item-title {
    color: var(--main);
  }
}
.archive__content .archive__content-item .archive__content-item-img {
  position: relative;
  width: 100%;
  border-radius: 2rem;
  filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.1));
  overflow: hidden;
}
.archive__content .archive__content-item .archive__content-item-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 61.7283950617%;
}
.archive__content .archive__content-item .archive__content-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .archive__content .archive__content-item .archive__content-item-img img {
    border-radius: 1rem;
  }
}
.archive__content .archive__content-item .archive__content-item-body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .archive__content .archive__content-item .archive__content-item-body {
    gap: 0.6rem;
  }
}
.archive__content .archive__content-item .archive__content-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.archive__content .archive__content-item .archive__content-item-meta-date {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.05em;
  color: #afafaf;
}
@media screen and (max-width: 768px) {
  .archive__content .archive__content-item .archive__content-item-meta-date {
    font-size: 1.4rem;
  }
}
.archive__content .archive__content-item .archive__content-item-meta-category {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--main);
  padding: 0rem 0.75em;
  border-radius: 6.25em;
}
@media screen and (max-width: 768px) {
  .archive__content .archive__content-item .archive__content-item-meta-category {
    font-size: 1.2rem;
  }
}
.archive__content .archive__content-item .archive__content-item-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2777777778;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .archive__content .archive__content-item .archive__content-item-title {
    font-size: 1.6rem;
  }
}

.archive .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12rem;
  gap: 1.2rem;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .archive .wp-pagenavi {
    margin-top: 4rem;
    gap: 0.6rem;
  }
}
.archive .wp-pagenavi .current,
.archive .wp-pagenavi .page {
  border: none;
  border: 0.1rem solid var(--main) !important;
  border-radius: 6.25em;
  background: var(--main);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 2.2222222222em;
  height: 2.2222222222em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .archive .wp-pagenavi .current,
  .archive .wp-pagenavi .page {
    font-size: 1.4rem;
  }
}
.archive .wp-pagenavi .current {
  background: transparent;
  color: var(--black);
}
.archive .wp-pagenavi .nextpostslink,
.archive .wp-pagenavi .previouspostslink {
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 400;
  letter-spacing: 0;
  color: #685D57;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .archive .wp-pagenavi .nextpostslink,
  .archive .wp-pagenavi .previouspostslink {
    font-size: 1.4rem;
  }
}
.archive .wp-pagenavi .nextpostslink::before,
.archive .wp-pagenavi .previouspostslink::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1.4rem;
  background: url(../images/pagenation-arrow.svg) no-repeat center center/contain;
}
.archive .wp-pagenavi .previouspostslink {
  right: calc(100% + 4rem);
}
@media screen and (max-width: 768px) {
  .archive .wp-pagenavi .previouspostslink {
    right: calc(100% + 2rem);
  }
}
.archive .wp-pagenavi .previouspostslink::before {
  scale: -1 -1;
}
.archive .wp-pagenavi .nextpostslink {
  left: calc(100% + 4rem);
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .archive .wp-pagenavi .nextpostslink {
    left: calc(100% + 2rem);
  }
}

.single__content {
  padding: 8rem 10rem;
  background: var(--white);
  border-radius: 4rem;
  width: calc(100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .single__content {
    padding: 2rem 2rem;
    border-radius: 2rem;
  }
}
.single__content .sinle__meta {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.single__content .sinle__meta .sinle__meta-date {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__meta .sinle__meta-date {
    font-size: 1.6rem;
  }
}
.single__content .sinle__meta .sinle__meta-update {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__meta .sinle__meta-update {
    font-size: 1.4rem;
  }
}
.single__content .sinle__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4333333333;
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__title {
    font-size: 2rem;
  }
}
.single__content .sinle__meta-category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__meta-category {
    gap: 1rem;
    margin-top: 1rem;
  }
}
.single__content .sinle__meta-category a {
  width: fit-content;
  border: 0.1rem solid var(--main);
  border-radius: 6.25em;
  background: var(--main);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 2.1428571429;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.1428571429em 1.1428571429em;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__meta-category a {
    font-size: 1.2rem;
  }
}
.single__content .sinle__meta-thumbnail {
  margin-top: 4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__meta-thumbnail {
    margin-top: 2rem;
  }
}
.single__content .sinle__body {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body {
    margin-top: 2rem;
  }
}
.single__content .sinle__body p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body p {
    font-size: 1.4rem;
  }
}
.single__content .sinle__body p + h2 {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body p + h2 {
    margin-top: 4rem;
  }
}
.single__content .sinle__body p + h3 {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body p + h3 {
    margin-top: 2rem;
  }
}
.single__content .sinle__body p + figure {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body p + figure {
    margin-top: 1.2rem;
  }
}
.single__content .sinle__body p + figure:has(table) {
  margin-top: 4rem;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body p + figure:has(table) {
    margin-top: 2rem;
  }
}
.single__content .sinle__body h2 {
  background: #ECFAFC;
  color: var(--main);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding: 0.8rem 2.4rem;
  border-radius: 6.25em;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body h2 {
    font-size: 1.6rem;
  }
}
.single__content .sinle__body h2 + p {
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body h2 + p {
    margin-top: 1.6rem;
  }
}
.single__content .sinle__body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4444444444;
  padding: 0.2rem 2.4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body h3 {
    font-size: 1.6rem;
  }
}
.single__content .sinle__body h3::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 100%;
  background: var(--main);
  position: absolute;
  top: 0;
  left: 0;
}
.single__content .sinle__body h3 + p {
  margin-top: 2.4rem;
}
.single__content .sinle__body figure {
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body figure {
    padding-bottom: 2rem;
  }
}
.single__content .sinle__body figure + h3 {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body figure + h3 {
    margin-top: 2rem;
  }
}
.single__content .sinle__body ul,
.single__content .sinle__body ol {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body ul,
  .single__content .sinle__body ol {
    margin-top: 2rem;
    padding: 1rem;
  }
}
.single__content .sinle__body ul li,
.single__content .sinle__body ol li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body ul li,
  .single__content .sinle__body ol li {
    font-size: 1.4rem;
  }
}
.single__content .sinle__body ul {
  background: #ECFAFC;
}
.single__content .sinle__body ul li::before {
  content: "・";
}
.single__content .sinle__body ol {
  border: 0.1rem solid var(--main);
  counter-reset: number 0;
}
.single__content .sinle__body ol li::before {
  content: counter(number) ". ";
  counter-increment: number;
}
.single__content .sinle__body a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #1558D6;
  text-decoration: underline;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body a {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}
.single__content .sinle__body table {
  border-color: var(--white);
}
.single__content .sinle__body table * {
  border-color: var(--white);
}
.single__content .sinle__body table tr td {
  background: #ECFAFC;
  width: calc(100% - 20rem);
  padding: 2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body table tr td {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.single__content .sinle__body table tr td:first-child {
  background: var(--main);
  color: var(--white);
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .single__content .sinle__body table tr td:first-child {
    width: 10rem;
  }
}

.sinle__btn {
  margin-top: 12rem;
  margin-inline: auto;
}

.page__main--life .toc-btn {
  justify-content: center;
}

.life__content {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .life__content {
    margin-top: 4rem;
    gap: 4rem;
  }
}
.life__content .life__box .life__box-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-title {
    font-size: 2rem;
  }
}
.life__content .life__box .life__box-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5.6rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-link {
    gap: 2.4rem;
    margin-top: 2.4rem;
  }
}
.life__content .life__box .life__box-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  position: relative;
  width: fit-content;
  padding-bottom: 0.2rem;
  padding-inline: 0.4rem;
  border-bottom: 0.2rem solid var(--main);
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-link a {
    gap: 1.6rem;
  }
}
.life__content .life__box .life__box-link .life__box-link-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.life__content .life__box .life__box-link .life__box-link-icon {
  width: 1.2rem;
  height: 0.6rem;
  filter: brightness(0) saturate(100%) invert(73%) sepia(58%) saturate(507%) hue-rotate(152deg) brightness(89%) contrast(82%);
}
.life__content .life__box .life__box-item {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  padding: 4rem 8rem;
  background: #EDFBFB;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-item {
    margin-top: 2.4rem;
    padding: 2.4rem 2rem;
  }
}
.life__content .life__box .life__box-item .life__box-item-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-item .life__box-item-title {
    font-size: 2rem;
    line-height: 1.15;
  }
}
.life__content .life__box .life__box-item .life__box-item-title + .life__box-item-subtitle {
  margin-top: 7.4rem;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-item .life__box-item-title + .life__box-item-subtitle {
    margin-top: 2.4rem;
  }
}
.life__content .life__box .life__box-item .life__box-item-subtitle {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-item .life__box-item-subtitle {
    font-size: 2rem;
  }
}
.life__content .life__box .life__box-item .life__box-item-subtitle--morning {
  color: #FF764A;
}
.life__content .life__box .life__box-item .life__box-item-subtitle--afternoon {
  color: #3079B4;
}
.life__content .life__box .life__box-item .life__box-item-img {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-item .life__box-item-img {
    margin-top: 2.4rem;
  }
}
.life__content .life__box .life__box-item .life__box-item-content {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__box-item .life__box-item-content {
    margin-top: 2.4rem;
    gap: 1.2rem;
  }
}
.life__content .life__box .life__box-item .life__box-item-content p {
  font-size: 1.5rem;
  line-height: 1.65;
  font-weight: 400;
}
.life__content .life__box .life__box-item .life__box-item-content p b {
  font-size: 1.6rem;
  font-weight: 700;
}
.life__content .life__box .life__dl {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  padding: 8rem 12rem;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__dl {
    margin-top: 2.4rem;
    padding: 2.4rem 2rem;
  }
}
.life__content .life__box .life__dl--week {
  background: #EDFBFB;
}
.life__content .life__box .life__dl--week .life__dl-item dt {
  background: #58BDD1;
}
.life__content .life__box .life__dl--week .life__dl-item dd h3 {
  color: #58BDD1;
}
.life__content .life__box .life__dl--year {
  background: #F7EAE6;
}
.life__content .life__box .life__dl--year .life__dl-item {
  gap: 1rem !important;
}
.life__content .life__box .life__dl--year .life__dl-item dt {
  background: #E29778;
}
.life__content .life__box .life__dl--year .life__dl-item dt:empty {
  background: transparent;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__dl--year .life__dl-item dt {
    width: 3rem !important;
    height: 3rem !important;
    font-size: 1.2rem !important;
  }
}
.life__content .life__box .life__dl--year .life__dl-item dd {
  text-align: center;
  flex: 1;
}
.life__content .life__box .life__dl--year .life__dl-item dd h3 {
  color: #E29778;
}
.life__content .life__box .life__dl--year .life__dl-item dd h3.life__dl-item-title {
  font-size: 2.4rem;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__dl--year .life__dl-item dd h3 {
    font-size: 1.2rem !important;
  }
}
.life__content .life__box .life__dl .life__dl-item {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #CADCD8;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__dl .life__dl-item {
    gap: 2.4rem;
    padding-bottom: 1.6rem;
  }
}
.life__content .life__box .life__dl .life__dl-item + .life__dl-item {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__dl .life__dl-item + .life__dl-item {
    margin-top: 1.6rem;
  }
}
.life__content .life__box .life__dl .life__dl-item:has(dd > p) {
  align-items: flex-start;
}
.life__content .life__box .life__dl .life__dl-item dt {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__dl .life__dl-item dt {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
}
.life__content .life__box .life__dl .life__dl-item dd {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.life__content .life__box .life__dl .life__dl-item dd h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__dl .life__dl-item dd h3 {
    font-size: 1.6rem;
  }
}
.life__content .life__box .life__dl .life__dl-item dd p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .life__content .life__box .life__dl .life__dl-item dd p {
    font-size: 1.4rem;
  }
}

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