@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
}

body {
  overflow-x: hidden;
  font-family: var(--font-family-meiryo);
  font-size: 1.6rem;
}

ul {
  padding-left: 0;
}

p {
  word-break: normal;
  line-break: loose;
  white-space: normal;
  overflow-wrap: break-word;
}

.flexBox {
  display: flex;
  flex-wrap: wrap;
}

.justify-btw {
  justify-content: space-between;
}

.justify-ctr {
  justify-content: center;
}

.justify-even {
  justify-content: space-evenly;
}

.align-ctr {
  align-items: center;
}

a:hover {
  opacity: 0.5;
}

:root {
  --main-color: #3B9A9C;
  --accent-color1: #B5DE63;
  --accent-color2: #ED755C;
  --base-color1: #D8FFDD;
  --base-color2: #E7FFB5;
  --base-color3: #D3FBFF;
  --base-color4: #EBDCC5;
  --base-color5: #DDC9AB;
  --base-color6: #fffaf4;
  --font-family-meiryo: "メイリオ", "Meiryo", sans-serif;
  --font-family-mincho: "Shippori Mincho", serif;
  --font-family-pop: "Mochiy Pop One", sans-serif;
  --font-family-caveat: "Caveat", cursive;
  --font-family-rampart: "Rampart One", sans-serif;
  --font-size-pc-heading-h3: 32px;
  --font-size-pc-heading-h4: 26px;
  --font-size-pc-heading-h5: 20px;
  --font-size-sp-heading-h3: 24px;
  --font-size-sp-heading-h4: 22px;
  --font-size-sp-heading-h5: 18px;
  --font-size-txt-m: 16px;
  --font-size-txt-s: 14px;
  --font-size-txt-xs: 12px;
  --font-size-txt-xxs: 10px;
}

.breadcrumb {
  width: 100%;
  max-width: 108rem;
  margin: 0 auto;
  padding: 2rem 0;
  font-size: 1.3rem;
  color: #999;
  padding-left: 2rem;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "＞";
  margin: 0 1rem;
}
.breadcrumb a {
  color: #00F;
}
.breadcrumb__arrow {
  margin: 0 2rem;
}

.hero {
  background: linear-gradient(116deg, var(--base-color1) 0%, #ffffff 40%, #ffffff 45%, var(--base-color3) 100%);
  background: linear-gradient(116deg, #E7FFB5 0%, #ffffff 40%, #ffffff 45%, var(--base-color3) 100%);
  background: linear-gradient(116deg, #D8FFDD 0%, #ffffff 40%, #ffffff 45%, var(--base-color3) 100%);
  position: relative;
  height: 54.8rem;
  overflow: hidden;
}
.hero__txt, .hero__title, .hero__catchcopy, .hero__img, .hero__shape-01, .hero__shape-02, .hero__shape-03 {
  position: absolute;
}
.hero__txt, .hero__title {
  font-family: var(--font-family-rampart);
  white-space: nowrap;
}
.hero__txt, .hero__title, .hero__catchcopy {
  color: var(--main-color);
  z-index: 400;
  text-shadow: 2px 2px #fff;
}
.hero__txt {
  top: 13%;
  left: 5%;
  font-size: clamp(2.2rem, 4vw, 5.4rem);
  text-align: center;
}
@media (max-width: 48em) {
  .hero__txt {
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 375px) {
  .hero__txt {
    line-height: 1;
  }
}
.hero__title {
  font-size: clamp(16px, 9vw, 130px);
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
}
@media (max-width: 90em) {
  .hero__title {
    left: 5%;
  }
}
@media (max-width: 48em) {
  .hero__title {
    font-size: 6rem;
    font-weight: normal;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 2rem;
  }
}
@media (max-width: 375px) {
  .hero__title {
    margin-top: 1rem;
  }
}
.hero__catchcopy {
  font-family: var(--font-family-caveat);
  transform: rotate(-15deg);
  bottom: 42%;
  left: 27%;
  text-shadow: 2px 2px #fff;
  font-weight: bold;
  font-size: clamp(4.7rem, 4vw, 7rem);
  width: 100%;
}
@media (max-width: 48em) {
  .hero__catchcopy {
    left: 50%;
    bottom: 33%;
    transform: rotate(-15deg) translateX(-50%);
  }
}
.hero__catchcopy .char {
  display: inline-block;
  transform-origin: left bottom;
  opacity: 0;
  transform: translateY(0.15em) scaleY(0.95) rotate(-2deg);
}
@-webkit-keyframes write {
  0% {
    opacity: 0;
    transform: translateY(0.25em) scaleY(0.85) rotate(-6deg);
    filter: blur(0.6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scaleY(1.02) rotate(1deg);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1) rotate(0deg);
    filter: blur(0);
  }
}
@keyframes write {
  0% {
    opacity: 0;
    transform: translateY(0.25em) scaleY(0.85) rotate(-6deg);
    filter: blur(0.6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scaleY(1.02) rotate(1deg);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1) rotate(0deg);
    filter: blur(0);
  }
}
@-webkit-keyframes wiggle {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-0.02em) rotate(-0.7deg);
  }
  50% {
    transform: translateY(0.01em) rotate(0.6deg);
  }
  80% {
    transform: translateY(-0.01em) rotate(-0.4deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(-0.02em) rotate(-0.7deg);
  }
  50% {
    transform: translateY(0.01em) rotate(0.6deg);
  }
  80% {
    transform: translateY(-0.01em) rotate(-0.4deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.hero__catchcopy.written .char {
  -webkit-animation: wiggle 2s ease-in-out 0.8s;
          animation: wiggle 2s ease-in-out 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.hero__img {
  display: block;
  max-width: 50%;
}
.hero__img.jr-sr {
  max-width: 55rem;
  height: auto;
  right: 25%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  filter: drop-shadow(0px 0px 3px #fff);
  overflow: hidden;
  border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  -webkit-animation: blobMove 10s ease-in-out infinite;
          animation: blobMove 10s ease-in-out infinite;
}
@media (max-width: 48em) {
  .hero__img.jr-sr {
    bottom: 3%;
    right: 0;
    min-width: 42rem;
    min-height: 40rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.hero__img.jr-sr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@-webkit-keyframes blobMove {
  0% {
    border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  }
  20% {
    border-radius: 60% 40% 28% 72%/52% 50% 54% 44%;
  }
  40% {
    border-radius: 58% 42% 36% 64%/50% 55% 46% 49%;
  }
  60% {
    border-radius: 66% 34% 38% 62%/55% 45% 58% 42%;
  }
  80% {
    border-radius: 62% 38% 34% 66%/51% 54% 45% 50%;
  }
  100% {
    border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  }
}
@keyframes blobMove {
  0% {
    border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  }
  20% {
    border-radius: 60% 40% 28% 72%/52% 50% 54% 44%;
  }
  40% {
    border-radius: 58% 42% 36% 64%/50% 55% 46% 49%;
  }
  60% {
    border-radius: 66% 34% 38% 62%/55% 45% 58% 42%;
  }
  80% {
    border-radius: 62% 38% 34% 66%/51% 54% 45% 50%;
  }
  100% {
    border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  }
}
.hero__img.elem {
  max-width: 28.3rem;
  height: auto;
  right: 12%;
  bottom: 3%;
}
@media (max-width: 48em) {
  .hero__img.elem {
    max-width: 20rem;
    right: 1%;
    bottom: 0;
  }
}
.hero__img.elem .hero__img-inner {
  overflow: hidden;
  filter: drop-shadow(0px 0px 3px #fff);
  border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  -webkit-animation: blobMoveSmall 10s ease-in-out infinite;
          animation: blobMoveSmall 10s ease-in-out infinite;
}
@-webkit-keyframes blobMoveSmall {
  0% {
    border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  }
  20% {
    border-radius: 70% 30% 42% 58%/60% 40% 55% 45%;
  }
  40% {
    border-radius: 55% 42% 68% 35%/48% 60% 40% 52%;
  }
  60% {
    border-radius: 68% 34% 50% 50%/58% 42% 62% 38%;
  }
  80% {
    border-radius: 58% 45% 60% 42%/52% 58% 46% 44%;
  }
  100% {
    border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  }
}
@keyframes blobMoveSmall {
  0% {
    border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  }
  20% {
    border-radius: 70% 30% 42% 58%/60% 40% 55% 45%;
  }
  40% {
    border-radius: 55% 42% 68% 35%/48% 60% 40% 52%;
  }
  60% {
    border-radius: 68% 34% 50% 50%/58% 42% 62% 38%;
  }
  80% {
    border-radius: 58% 45% 60% 42%/52% 58% 46% 44%;
  }
  100% {
    border-radius: 63% 37% 32% 68%/53% 51% 49% 47%;
  }
}
.hero__img.elem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__elem-txt {
  white-space: nowrap;
  display: block;
  text-align: center;
  margin-top: 0.4rem;
  font-family: var(--font-family-pop);
  font-size: clamp(var(--font-size-txt-xs), 1vw, var(--font-size-txt-m));
}
.hero__img.elem, .hero__shape-01 {
  z-index: 300;
}
.hero__shape-01 {
  max-width: 18rem;
  top: 2%;
  right: 21%;
  transform: rotate(-45deg);
  filter: drop-shadow(-21px 12px 3px #fff);
  z-index: 100;
}
@media (max-width: 48em) {
  .hero__shape-01 {
    right: auto;
    left: -14%;
    top: 10%;
  }
}
.hero__shape-02 {
  max-width: 23.8rem;
  top: -5%;
  right: 10%;
  filter: drop-shadow(-21px 12px 3px var(--base-color2));
  z-index: 100;
}
@media (max-width: 48em) {
  .hero__shape-02 {
    top: -13%;
    right: -2%;
  }
}
.hero__shape-03 {
  z-index: 100;
  bottom: -25%;
}
@media (max-width: 48em) {
  .hero__shape-03 {
    max-width: 35rem;
  }
}

main {
  background-color: #fff;
  font-family: var(--font-family-pop);
  width: 100%;
  margin: 0 auto;
}
main .container {
  width: 100%;
  max-width: 108rem;
  margin: 0 auto;
}
@media (max-width: 48em) {
  main .container {
    width: 95%;
  }
}
main .heading-lv3 {
  font-size: clamp(var(--font-size-sp-heading-h3), 2vw, var(--font-size-pc-heading-h3));
  font-weight: normal;
}
main .heading-lv4 {
  font-size: clamp(var(--font-size-sp-heading-h4), 2vw, var(--font-size-pc-heading-h4));
  font-weight: normal;
}
main .heading-lv5 {
  font-size: clamp(var(--font-size-sp-heading-h5), 2vw, var(--font-size-pc-heading-h5));
  font-weight: normal;
}
main .cta {
  text-align: center;
  width: 95%;
  margin: 0 auto;
  padding: 14rem 0;
}
@media (max-width: 48em) {
  main .cta {
    padding: 10rem 0;
  }
}
main .cta .heading-lv3 {
  margin-bottom: 4rem;
}
@media (max-width: 48em) {
  main .cta .heading-lv4:last-child {
    margin-top: 1rem;
  }
}
main .business-awards,
main .anxieties,
main .support-program,
main .apartments,
main .hobby-course,
main .local-life,
main .volunteer,
main .university,
main .local-support,
main .local-office {
  padding: clamp(4rem, 6vw, 8rem) 0;
}
main .okc-features {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 7rem;
}
main .okc-features__ribbon {
  color: #fff;
  background: url(../images/okcFeatures-ribbon.png) center/contain no-repeat;
  max-width: 52.8rem;
  height: 14.8rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 1.3rem;
}
@media (max-width: 48em) {
  main .okc-features__ribbon {
    width: 33rem;
    height: 9rem;
    padding-top: 0.6rem;
  }
}
main .okc-features__heading {
  font-size: var(--font-size-pc-heading-h3);
}
@media (max-width: 48em) {
  main .okc-features__heading {
    font-size: var(--font-size-sp-heading-h3);
  }
}
main .okc-features__pentagon {
  position: relative;
  max-width: 100rem;
  height: 88rem;
  margin: 0 auto;
  margin-top: -10rem;
  -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
          clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background: linear-gradient(to bottom, transparent 10%, var(--base-color3) 30%, var(--base-color2));
}
@media (max-width: 64em) {
  main .okc-features__pentagon {
    width: 100%;
    height: auto;
    max-width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
main .okc-features__centerLogo {
  max-width: 16.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #444;
}
@media (max-width: 64em) {
  main .okc-features__centerLogo {
    position: static;
    transform: none;
    margin-top: 8rem;
  }
}
main .okc-features__cards {
  padding-left: 0;
}
@media (max-width: 64em) {
  main .okc-features__cards {
    gap: 3rem;
    justify-content: center;
  }
}
main .okc-features__card {
  position: absolute;
  width: 30rem;
  height: 30rem;
  background: rgba(255, 255, 255, 0.431372549);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .okc-features__card.card1 {
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
}
main .okc-features__card.card2 {
  top: 26rem;
  left: 5rem;
}
main .okc-features__card.card3 {
  top: 26rem;
  right: 5rem;
}
main .okc-features__card.card4 {
  bottom: 2rem;
  left: 17rem;
}
main .okc-features__card.card5 {
  bottom: 2rem;
  right: 17rem;
}
@media (max-width: 64em) {
  main .okc-features__card.card1, main .okc-features__card.card2, main .okc-features__card.card3, main .okc-features__card.card4, main .okc-features__card.card5 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
}
@media (max-width: 64em) {
  main .okc-features__card {
    width: 90%;
    max-width: 30rem;
    height: auto;
    min-height: 12rem;
    border-radius: 16px;
    padding: 1rem;
    z-index: 300;
  }
}
@media (max-width: 64em) {
  main .okc-features__card::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 19rem;
    height: 19rem;
    background: linear-gradient(to bottom, #a2e8f7, #ffffff);
    -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
            clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    z-index: -1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }
}
main .okc-features__number {
  background: url(../images/okcFeatures-numBack.png) center/cover no-repeat;
  width: 5rem;
  height: 5rem;
  padding-top: 0.3rem;
  display: block;
  font-size: var(--font-size-pc-heading-h4);
}
main .okc-features__title {
  margin-bottom: 0.3rem;
}
main .okc-features__txt {
  line-height: 1.3;
  margin: 0.3rem auto;
  font-size: var(--font-size-txt-s);
  font-family: var(--font-family-meiryo);
}
main .okc-features__img {
  max-width: 15rem;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.4));
}
main .business-awards {
  font-family: var(--font-family-mincho);
  box-shadow: inset 20px -20px 45px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, #0f2027 0%, #203a43 50%, #2c5364 100%);
}
main .business-awards__certificate-back {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 92.8rem;
  height: 70.6rem;
  margin: 0 auto;
}
@media (max-width: 48em) {
  main .business-awards__certificate-back {
    max-width: 42rem;
    height: 32rem;
  }
}
main .business-awards__certificate {
  background: url(../images/businessAwards-back.png) center/cover no-repeat;
  height: 95%;
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 3.5rem;
}
@media (max-width: 48em) {
  main .business-awards__certificate {
    gap: 2.7rem;
  }
}
@media (max-width: 375px) {
  main .business-awards__certificate {
    background-size: contain;
  }
}
main .business-awards__txt {
  text-align: center;
  margin-top: clamp(2rem, 2vw, 6rem);
  line-height: 1.3;
}
main .business-awards__heading {
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  margin-top: 1rem;
  font-weight: 800;
}
@media (max-width: 375px) {
  main .business-awards__heading {
    font-size: 2.2rem;
    margin-top: 0;
  }
}
main .business-awards__heading-txt {
  font-size: clamp(var(--font-size-txt-m), 2vw, var(--font-size-pc-heading-h4));
  font-weight: bold;
}
@media (max-width: 375px) {
  main .business-awards__heading-txt {
    font-size: var(--font-size-txt-s);
  }
}
main .business-awards__box {
  margin-top: -3rem;
  gap: 2rem;
}
main .business-awards__logo {
  max-width: 38rem;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 48em) {
  main .business-awards__logo {
    max-width: 17rem;
  }
}
main .business-awards__receive {
  max-width: 18rem;
  height: auto;
  filter: drop-shadow(-4px -1px 1.5px rgba(0, 0, 0, 0.3));
}
@media (max-width: 48em) {
  main .business-awards__receive {
    max-width: 8rem;
  }
}
main .business-awards__title {
  text-align: center;
  font-weight: bold;
  margin: 7rem auto;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  background: linear-gradient(to bottom, #fff8dc 0%, #d4af37 30%, #fff8dc 40%, #b8860b 70%, #f9e79f 90%, #fff8dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
main .business-awards__ceo {
  position: relative;
}
@media (max-width: 48em) {
  main .business-awards__ceo {
    order: 2;
  }
}
main .business-awards__ceo-box {
  flex-wrap: nowrap;
  gap: 5rem;
}
@media (max-width: 48em) {
  main .business-awards__ceo-box {
    flex-direction: column;
    gap: 3rem;
  }
}
main .business-awards__ceo-img {
  max-width: 23rem;
  height: auto;
  border-radius: 9999px 9999px 0 0;
}
@media (max-width: 48em) {
  main .business-awards__ceo-img {
    max-width: 14rem;
  }
}
main .business-awards__ceo-txt {
  position: absolute;
  bottom: 0;
  color: #fff;
  margin-left: 1rem;
  text-shadow: 2px 2px black;
}
@media (max-width: 48em) {
  main .business-awards__ceo-txt {
    margin-left: 0.3rem;
  }
}
main .business-awards__ceo-message {
  position: relative;
  z-index: 300;
  background-color: #fff;
  max-width: 61rem;
  height: 100%;
  padding: 2rem clamp(2rem, 5vw, 3rem);
  border-radius: 30px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.7;
}
@media (max-width: 48em) {
  main .business-awards__ceo-message {
    text-align: center;
    order: 1;
  }
}
main .business-awards__ceo-message::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 100;
  border-style: solid;
  border-width: 15px 30px 15px 0;
  border-color: transparent #fff transparent transparent;
  translate: -100% -50%;
}
@media (max-width: 48em) {
  main .business-awards__ceo-message::after {
    top: auto;
    left: 50%;
    translate: none;
    transform: translateX(-50%);
    border: 30px solid transparent;
    border-top-color: #fff;
  }
}
main .business-awards__ceo-message--large {
  font-size: var(--font-size-pc-heading-h5);
  font-weight: bold;
  margin-bottom: 1rem;
}
main .anxieties .container {
  background-color: #fff;
  border: 13px solid var(--main-color);
}
main .anxieties__heading {
  text-align: center;
  padding: 7rem 0;
}
main .anxieties__cards {
  background-color: var(--main-color);
  padding: clamp(2rem, 6vw, 5rem) 0;
}
@media (max-width: 48em) {
  main .anxieties__cards {
    gap: 3rem;
  }
}
main .anxieties__card {
  max-width: 30rem;
  flex-direction: column;
}
main .anxieties__card-img {
  max-width: 12.8rem;
  position: relative;
  z-index: 300;
}
@media (max-width: 48em) {
  main .anxieties__card-img {
    max-width: 9rem;
  }
}
main .anxieties__bubble {
  background: url(../images/anxieties-bubble.png) center/contain no-repeat;
  width: 30rem;
  height: 30rem;
  text-align: center;
  padding: 2rem;
}
@media (max-width: 48em) {
  main .anxieties__bubble {
    width: 26rem;
    height: 26rem;
  }
}
main .anxieties__txt {
  transform: translateY(-20%);
}
main .anxieties__parents {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  main .anxieties__parents {
    margin-top: 0;
  }
}
main .anxieties__parents::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: #fff;
  z-index: 100;
}
@media (max-width: 48em) {
  main .anxieties__parents::before {
    width: 15rem;
    height: 15rem;
  }
}
main .anxieties__title {
  position: relative;
  z-index: 300;
  text-shadow: 2px 2px #fff;
}
main .anxieties__solution {
  text-align: center;
  flex-direction: column;
  gap: 4rem;
  padding: 4rem 2rem;
}
main .anxieties__solution .solution__card {
  flex-direction: column;
  gap: 2rem;
  background-color: var(--base-color3);
  border-radius: 9999px;
  padding: 2rem;
  width: 100%;
  margin: 0 auto;
}
main .anxieties__solution .solution__txt {
  font-family: var(--font-family-meiryo);
}
main .anxieties__solution .solution__txt p:last-child {
  margin-top: 1rem;
}
main .anxieties__solution .solution__img {
  margin: 0 auto;
  max-width: 13rem;
  height: auto;
}
main .support-program {
  text-align: center;
}
main .support-program .container {
  background-color: #fff;
  border: 13px solid var(--accent-color1);
}
main .support-program__heading {
  padding: 7rem 0;
}
main .support-program__stageA, main .support-program__stageB {
  background-color: var(--accent-color1);
  padding: 5rem 0;
}
main .support-program__title-sub {
  color: #fff;
}
main .support-program__cards {
  margin-top: 5rem;
  gap: 3rem;
  align-items: stretch;
}
@media (max-width: 48em) {
  main .support-program__cards {
    flex-direction: column;
    gap: 5rem;
  }
}
main .support-program__card {
  background-color: #fff;
  padding: clamp(1rem, 2vw, 3rem);
  padding-top: 6rem;
  position: relative;
  flex-direction: column;
  flex: 1;
  gap: 2rem;
}
@media (max-width: 48em) {
  main .support-program__card {
    justify-content: center;
    width: 100%;
  }
}
main .support-program__number-wrapper {
  position: absolute;
  top: -2.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4.5rem;
  height: 4.5rem;
}
main .support-program__number-wrapper::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 3px solid var(--accent-color1);
  transform: rotate(45deg);
  position: absolute;
  z-index: 100;
}
main .support-program__number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
}
main .support-program__img {
  max-width: 15rem;
  margin: 2rem auto;
}
@media (max-width: 48em) {
  main .support-program__img {
    margin: 0 auto;
  }
}
main .support-program__img-note {
  display: block;
  font-family: var(--font-family-meiryo);
  font-size: var(--font-size-txt-xxs);
  margin-top: 0.4rem;
}
main .support-program__departure, main .support-program__return {
  padding: 10rem 0;
  margin: 0 auto;
  width: 60%;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 60%;
  flex-wrap: nowrap;
}
@media (max-width: 375px) {
  main .support-program__departure, main .support-program__return {
    max-width: 100%;
    flex-wrap: wrap;
    padding: 4rem 0;
    gap: 3rem;
  }
}
@media (max-width: 375px) {
  main .support-program__departure .support-program__title, main .support-program__return .support-program__title {
    order: 2;
  }
}
@media (max-width: 375px) {
  main .support-program__departure .support-program__arrow, main .support-program__return .support-program__arrow {
    order: 3;
  }
}
@media (max-width: 375px) {
  main .support-program__departure .support-program__sky, main .support-program__return .support-program__sky {
    order: 1;
  }
}
main .support-program__title {
  flex: 2;
  min-width: 17rem;
}
main .support-program__arrow {
  max-width: 9.2rem;
  height: auto;
  margin: 0 auto;
  transform: rotate(90deg);
  -o-object-fit: contain;
     object-fit: contain;
  flex: 1;
}
main .support-program__arrow.arrow-sp {
  display: none;
  margin: -3rem auto 5rem;
}
@media (max-width: 48em) {
  main .support-program__arrow.arrow-sp {
    display: block;
  }
}
main .support-program__sky {
  position: relative;
  min-width: 17rem;
  height: 13rem;
  flex: 2;
}
main .support-program__sky > img {
  position: absolute;
}
main .support-program__cloud1 {
  z-index: 100;
  max-width: 8rem;
  -webkit-animation: cloudFloat 6s ease-in-out infinite;
          animation: cloudFloat 6s ease-in-out infinite;
}
@-webkit-keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes cloudFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
main .support-program__cloud2 {
  max-width: 6.6rem;
  right: 0;
  bottom: 0;
  -webkit-animation: cloudFloat2 3s ease-in-out infinite;
          animation: cloudFloat2 3s ease-in-out infinite;
  z-index: 300;
}
@-webkit-keyframes cloudFloat2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes cloudFloat2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
main .support-program__plane {
  max-width: 15rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
}
@media (max-width: 30em) {
  main .support-program__plane {
    max-width: 13rem;
  }
}
main .support-program__stageB .support-program__cards.cards1 .support-program__card:first-child {
  flex: 0 0 calc((100% - 6rem) / 3);
}
@media (max-width: 48em) {
  main .support-program__stageB .support-program__cards.cards1 .support-program__card:first-child {
    flex: 1;
  }
}
main .support-program__stageB .support-program__cards.cards1 .support-program__card:first-child .support-program__img {
  margin-top: 12rem;
}
@media (max-width: 48em) {
  main .support-program__stageB .support-program__cards.cards1 .support-program__card:first-child .support-program__img {
    margin-top: 0;
  }
}
main .support-program__stageB .support-program__cards.cards1 .support-program__card:nth-child(2) {
  justify-content: flex-start;
  flex: 0 0 calc((100% - 6rem) / 3 * 2 + 3rem);
}
@media (max-width: 48em) {
  main .support-program__stageB .support-program__cards.cards1 .support-program__card:nth-child(2) {
    flex: 1;
  }
}
main .support-program__stageB .support-program__cards.cards1 .support-program__card:nth-child(2) .heading-lv5 {
  margin-bottom: 3rem;
}
main .support-program__stageB .support-program__cards.cards1 .support-program__card:nth-child(2) .support-program__img {
  max-width: 21.5rem;
}
main .support-program__stageB .support-program__cards.cards1 .support-program__card:nth-child(2) .support-program__five-efforts {
  text-align: left;
  line-height: 1.7;
}
main .support-program__stageB .support-program__cards.cards1 .support-program__card:nth-child(2) .support-program__five-efforts-wrapper {
  gap: 3rem;
}
main .support-program__stageB .support-program__cards.cards1 .support-program__card:nth-child(2) .support-program__five-efforts-num {
  margin-right: 1rem;
}
main .support-program__stageB .support-program__cards.cards2 .support-program__card:last-of-type .support-program__img {
  max-width: 21rem;
}
main .support-program__return .support-program__plane {
  transform: translate(-50%, -50%) scaleX(-1);
}
main .support-program__online {
  background-color: var(--base-color2);
  padding: 5rem 0;
  margin: 0 clamp(2rem, 2vw, 4rem);
  border-radius: 3rem;
}
main .support-program__online-img-wrapper {
  position: relative;
  width: 20rem;
  height: 20rem;
  margin: 0 auto;
}
main .support-program__online-img-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
}
main .support-program__online-img {
  position: relative;
  z-index: 300;
  max-width: 14rem;
  margin: 0 auto;
  margin-top: 4rem;
}
main .support-program__flowchart {
  margin: 9rem 2rem 8rem;
}
@media (max-width: 48em) {
  main .support-program__flowchart {
    margin-bottom: 2rem;
  }
}
main .support-program__flowchart .flowchart__arrow-box {
  width: 100%;
}
main .support-program__flowchart .support-program__branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4rem;
  align-items: start;
  justify-items: center;
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
}
main .support-program__flowchart .support-program__branches.branches .branches__branch {
  width: 100%;
  gap: 4rem;
}
main .support-program__flowchart .support-program__branches.branches .branches__branch.collapsed {
  padding-bottom: 0;
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__branch {
    text-align: center;
    width: 100%;
    max-width: none;
    margin-bottom: 2rem;
    border: 5px solid var(--accent-color1);
    border-radius: 1rem;
    overflow: hidden;
  }
}
main .support-program__flowchart .support-program__branches.branches .branches__branch.open {
  padding-bottom: 2rem;
}
main .support-program__flowchart .support-program__branches.branches .branches__branch.open .branches__header-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
main .support-program__flowchart .support-program__branches.branches .branches__branch.open .branches__header-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__branch.open .branches__card,
main .support-program__flowchart .support-program__branches.branches .branches__branch.open .branches__card.mobile-only,
main .support-program__flowchart .support-program__branches.branches .branches__branch.open .support-program__arrow {
    display: flex !important;
  }
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__branch.open .support-program__arrow:first-of-type {
    display: none !important;
  }
}
main .support-program__flowchart .support-program__branches.branches .branches__branch:not(.open) {
  padding-bottom: 0;
}
main .support-program__flowchart .support-program__branches.branches .branches__branch:not(.open) .branches__card,
main .support-program__flowchart .support-program__branches.branches .branches__branch:not(.open) .branches__card.mobile-only,
main .support-program__flowchart .support-program__branches.branches .branches__branch:not(.open) .support-program__arrow {
  display: none !important;
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__branch .support-program__arrow:first-child {
    display: none;
  }
}
main .support-program__flowchart .support-program__branches.branches .branches__header {
  display: none;
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    content: attr(data-title);
    width: 100%;
    text-align: left;
    background-color: var(--accent-color1);
    color: #333;
    font-weight: bold;
    padding: 2rem 1rem;
    cursor: pointer;
  }
}
main .support-program__flowchart .support-program__branches.branches .branches__header-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
}
main .support-program__flowchart .support-program__branches.branches .branches__header-icon::before, main .support-program__flowchart .support-program__branches.branches .branches__header-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 0.2rem;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
main .support-program__flowchart .support-program__branches.branches .branches__header-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
main .support-program__flowchart .support-program__branches.branches .branches__header-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
main .support-program__flowchart .support-program__branches.branches .branches__card {
  border-radius: 3rem;
  padding: 2rem;
  width: 100%;
  min-width: 20rem;
  flex-direction: column;
  justify-content: space-around;
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__card {
    width: 95%;
  }
}
main .support-program__flowchart .support-program__branches.branches .branches__card.mobile-only {
  display: none;
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__card.mobile-only {
    display: flex;
    justify-content: space-around;
  }
}
main .support-program__flowchart .support-program__branches.branches .branches__card.desktop-only {
  background-color: var(--accent-color1);
  min-height: 25rem;
  position: relative;
}
main .support-program__flowchart .support-program__branches.branches .branches__card.desktop-only .branches__img {
  max-width: 22rem;
}
main .support-program__flowchart .support-program__branches.branches .branches__card.desktop-only::after {
  content: "";
  display: block;
  border: 3px solid #fff;
  border-radius: 30px;
  width: 98%;
  height: 96%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__card.desktop-only {
    display: none;
  }
}
main .support-program__flowchart .support-program__branches.branches .branches__card.shared-box4 {
  grid-column: 1/3;
  grid-row: 2;
  justify-self: center;
}
main .support-program__flowchart .support-program__branches.branches .branches__card.shared-box5 {
  grid-column: 3/4;
  grid-row: 2;
  justify-self: center;
}
main .support-program__flowchart .support-program__branches.branches .branches__card .branches__img {
  margin: 0 auto;
  filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.4));
}
main .support-program__flowchart .support-program__branches.branches .branches__card:nth-child(3) {
  background-color: var(--base-color2);
  border: 3px solid var(--accent-color1);
  min-height: 28rem;
}
main .support-program__flowchart .support-program__branches.branches .branches__card:nth-child(3) .branches__img {
  max-width: 10.7rem;
}
main .support-program__flowchart .support-program__branches.branches .branches__card:last-child {
  background-color: var(--accent-color1);
  min-height: 25rem;
  position: relative;
}
main .support-program__flowchart .support-program__branches.branches .branches__card:last-child .branches__img {
  max-width: 22rem;
  width: 100%;
}
main .support-program__flowchart .support-program__branches.branches .branches__card:last-child::after {
  content: "";
  display: block;
  border: 3px solid #fff;
  border-radius: 30px;
  width: 96%;
  height: 96%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 48em) {
  main .support-program__flowchart .support-program__branches.branches .branches__card:last-child::after {
    width: 98%;
  }
}
main .study-abroad {
  background-color: var(--base-color3);
  background: linear-gradient(to bottom, var(--base-color3), var(--base-color1));
  background: linear-gradient(to bottom, var(--base-color1), var(--base-color3));
  text-align: center;
  padding-bottom: 3rem;
}
main .study-abroad__features, main .study-abroad__info, main .study-abroad__cost, main .study-abroad__detail {
  background-color: var(--base-color4);
  border: 10px solid var(--base-color5);
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 3rem);
  margin: 7rem auto;
}
@media (max-width: 48em) {
  main .study-abroad__features, main .study-abroad__info, main .study-abroad__cost, main .study-abroad__detail {
    margin: clamp(5rem, 2vw, 7rem) auto;
  }
}
main .study-abroad__features {
  position: relative;
}
main .study-abroad__title {
  padding: clamp(2rem, 2vw, 3.5rem) 0;
  -webkit-text-stroke: 1px var(--base-color4);
  text-shadow: 2px 1px #575757;
}
main .study-abroad .features__img-student {
  position: absolute;
  max-width: 14.6rem;
  top: -7rem;
  right: -8rem;
  z-index: 300;
  -webkit-animation: floatY 2s ease-in-out infinite;
          animation: floatY 2s ease-in-out infinite;
}
@-webkit-keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 64em) {
  main .study-abroad .features__img-student {
    top: -5rem;
    right: -1.8rem;
    max-width: 9rem;
  }
}
@media (max-width: 90em) {
  main .study-abroad .features__img-student {
    right: auto;
    left: -3rem;
    transform: scaleX(-1);
  }
  @-webkit-keyframes floatY {
    0%, 100% {
      transform: translateY(0) scaleX(-1);
    }
    50% {
      transform: translateY(-10px) scaleX(-1);
    }
  }
  @keyframes floatY {
    0%, 100% {
      transform: translateY(0) scaleX(-1);
    }
    50% {
      transform: translateY(-10px) scaleX(-1);
    }
  }
}
main .study-abroad .features__img {
  max-width: 20rem;
}
main .study-abroad .features__cards {
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 4rem;
}
@media (max-width: 48em) {
  main .study-abroad .features__cards {
    margin-bottom: 2rem;
  }
}
main .study-abroad .features__cards > * {
  flex: 1;
  max-width: 36.5rem;
  width: 100%;
}
main .study-abroad .features__card {
  background-color: #fff;
  border: 8px solid var(--main-color);
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  position: relative;
  padding: clamp(1rem, 2vw, 3rem);
  padding-top: 7rem;
  min-height: 32rem;
}
main .study-abroad .features__pin {
  max-width: 10rem;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}
main .study-abroad.elem .features__cards {
  gap: 9rem;
}
@media (max-width: 48em) {
  main .study-abroad.elem .features__cards {
    gap: 2rem;
  }
}
main .study-abroad.elem .features__img-student {
  max-width: 12rem;
}
@media (max-width: 48em) {
  main .study-abroad.elem .features__img-student {
    max-width: 8rem;
  }
}
main .study-abroad .info {
  padding: clamp(1rem, 2vw, 4rem);
  gap: 4rem;
}
@media (max-width: 48em) {
  main .study-abroad .info {
    gap: 1rem;
  }
}
main .study-abroad .info__card {
  background-color: #fff;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 5rem 0;
  position: relative;
}
@media (max-width: 48em) {
  main .study-abroad .info__card {
    max-width: 17rem;
    max-height: 17rem;
    padding: 0;
    justify-content: center;
  }
}
main .study-abroad .info__card.show .info__border circle {
  stroke-dashoffset: 0;
}
main .study-abroad .info__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
main .study-abroad .info__border circle {
  fill: none;
  stroke: url(#borderGradient);
  stroke-width: 3;
  stroke-dasharray: 364.424;
  stroke-dashoffset: 364.424;
  transition: stroke-dashoffset 1.5s ease;
}
main .study-abroad .info__content {
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 300;
}
@media (max-width: 48em) {
  main .study-abroad .info__content {
    justify-content: center;
  }
}
@media (max-width: 48em) {
  main .study-abroad .info__txt {
    font-size: 1.6rem;
  }
}
main .study-abroad .cost .cost__detail {
  padding: clamp(2rem, 2vw, 5rem);
  font-family: var(--font-family-meiryo);
}
@media (max-width: 48em) {
  main .study-abroad .cost .cost__detail {
    background-color: transparent;
  }
}
main .study-abroad .cost .cost__table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  text-align: center;
  table-layout: fixed;
}
@media (max-width: 48em) {
  main .study-abroad .cost .cost__table {
    border-collapse: separate;
    width: 100%;
  }
}
main .study-abroad .cost .cost__table-caution {
  text-align: center;
  margin-top: 2rem;
}
main .study-abroad .cost .cost__table-annotation {
  text-align: left;
  margin-top: 3rem;
  line-height: 2;
}
@media (max-width: 48em) {
  main .study-abroad .cost .cost__table-annotation {
    font-size: 1.4rem;
  }
}
@media (max-width: 48em) {
  main .study-abroad .cost .cost__head {
    display: none;
  }
}
@media (max-width: 48em) {
  main .study-abroad .cost .cost__row {
    display: block;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
  }
}
main .study-abroad .cost .cost__head-cell, main .study-abroad .cost .cost__cell, main .study-abroad .cost .cost__col-title {
  border: 2px solid var(--base-color4);
  padding: 1.2rem;
}
@media (max-width: 48em) {
  main .study-abroad .cost .cost__head-cell, main .study-abroad .cost .cost__cell, main .study-abroad .cost .cost__col-title {
    border: none;
  }
}
main .study-abroad .cost .cost__head-cell {
  background-color: var(--main-color);
  color: white;
}
main .study-abroad .cost .cost__head-cell--empty {
  background-color: transparent;
}
main .study-abroad .cost .cost__cell {
  width: 33.33%;
  font-weight: bold;
}
@media (max-width: 48em) {
  main .study-abroad .cost .cost__cell {
    width: 100%;
    display: block;
  }
  main .study-abroad .cost .cost__cell:last-child {
    border-bottom: none;
  }
}
main .study-abroad .cost .cost__cell:first-child {
  background-color: var(--main-color);
  color: white;
}
main .study-abroad .cost .cost__cell:not(:first-child) {
  background-color: var(--base-color6);
}
main .study-abroad .cost .cost__label {
  display: none;
}
@media (max-width: 48em) {
  main .study-abroad .cost .cost__label {
    display: block;
    background-color: var(--base-color1);
  }
}
main .study-abroad .detail__table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
}
main .study-abroad .detail__row.studying .studying__list {
  padding-left: 0;
  margin-bottom: 1rem;
}
main .study-abroad .detail__row.studying .studying__list li:first-child {
  font-weight: bold;
}
main .study-abroad .detail__row.studying .studying__list li:first-child::before {
  content: "▶";
  margin-right: 0.5em;
}
main .study-abroad .detail__row.studying .studying__list li:not(:first-child) {
  padding-left: 2rem;
}
main .study-abroad .detail__row.studying .studying__note {
  display: block;
  color: red;
  font-weight: bold;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  main .study-abroad .detail__row {
    margin-bottom: 1rem;
    overflow: hidden;
    display: block;
    border-radius: 8px;
  }
}
main .study-abroad .detail__head-cell, main .study-abroad .detail__cell {
  border: 2px solid var(--base-color4);
  padding: 1.5rem;
  vertical-align: top;
}
main .study-abroad .detail__head-cell {
  width: 20%;
  background-color: var(--main-color);
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}
@media (max-width: 48em) {
  main .study-abroad .detail__head-cell {
    width: 100%;
    display: block;
    background-color: var(--main-color);
    color: #fff;
  }
}
main .study-abroad .detail__cell {
  background-color: var(--base-color6);
  text-align: left;
  line-height: 2;
}
@media (max-width: 48em) {
  main .study-abroad .detail__cell {
    display: block;
    background-color: var(--base-color6);
  }
}
main .study-abroad .wave-container {
  position: relative;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  color: rgba(52, 152, 219, 0.4745098039);
}
@media (max-width: 48em) {
  main .study-abroad .wave-container {
    height: 15rem;
  }
}
main .study-abroad .wave-container .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(-1);
}
main .divider.landscape {
  background: url(../images/divider-landscape-01.jpg) center/cover no-repeat;
  background-attachment: fixed;
  height: 40rem;
}
@media (max-width: 64em) {
  main .divider.landscape {
    height: 20vh;
  }
}
main .divider.school-info {
  background: url(../images/divider-landscape-02.jpg) center/cover no-repeat;
  height: 40rem;
  color: #fff;
  position: relative;
  z-index: 100;
  background-attachment: fixed;
}
main .divider.school-info::after {
  content: "";
  width: 80%;
  height: 80%;
  background-color: rgba(0, 0, 0, 0.5568627451);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 48em) {
  main .divider.school-info::after {
    width: 90%;
    height: 90%;
  }
}
main .divider.school-info .school-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  line-height: 2;
  width: 80%;
  max-width: 90rem;
  padding: 2rem;
}
@media (max-width: 30em) {
  main .divider.school-info .school-info {
    width: 90%;
    padding: 0 2rem;
  }
}
main .divider.school-info .school-info__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  line-height: 2;
  width: 80%;
  max-width: 90rem;
  padding: 2rem;
  text-align: center;
}
@media (max-width: 30em) {
  main .divider.school-info .school-info__txt {
    width: 90%;
    padding: 0 2rem;
  }
}
main .divider.school-info .school-info__txt .heading-lv4 {
  margin-bottom: 2rem;
  line-height: 1.6;
}
main .divider.school-info .school-info__description {
  font-size: clamp(var(--font-size-txt-s), 2vw, var(--font-size-txt-m));
}
main .apartments {
  text-align: center;
}
main .apartments__features {
  background-color: var(--base-color3);
  padding: 5rem clamp(1rem, 2vw, 4rem);
  margin-top: clamp(5rem, 2vw, 8rem);
}
main .apartments__features-box {
  margin-top: 6rem;
  gap: 4rem;
}
@media (max-width: 48em) {
  main .apartments__features-box {
    justify-content: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 5rem;
  }
}
main .apartments__fig {
  flex-direction: column;
  flex: 1;
  position: relative;
}
@media (max-width: 48em) {
  main .apartments__fig {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}
main .apartments__img-wrapper {
  position: relative;
  width: 10rem;
  height: 10rem;
  margin: 0 auto;
}
main .apartments__img-wrapper::before {
  content: "";
  position: absolute;
  background: #fff;
  z-index: 100;
  width: 14rem;
  height: 14rem;
  margin: 0 auto;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .apartments__img {
  position: relative;
  z-index: 300;
}
main .apartments__caption {
  position: relative;
  z-index: 300;
  margin-top: 2rem;
}
main .apartments__caption-txt {
  font-family: var(--font-family-meiryo);
  font-size: var(--font-size-txt-s);
  font-weight: bold;
  margin-top: 1rem;
}
main .apartments__info {
  background-color: var(--base-color3);
  max-width: 70rem;
  width: 90%;
  margin: 5rem auto;
  padding: 3rem;
  position: relative;
}
main .apartments__info .heading-lv4 {
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
}
main .apartments__info .info__txt {
  font-family: var(--font-family-meiryo);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  margin-top: 2rem;
  text-align: left;
  font-weight: bold;
}
main .apartments__info .info__txt.arrangements {
  text-align: center;
}
main .apartments__info::before {
  content: "";
  display: block;
  border: 1px solid;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .apartments .grid-container {
  grid-template-columns: 1fr 1fr;
}
main .apartments .grid-container-wrapper__note {
  display: block;
  font-family: var(--font-family-meiryo);
  text-align: end;
  font-size: var(--font-size-txt-s);
}
main .apartments .grid-container .grid-item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media (max-width: 30em) {
  main .apartments .grid-container .grid-item:nth-child(1) {
    height: 100%;
  }
}
@media (max-width: 30em) {
  main .apartments .grid-container .grid-item__img {
    height: 100%;
  }
}
main .apartments .grid-container .grid-item__overlay-txt {
  margin: 0;
  font-size: var(--font-size-txt-s);
  opacity: 0.85;
}
main .apartments .grid-container .grid-item__overlay-heading {
  margin: 0 0 0.3rem;
  font-size: var(--font-size-txt-m);
}
main .hobby-course {
  text-align: center;
}
main .hobby-course__title {
  font-size: clamp(var(--font-size-txt-m), 2vw, var(--font-size-pc-heading-h4));
}
main .hobby-course .grid-container {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 30em) {
  main .hobby-course .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 375px) {
  main .hobby-course .grid-container {
    grid-template-columns: 1fr;
  }
}
main .hobby-course .grid-container .grid-item {
  margin: 0 auto;
}
@media (max-width: 30em) {
  main .hobby-course .grid-container .grid-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
main .hobby-course .grid-container .grid-item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
main .hobby-course .grid-container .grid-item:nth-child(2) {
  grid-column: 3/4;
  grid-row: 1;
}
main .hobby-course .grid-container .grid-item:nth-child(3) {
  grid-column: 4/5;
  grid-row: 1;
}
main .hobby-course .grid-container .grid-item:nth-child(4) {
  grid-column: 3/5;
  grid-row: 2;
}
main .hobby-course .grid-container .grid-item:nth-child(5) {
  grid-column: 1/2;
  grid-row: 3;
}
main .hobby-course .grid-container .grid-item:nth-child(6) {
  grid-column: 2/3;
  grid-row: 3;
}
main .hobby-course .grid-container .grid-item:nth-child(7) {
  grid-column: 1/3;
  grid-row: 4;
}
main .hobby-course .grid-container .grid-item:nth-child(8) {
  grid-column: 3/5;
  grid-row: 3/5;
}
main .hobby-course .grid-container .grid-item__overlay-txt {
  opacity: 1;
}
main .grid-container {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1rem, 2vw, 2rem);
  margin: auto;
}
@media (max-width: 30em) {
  main .grid-container {
    gap: 1rem;
  }
}
main .grid-container .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
@media (max-width: 30em) {
  main .grid-container .grid-item {
    max-width: 20rem;
    width: 100%;
    height: 20rem;
  }
}
main .grid-container .grid-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
main .grid-container .grid-item:hover img {
  transform: scale(1.05);
}
main .grid-container .grid-item__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
}
main .local-life__fig {
  background-color: #fff;
  border: 10px solid var(--main-color);
  border-radius: 30px;
  padding: 3rem;
  gap: 40px;
  margin-top: 4rem;
}
@media (max-width: 48em) {
  main .local-life__fig {
    flex-direction: column;
  }
}
main .local-life__fig-wrapper {
  margin-top: 4rem;
}
main .local-life__fig.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 48em) {
  main .local-life__fig.reverse {
    flex-direction: column;
  }
}
main .local-life__fig > * {
  flex: 1;
}
main .local-life__caption {
  line-height: 1.7;
}
main .local-life .heading-lv3,
main .local-life .heading-lv4 {
  text-align: center;
}
main .local-life .heading-lv4 {
  margin-bottom: 2rem;
}
main .local-life__img {
  width: 100%;
  max-width: 43.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  margin: 0 auto;
}
main .volunteer .heading-lv3, main .volunteer__title {
  text-align: center;
}
main .volunteer__title {
  font-size: clamp(var(--font-size-txt-m), 2vw, var(--font-size-pc-heading-h4));
}
main .volunteer__layout {
  margin-top: 8rem;
}
@media (max-width: 48em) {
  main .volunteer__layout {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
  }
}
main .volunteer__txt {
  flex-direction: column;
  background-color: #fff;
  border-radius: 30px;
  padding: 3rem;
  line-height: 1.7;
  flex: 1.5;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
main .volunteer__gallery {
  flex: 2;
}
main .volunteer__item {
  box-sizing: border-box;
  text-align: center;
  max-width: 30rem;
  flex: 1 1 50%;
}
main .volunteer__item svg {
  display: block;
  width: 100%;
  height: auto;
}
main .volunteer__img {
  max-width: 20rem;
  margin: 0 auto;
}
main .volunteer .topText {
  letter-spacing: 0.5rem;
}
main .university {
  text-align: center;
}
main .university__layout {
  background-color: #fff;
  border: 10px solid var(--base-color5);
  padding: 3rem;
  margin-top: 5rem;
}
main .university__layout .heading-lv5 {
  background-color: var(--base-color5);
  padding: 2rem;
}
main .university__gallery {
  margin-top: 3rem;
  gap: 2rem;
}
@media (max-width: 64em) {
  main .university__card {
    flex: 1 1 calc(50% - 2rem);
  }
}
main .university__img {
  max-width: 20.7rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 48em) {
  main .university__img {
    max-width: 18rem;
  }
}
main .local-support {
  text-align: center;
}
main .local-support__row {
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 48em) {
  main .local-support__row {
    flex-direction: column;
  }
}
main .local-support__row:first-of-type .local-support__item:nth-of-type(1) .local-support__img {
  max-width: 12.6rem;
}
main .local-support__row:first-of-type .local-support__item:nth-of-type(2) .local-support__img {
  max-width: 13rem;
}
main .local-support__row:nth-of-type(2) .local-support__item:nth-of-type(1) .local-support__img {
  max-width: 8.5rem;
}
main .local-support__row:nth-of-type(3) .local-support__item:nth-of-type(1) .local-support__img {
  max-width: 11.5rem;
}
main .local-support__row:nth-of-type(3) .local-support__item:nth-of-type(2) .local-support__img {
  max-width: 6.9rem;
}
main .local-support__row:nth-of-type(3) .local-support__item:nth-of-type(3) .local-support__img {
  max-width: 7.8rem;
}
main .local-support__item {
  list-style: none;
  flex: 1;
}
main .local-support__card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}
main .local-support__card:hover {
  transform: translateY(-0.5rem);
}
main .local-support__img-wrapper {
  position: relative;
  width: 14rem;
  height: 14rem;
}
main .local-support__img-wrapper::before {
  content: "";
  position: absolute;
  background-color: var(--base-color6);
  z-index: 100;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .local-support__img {
  max-width: 10rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
}
main .local-support .heading-lv5 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 300;
}
main .local-support__txt {
  line-height: 1.6;
  font-size: var(--font-size-txt-s);
}
main .local-office {
  text-align: center;
}
main .local-office .heading-lv3 {
  margin-bottom: 3rem;
}
main .local-office__note {
  font-family: var(--font-family-meiryo);
  display: block;
  color: red;
  text-align: right;
  font-size: var(--font-size-txt-s);
  font-weight: bold;
}
@media (max-width: 48em) {
  main .local-office__note {
    text-align: center;
    margin-top: 2rem;
  }
}
main .local-office__list {
  gap: 2rem;
  padding-left: 0;
}
@media (max-width: 48em) {
  main .local-office__list {
    flex-direction: column;
  }
}
main .local-office__item {
  background-color: #fff;
  border: 5px solid var(--main-color);
  border-radius: 8px;
  padding: 3rem;
  margin: 0 auto;
}
main .local-office__img {
  max-width: 46rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 2rem;
}
@media (max-width: 48em) {
  main .local-office__img {
    max-width: 35rem;
  }
}
main .section-block:nth-child(odd) {
  background-color: var(--base-color3);
}
main .section-block:nth-child(even) {
  background-color: var(--base-color6);
}

.menu-toggle {
  font-size: var(--font-size-txt-xs);
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: rgba(59, 154, 156, 0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}
@media (max-width: 64em) {
  .menu-toggle {
    top: 0;
    right: 0;
  }
}
.menu-toggle:hover, .menu-toggle:focus {
  opacity: 0.8;
}

.side-menu {
  font-family: var(--font-family-meiryo);
  font-size: var(--font-size-txt-xs);
  font-weight: bold;
  position: fixed;
  top: 3rem;
  right: 0;
  z-index: 1300;
  width: 18rem;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background-color: #fff;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.15);
  line-height: 30px;
  transform: translateX(0);
  overflow-y: auto;
  background-image: repeating-linear-gradient(to bottom, #eee 0px, #eee 1px, transparent 1px, transparent 15px), repeating-linear-gradient(to right, #eee 0px, #eee 1px, transparent 1px, transparent 15px);
}
.side-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 93%;
  height: 98%;
  border-radius: 10px;
}
.side-menu .menu-close {
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  display: block;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  text-align: center;
  overflow: visible;
}
.side-menu .menu-close::before {
  content: "";
  position: absolute;
  top: 54%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.side-menu .menu-close:hover::before, .side-menu .menu-close:focus::before {
  width: 4rem;
  height: 4rem;
}
.side-menu__heading {
  font-size: var(--font-size-txt-xs);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  margin-left: -15px;
}
.side-menu__list {
  padding-left: 1.7rem;
  list-style: disc;
  color: #333;
}
.side-menu a {
  flex-wrap: nowrap;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.side-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.2rem;
  width: 0;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}
.side-menu a.active {
  color: var(--main-color);
  padding-bottom: 0.2rem;
}
.side-menu a.active::after {
  width: 100%;
}
.side-menu__link-title {
  display: inline-flex;
  white-space: nowrap;
}
.side-menu.show {
  opacity: 1;
  pointer-events: auto;
}
.side-menu.open {
  transform: translateX(100%);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: none;
}
@media (max-width: 64em) {
  .overlay {
    display: block;
  }
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.fixed-request-btn {
  display: none;
}
@media (max-width: 64em) {
  .fixed-request-btn {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 94%;
    margin: 0 auto;
    height: 6rem;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    border: 2px solid #fff;
    color: #fff;
    font-size: var(--font-size-txt-m);
    font-weight: bold;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    border-radius: 9999px;
    transition: 0.3s;
  }
  .fixed-request-btn:hover {
    background-color: var(--accent-color2);
    opacity: 0.9;
    border: 2px solid var(--accent-color2);
  }
}

#backToTop {
  height: 5rem;
  width: 5rem;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
  padding: 1rem;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 64em) {
  #backToTop {
    bottom: 6.5rem;
  }
}
#backToTop:hover {
  opacity: 0.8;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop .pagetop__arrow {
  height: 1.5rem;
  width: 1.5rem;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

@media (max-width: 48em) {
  .sp-br::before {
    content: "\a";
    white-space: pre;
  }
}
@media (max-width: 375px) {
  .sp-br-sm::before {
    content: "\a";
    white-space: pre;
  }
}
/*# sourceMappingURL=style.css.map */