@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 font-size: 62.5%; // 1rem = 10px
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
html {
  font-size: 62.5%;
}

:root {
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}
@media (max-width: 600px) {
  :root {
    scroll-padding-top: 50px;
  }
}

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px 0px 80px;
  min-height: 100vh;
}

@font-face {
  font-family: "GenJyuu Gothic";
  src: url("../fonts/GenJyuuGothic/GenJyuuGothic-Heavy.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GenJyuu Gothic Heavy";
  src: url("../fonts/GenJyuuGothic/GenJyuuGothic-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cooper Black";
  src: url("../fonts/COOPBL/COOPBL.TTF") format("truetype");
  font-weight: normal;
  font-weight: 900;
}
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
}
.nav-header__container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px;
  transition: all 0.2s;
}
@media screen and (min-width: 1200px) {
  .nav-header__container {
    padding: 20px 15px;
  }
}
.nav-header__logo {
  font-family: "GenJyuu Gothic Heavy", sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #1a1a1a;
  font-size: 2.75rem;
}
.nav-header__logo-sub {
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
  font-family: "GenJyuu Gothic", sans-serif;
  font-weight: normal;
}
.nav-header__logo-list {
  display: flex;
}
@media screen and (min-width: 1200px) {
  .nav-header__logo-list {
    margin-right: 0;
  }
}
.nav-header__logo-title {
  font-size: 1rem;
  background: #99ffff;
  color: #008CCC;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  display: inline-block;
  font-weight: normal;
  margin-top: 1rem;
  margin-left: 1.2rem;
  font-weight: 500;
}
.nav-header__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .nav-header__menu {
    display: flex;
    align-items: center;
    background: #008CCC;
    border-radius: 40px;
    width: -moz-fit-content; /* Firefox */
    width: fit-content; /* other browsers */
    padding: 10px;
  }
}
.nav-header__dropdown-menu {
  background: #FFFFFF;
  position: absolute;
  left: 0px;
  top: 80px;
  border: #008CCC 1px solid;
  border-radius: 20px;
  list-style-type: none;
  padding: 10px 20px;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
  min-width: 260px;
  max-width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.nav-header__dropdown-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.nav-header__dropdown-menu__list::after {
  content: url("../img/header-arrow-dropdown.png");
  display: inline-block;
  position: absolute;
  top: -33px;
  right: 60px;
  width: 28px;
  height: 23px;
  z-index: 1;
}
.nav-header__dropdown-menu__item {
  color: #1a1a1a;
  padding: 0px 0;
}
.nav-header__dropdown-menu__item:not(:last-child) {
  border-bottom: 1px solid #1a1a1a;
}
.nav-header__dropdown-menu__item-link {
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  padding: 4px 0;
}
.nav-header__dropdown-menu__item-link:hover {
  opacity: 0.5;
}
.nav-header__dropdown-menu__item-link::after {
  content: url("../img/header-arrow.svg");
  display: inline-block;
  margin-left: 8px;
  vertical-align: top;
  width: 12px;
  height: 12px;
}
.nav-header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: -moz-fit-content; /* Firefox */
  width: fit-content; /* other browsers */
  height: 100%;
  padding: 0 1.5rem;
  position: relative;
}
.nav-header__link {
  color: #FFF;
  margin-right: 1.5rem;
  height: 100%;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-header__link:hover {
  opacity: 0.5;
}
.nav-header__link-visit {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  background: #ffe100;
  color: #008CCC;
  padding: 10px 20px;
  font-weight: 700;
}
.nav-header__link-visit:hover {
  opacity: 0.5;
}
.nav-header__link-recruit {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  background: #ffcccc;
  color: #008CCC;
  padding: 10px 20px;
  font-weight: 700;
}
.nav-header__link-recruit:hover {
  opacity: 0.5;
}
.nav-header__list {
  color: #FFFFFF;
}
.nav-header__link-icon {
  color: #ffe100;
  display: inline;
}
.nav-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 6rem;
  height: 6rem;
  background: #008CCC;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
}
@media (min-width: 1200px) {
  .nav-header__toggle {
    display: none;
  }
}
.nav-header__toggle:hover {
  background: #007bb3;
}
.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #fff;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer__container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #008CCC;
  border-left: 1px solid #e2e2e2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000;
}
.nav-drawer.is-open .nav-drawer__container {
  transform: translateX(0%);
}
.nav-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.nav-drawer.is-open .nav-drawer__overlay {
  opacity: 1;
  z-index: 1;
}
.nav-drawer__wrapper {
  position: relative;
  width: 100%;
  padding: 1.5rem 1.5rem 0;
  box-sizing: border-box;
}
.nav-drawer__logo {
  font-family: "GenJyuu Gothic Heavy", sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: auto;
  color: #FFF;
  font-size: 2.75rem;
}
.nav-drawer__logo-sub {
  font-size: 1rem;
  text-decoration: none;
  color: #FFF;
  font-family: "GenJyuu Gothic", sans-serif;
  font-weight: normal;
}
.nav-drawer__logo-list {
  display: flex;
}
@media screen and (min-width: 1200px) {
  .nav-drawer__logo-list {
    margin-right: 0;
  }
}
.nav-drawer__logo-title {
  font-size: 1rem;
  background: #FFFFFF;
  color: #008CCC;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  display: inline-block;
  font-weight: normal;
  margin-top: 1rem;
  margin-left: 1.2rem;
  font-weight: 500;
}
.nav-drawer__menu {
  display: block;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  overflow-y: auto;
  width: 80%;
}
.nav-drawer__menu {
  border-top: 1px solid #FFF;
  padding: 0px;
  margin-top: 4rem;
}
.nav-drawer__menu-item {
  color: #FFF;
  display: block;
  padding: 10px 0px;
}
.nav-drawer__menu-item:hover {
  opacity: 0.8;
}
.nav-drawer__menu-border {
  border-bottom: 1px solid #FFF;
}
.nav-drawer__menu-icon {
  position: relative;
}
.nav-drawer__menu-icon::after {
  content: url("../img/header-arrow-sp.svg");
  display: inline-block;
  margin-left: 8px;
  vertical-align: top;
  width: 12px;
  height: 12px;
}
.nav-drawer__menu-sub {
  width: 100%;
  padding-left: 2rem;
  padding-bottom: 1rem;
  box-sizing: border-box;
  list-style: none;
}
.nav-drawer__menu-sub-item {
  color: #1a1a1a;
  text-decoration: none;
}
.nav-drawer__menu-sub-item:hover {
  opacity: 0.8;
}
.nav-drawer__link-visit {
  border-radius: 40px;
  background: #ffe100;
  color: #008CCC;
  padding: 10px 20px;
  font-weight: 700;
  text-align: center;
  margin: 4rem 0px 2rem;
}
.nav-drawer__link-recruit {
  border-radius: 40px;
  background: #ffcccc;
  color: #008CCC;
  padding: 10px 20px;
  font-weight: 700;
  text-align: center;
}
.nav-drawer__menu-button {
  position: absolute;
  right: 20px;
  top: 20px;
  margin: 0px;
  padding: 0px;
}
.nav-drawer__button-close {
  position: relative;
  background-color: #FFF;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: #009ee6;
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #008CCC;
}
.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #008CCC;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}
.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}
.nav-pagetop:before {
  display: block;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5ce";
  transition: all 0.2s;
}
.nav-pagetop:after {
  content: "PAGETOP";
  display: block;
  padding: 4px 0px;
}
.nav-pagetop:hover {
  background: #007bb3;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

.mainvisual {
  position: relative;
  background-image: url("../img/mainvisual.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.mainvisual::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
}
.mainvisual__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  padding-top: 10rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mainvisual__text-main {
  font-weight: 700;
  font-family: "Comfortaa", cursive;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .mainvisual__text-main {
    font-size: 5.6rem;
  }
}
.mainvisual__text-sub {
  padding-top: 1.6rem;
  color: #1a1a1a;
  font-size: 1.6rem;
}

.page-heading__content {
  margin: 0;
  padding: 0;
}
.page-heading__content--left {
  text-align: left;
}
.page-heading__content--center {
  text-align: center;
}
.page-heading__content--right {
  text-align: right;
}
.page-heading__text-main {
  font-weight: 700;
  font-family: "Comfortaa", cursive;
  font-size: 4rem;
}
.page-heading__text-main:after {
  display: block;
  max-width: 240px;
  padding-top: 2.4rem;
  border-bottom: 3px solid #1a1a1a;
  content: "";
}
.page-heading__content--left .page-heading__text-main::after {
  margin-left: 0;
  margin-right: auto;
}
.page-heading__content--center .page-heading__text-main::after {
  margin-left: auto;
  margin-right: auto;
}
.page-heading__content--right .page-heading__text-main::after {
  margin-left: auto;
  margin-right: 0;
}
.page-heading__text-sub {
  font-weight: 400;
  font-size: 1.6rem;
  color: #1a1a1a;
  padding-top: 2.4rem;
}
.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}
.page-heading-sub__content--left {
  text-align: left;
}
.page-heading-sub__content--center {
  text-align: center;
}
.page-heading-sub__content--right {
  text-align: right;
}
.page-heading-sub__text {
  position: relative;
  font-size: 2.4rem;
}
.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: 0.8rem;
  border-radius: 3px;
  background: #008CCC;
  content: "";
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__clip-container {
  width: 100%;
  max-width: 720px;
  height: 250px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .footer__clip-container {
    height: auto;
  }
}
.footer__wrapper {
  width: 100%;
  aspect-ratio: 2/1;
  background-color: #008CCC;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 720px) {
  .footer__wrapper {
    width: 100%;
    max-width: 720px;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  margin-top: -50px;
}
@media screen and (max-width: 600px) {
  .footer__content {
    margin-top: 0px;
  }
}
.footer__logo {
  font-family: "GenJyuu Gothic Heavy", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 2.75rem;
  color: #FFF;
  text-decoration: none;
  width: 100%;
}
.footer__logo-sub {
  font-size: 1.5rem;
  text-decoration: none;
  font-family: "GenJyuu Gothic", sans-serif;
  font-weight: normal;
  text-align: center;
  width: 100%;
  color: #FFF;
}
@media screen and (max-width: 600px) {
  .footer__logo-sub {
    font-size: 1.2rem;
  }
}
.footer__logo-title {
  font-size: 1.58rem;
  background: #99ffff;
  color: #008CCC;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
}

.button {
  display: flex;
  flex-wrap: wrap;
}
.button .button__basic--next, .button .button__basic--prev, .button .button__basic--back, .button .button__basic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  text-align: center;
  box-sizing: border-box;
  font-size: 1.8rem;
  border-radius: 40px;
  background: #008CCC;
  color: #ffffff;
  position: relative;
  display: block;
  margin: 0 auto;
}
.button .button__basic--next:hover, .button .button__basic--prev:hover, .button .button__basic--back:hover, .button .button__basic:hover, .button .button__basic--next:focus, .button .button__basic--prev:focus, .button .button__basic--back:focus, .button .button__basic:focus {
  background: #008CCC;
  color: #ffffff;
}
.button__basic {
  padding: 2rem 9rem 2rem 10rem;
}
.button__basic::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/header-arrow-sp.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: right 0.3s ease;
  pointer-events: none;
}
.button__basic:hover {
  opacity: 0.8;
}
.button__basic:hover::after {
  right: -3px;
}
.button__basic--back {
  width: 100%;
}
.button__basic--back:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e896";
  margin-right: 0.8rem;
}
.button__basic--prev {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .button__basic--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}
.button__basic--prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cb";
  margin-right: 0.8rem;
}
.button__basic--next {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .button__basic--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}
.button__basic--next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cc";
  margin-left: 0.8rem;
}

.pagination__list,
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagination__list-item,
.pagination .page-numbers > li {
  margin: 0.3rem;
}
.pagination .pagination__link--next, .pagination .pagination__link.next,
.pagination .page-numbers > li > a--next, .pagination .pagination__link--prev, .pagination .pagination__link.prev,
.pagination .page-numbers > li > a--prev, .pagination .pagination__link,
.pagination .page-numbers > li > a {
  transition: background-color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
.pagination__link,
.pagination .page-numbers > li > a {
  background-color: #eeeeee;
  color: #1a1a1a;
}
.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
  background-color: #008CCC;
  color: #ffffff;
}
.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #1a1a1a;
}
.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cb";
  display: inline-block;
  margin-right: 0.6rem;
  transition: transform 0.2s;
}
.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
  background-color: #008CCC;
  color: #ffffff;
}
.pagination__link--prev:hover:before, .pagination__link--prev:focus:before, .pagination__link.prev:hover:before, .pagination__link.prev:focus:before,
.pagination .page-numbers > li > a--prev:hover:before,
.pagination .page-numbers > li > a--prev:focus:before,
.pagination .page-numbers > li > a.prev:hover:before,
.pagination .page-numbers > li > a.prev:focus:before {
  transform: translateX(-4px);
}
.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #1a1a1a;
}
.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5cc";
  display: inline-block;
  margin-left: 0.6rem;
  transition: transform 0.2s;
}
.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
  background-color: #008CCC;
  color: #ffffff;
}
.pagination__link--next:hover:after, .pagination__link--next:focus:after, .pagination__link.next:hover:after, .pagination__link.next:focus:after,
.pagination .page-numbers > li > a--next:hover:after,
.pagination .page-numbers > li > a--next:focus:after,
.pagination .page-numbers > li > a.next:hover:after,
.pagination .page-numbers > li > a.next:focus:after {
  transform: translateX(4px);
}
.pagination .pagination__text--dots, .pagination .pagination__text.dots,
.pagination .page-numbers > li > span--dots, .pagination .pagination__text--current, .pagination .pagination__text.current,
.pagination .page-numbers > li > span--current, .pagination .pagination__text,
.pagination .page-numbers > li > span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
.pagination__text,
.pagination .page-numbers > li > span {
  background-color: #eeeeee;
  color: #1a1a1a;
}
.pagination__text--current, .pagination__text.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
  background-color: #008CCC;
  color: #ffffff;
}
.pagination__text--dots, .pagination__text.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  background-color: #eeeeee;
  color: #1a1a1a;
}

@media screen and (min-width: 1200px) {
  .form__form-group {
    display: flex;
  }
}
.form__form-group-title {
  padding: 1rem;
}
@media screen and (min-width: 1200px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}
.form__form-group-content {
  padding: 1rem;
  display: flex;
}
@media screen and (min-width: 1200px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}
.form .form__label--required, .form .form__label--itemname, .form .form__label {
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.form__label--itemname {
  color: #1a1a1a;
}
.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  border-radius: 3px;
  background: #ffe6d3;
  color: #aaaaaa;
  font-size: 1.4rem;
}
.form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.form__list-item {
  margin-bottom: 0.6rem;
}
.form .form__input--check, .form .form__input--radio, .form .form__input--select, .form .form__input--textarea-half, .form .form__input--textarea, .form .form__input--text-half, .form .form__input--text, .form .form__input {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}
.form .form__input--select select, .form__input--select .form select, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--text input, .form__input--text .form input {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  border: 2px solid #efefef;
  background: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 旧Edge対応 */
  /* IE対応 */
}
.form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand {
  display: none;
}
.form .form__input--select select::-moz-placeholder, .form__input--select .form select::-moz-placeholder, .form .form__input--textarea-half textarea::-moz-placeholder, .form__input--textarea-half .form textarea::-moz-placeholder, .form .form__input--textarea textarea::-moz-placeholder, .form__input--textarea .form textarea::-moz-placeholder, .form .form__input--text-half input::-moz-placeholder, .form__input--text-half .form input::-moz-placeholder, .form .form__input--text input::-moz-placeholder, .form__input--text .form input::-moz-placeholder {
  color: #cccccc;
}
.form .form__input--select select::placeholder, .form__input--select .form select::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--text input::placeholder, .form__input--text .form input::placeholder {
  color: #cccccc;
}
.form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder {
  color: #cccccc;
}
.form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder {
  color: #cccccc;
}
.form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--text input, .form__input--text .form input {
  padding: 0.8rem 1.6rem;
  transition: border-color 0.4s;
}
.form .form__input--text-half input:focus, .form__input--text-half .form input:focus, .form .form__input--text input:focus, .form__input--text .form input:focus {
  border: 2px solid #008CCC;
}
.form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--textarea textarea, .form__input--textarea .form textarea {
  padding: 1.6rem;
  transition: border-color 0.4s;
}
.form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus, .form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus {
  border: 2px solid #008CCC;
}
.form__input--text-half {
  max-width: 50%;
}
.form__input--textarea-half {
  max-width: 50%;
}
.form__input--select {
  max-width: 300px;
}
.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}
.form__input--select::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #cccccc transparent transparent transparent;
  content: "";
  pointer-events: none;
}
.form__input--radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form__input--radio .radio-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.form__input--radio .radio-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
}
.form__input--radio .radio-icon:before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 50%;
  background: #008CCC;
  content: "";
  transition: opacity 0.4s;
}
.form__input--radio .radio-text {
  color: #cccccc;
  transition: color 0.4s;
}
.form__input--radio .radio-input:checked + .radio-icon {
  border-color: #008CCC;
}
.form__input--radio .radio-input:checked + .radio-icon:before {
  opacity: 1;
}
.form__input--radio .radio-input:checked ~ .radio-text {
  color: #008CCC;
}
.form__input--check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.form__input--check .check-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}
.form__input--check .check-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #cccccc;
}
.form__input--check .check-icon:after {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
  transition: opacity 0.4s;
}
.form__input--check .check-text {
  color: #cccccc;
  transition: color 0.4s;
}
.form__input--check .check-input:checked + .check-icon {
  border-color: #008CCC;
}
.form__input--check .check-input:checked + .check-icon:after {
  opacity: 1;
  transform: rotate(-45deg);
  border-bottom: 2px solid #008CCC;
  border-left: 2px solid #008CCC;
}
.form__input--check .check-input:checked ~ .check-text {
  color: #008CCC;
}

.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
}
.table-overview tr th {
  width: 16rem;
  padding: 0.8rem;
  vertical-align: top;
}
.table-overview tr td {
  width: calc(100% - 16rem);
  padding: 0.8rem 1.6rem;
  vertical-align: top;
}

.side-button {
  position: fixed;
  z-index: 1000;
  display: none;
  right: 0px;
  opacity: 0;
  bottom: 50px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 600px) {
  .side-button {
    display: block;
  }
}
.side-button__visit {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  background: #ffe100;
  color: #008CCC;
  padding: 10px 20px;
  font-weight: 700;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.side-button__visit:hover, .side-button__visit:focus {
  opacity: 0.8;
}
.side-button.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.side-button__recruit {
  margin-top: 1rem;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  background: #ffcccc;
  color: #008CCC;
  padding: 10px 20px;
  font-weight: 700;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.side-button__recruit:hover, .side-button__recruit:focus {
  opacity: 0.8;
}

@media screen and (max-width: 480px) {
  .pc_only {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_only {
    display: block;
  }
}

.mb_only {
  display: none;
}
@media screen and (max-width: 480px) {
  .mb_only {
    display: block;
  }
}

.outer_link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #008CCC;
  text-decoration: underline;
}
.outer_link__icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/link-icon-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * Page
 * -------------------------------------------------------------------
 */
@keyframes slowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.top-message__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
}
.top-message__content {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  padding: 6.4rem 10px 50rem 10px;
  box-sizing: border-box;
  max-width: 1920px;
  background-image: url("../img/top/sougoishi_areaPC.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .top-message__content {
    overflow-x: hidden;
    background-size: auto;
    padding: 6.4rem 10px 40rem 10px;
    background-image: url("../img/top/sougoishi_areaSP.jpg");
    background-position: center bottom;
  }
}
.top-message__heading {
  margin: 0 auto 3rem;
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}
.top-message__text {
  line-height: 2;
  font-size: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5rem;
}
@media screen and (max-width: 600px) {
  .top-message__text {
    font-size: 1.6rem;
  }
}
.top-message__images img {
  display: block;
  max-width: 100%;
  height: auto;
}
.top-message__images-img-1 {
  top: 10%;
  left: 4%;
  width: clamp(120px, 18vw, 225px);
  position: absolute;
  list-style-type: none;
}
.top-message__images-img-1 img {
  animation: slowBounce 4s ease-in-out infinite;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-message__images-img-1 {
    left: 1%;
    top: 2%;
    width: clamp(90px, 18vw, 155px);
  }
}
@media screen and (max-width: 600px) {
  .top-message__images-img-1 {
    left: 4%;
    top: auto;
    bottom: 19%;
  }
}
.top-message__images-img-2 {
  top: 31%;
  left: 0%;
  width: clamp(150px, 18vw, 375px);
  position: absolute;
  list-style-type: none;
}
.top-message__images-img-2 img {
  animation: slowBounce 3s ease-in-out infinite;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-message__images-img-2 {
    top: 60%;
    left: 0%;
    width: clamp(150px, 18vw, 375px);
  }
}
@media screen and (max-width: 600px) {
  .top-message__images-img-2 {
    display: none;
  }
}
.top-message__images-img-3 {
  right: 5%;
  top: 2%;
  width: clamp(150px, 18vw, 380px);
  position: absolute;
  list-style-type: none;
}
.top-message__images-img-3 img {
  animation: slowBounce 4s ease-in-out infinite;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-message__images-img-3 {
    right: 1%;
    top: -2%;
    width: clamp(120px, 18vw, 380px);
  }
}
@media screen and (max-width: 600px) {
  .top-message__images-img-3 {
    right: -3%;
    top: auto;
    bottom: 9%;
    width: clamp(250px, 18vw, 380px);
  }
}
.top-message__images-img-4 {
  right: 10%;
  top: 28%;
  width: clamp(100px, 12vw, 171px);
  position: absolute;
  list-style-type: none;
}
.top-message__images-img-4 img {
  animation: slowBounce 4s ease-in-out infinite;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-message__images-img-4 {
    right: 2%;
  }
}
@media screen and (max-width: 600px) {
  .top-message__images-img-4 {
    display: none;
  }
}
.top-message__images-img-5 {
  right: 5%;
  bottom: 35%;
  width: clamp(110px, 12vw, 245px);
  position: absolute;
  list-style-type: none;
}
.top-message__images-img-5 img {
  animation: slowBounce 4s ease-in-out infinite;
}
@media screen and (max-width: 600px) {
  .top-message__images-img-5 {
    width: clamp(170px, 12vw, 245px);
    bottom: 3%;
    left: -2%;
    right: auto;
  }
}

.top-keyword__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
}
@media screen and (max-width: 480px) {
  .top-keyword__container {
    padding: 0px;
  }
}
.top-keyword__heading {
  font-family: "Cooper Black", serif;
  margin-bottom: 0.6rem;
  margin-top: 3rem;
  font-size: 5.5rem;
  color: #008CCC;
  padding: 0px;
}
.top-keyword__sub-text {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 3.2rem;
}
.top-keyword__sub-text span {
  color: #008CCC;
}
.top-keyword__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-keyword__list {
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .top-keyword__list {
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    min-height: 620px;
  }
}
@media screen and (max-width: 480px) {
  .top-keyword__list {
    min-height: 640px;
  }
}
.top-keyword__list-item {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1/1;
  background-color: #ffe100;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .top-keyword__list-item {
    max-width: 250px;
    position: absolute;
  }
  .top-keyword__list-item:nth-child(1) {
    left: 0px;
    top: 0px;
  }
  .top-keyword__list-item:nth-child(2) {
    left: 130px;
    top: 180px;
  }
  .top-keyword__list-item:nth-child(3) {
    top: 380px;
    left: 0px;
  }
}
.top-keyword__list-item-title {
  color: #008CCC;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
.top-keyword__list-item-title span {
  color: #008CCC;
  font-size: 1.2rem;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-keyword__list-item-title {
    font-size: 1.8rem;
  }
}
.top-keyword__list-item-text {
  color: #1a1a1a;
  font-size: 1.4rem;
  margin-top: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-keyword__list-item-text {
    font-size: 1rem;
  }
}

.top-mainvisual__container {
  display: flex;
  justify-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  padding-top: 10rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .top-mainvisual__container {
    width: max(1920px, 100%);
  }
}

.top-appealpoint__img {
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}
.top-appealpoint__container {
  width: 100%;
  background: #ffe6d3;
  margin-top: 5rem;
  padding: 2rem 15px 0rem 15px;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__container {
    padding: 0rem 0rem 3rem 0rem;
  }
}
.top-appealpoint__beginning__button-blue {
  background: #008CCC;
}
.top-appealpoint__beginning__button-blue::after {
  background-image: url("../img/top/appealpoint_arrow_blue.svg");
}
.top-appealpoint__others__button-blue {
  background: #00b4ed;
}
.top-appealpoint__others__button-blue::after {
  background-image: url("../img/top/appealpoint_arrow_light_blue.svg");
}
.top-appealpoint__others__button-green {
  background: #00ab8d;
}
.top-appealpoint__others__button-green::after {
  background-image: url("../img/top/appealpoint_arrow_green.svg");
}
.top-appealpoint__container-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0px 6rem;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__container-wrapper {
    padding: 3rem 0rem 0px 0rem;
  }
}
.top-appealpoint__heading {
  font-family: "Cooper Black", serif;
  margin-bottom: 0.6rem;
  font-size: 5.5rem;
  color: #008CCC;
  padding: 0px;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__heading {
    padding: 0rem 2rem;
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__heading {
    font-size: 3.7rem;
  }
}
.top-appealpoint__sub-text {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 3.2rem;
}
.top-appealpoint__sub-text span {
  color: #008CCC;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__sub-text {
    padding: 0rem 2rem;
    font-size: 2.3rem;
  }
}
.top-appealpoint__sub-text_desc {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 0rem;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__sub-text_desc {
    padding: 0rem 2rem;
  }
}
.top-appealpoint__outer {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  background: #FFFFFF;
  border-width: 2px;
  border-style: solid;
  border-radius: 240px;
  width: 100%;
  padding: 6rem;
  position: relative;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer {
    border-radius: 0px;
    padding: 0px;
    border: none;
  }
}
.top-appealpoint__outer__column {
  width: 100%;
  display: flex;
  gap: 3.2rem;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__column {
    flex-flow: column;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.top-appealpoint__outer__column__item-middle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-appealpoint__outer__column__item {
  width: 49%;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__column__item {
    width: 100%;
  }
}
.top-appealpoint__outer__column__item_img {
  max-width: 300px;
}
.top-appealpoint__outer__text-blue {
  color: #008CCC;
}
.top-appealpoint__outer__border-blue {
  border-color: #008CCC;
}
.top-appealpoint__outer__border-blue::after {
  border-color: #008CCC;
}
.top-appealpoint__outer__text-bluedark {
  color: #00b4ed;
}
.top-appealpoint__outer__border-bluedark {
  border-color: #00b4ed;
}
.top-appealpoint__outer__border-bluedark::after {
  border-color: #00b4ed;
}
.top-appealpoint__outer__text-bluelight {
  color: #b2e8fa;
}
.top-appealpoint__outer__border-bluelight {
  border-color: #b2e8fa;
}
.top-appealpoint__outer__text-green {
  color: #00ab8d;
}
.top-appealpoint__outer__border-green {
  border-color: #00ab8d;
}
.top-appealpoint__outer__border-green::after {
  border-color: #00ab8d;
}
.top-appealpoint__outer__image-right {
  display: flex;
  gap: 3.2rem;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__image-right {
    flex-flow: column;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.top-appealpoint__outer__program-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__program-sp {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.top-appealpoint__outer__program-sp__item {
  width: 42%;
}
.top-appealpoint__outer__program-sp__img-arrow {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16%;
}
.top-appealpoint__outer__program-sp__img-arrow img {
  max-width: 100%;
}
.top-appealpoint__outer__program-sp__button {
  position: relative;
  border-radius: 20px;
  display: block;
  padding: 1.4rem;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 0px;
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.top-appealpoint__outer__program-sp__button:hover::after {
  bottom: -25px;
}
.top-appealpoint__outer__program-sp__button:hover {
  opacity: 0.8;
}
.top-appealpoint__outer__program-sp__button::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.top-appealpoint__outer__program {
  width: 100%;
}
.top-appealpoint__outer__program__beginning {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-appealpoint__outer__program__others {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.top-appealpoint__outer__program__others__item {
  width: 49%;
  max-width: 275px;
}
.top-appealpoint__outer__program__img-arrow {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-appealpoint__outer__program__img-arrow img {
  max-width: 340px;
}
.top-appealpoint__outer__program__beginning__button {
  position: relative;
  border-radius: 20px;
  display: block;
  padding: 1.4rem;
  max-width: 275px;
  width: 100%;
  box-sizing: border-box;
}
.top-appealpoint__outer__program__beginning__button:hover::after {
  right: -1px;
}
.top-appealpoint__outer__program__beginning__button:hover {
  opacity: 0.8;
}
.top-appealpoint__outer__program__beginning__button::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: right 0.3s ease;
}
.top-appealpoint__outer__program__title {
  color: #ffffff;
  font-size: 1.8rem;
}
.top-appealpoint__outer__program__text {
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1.6;
}
.top-appealpoint__outer__image-right__feature {
  width: 70%;
  box-sizing: border-box;
  padding-left: 6rem;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__image-right__feature {
    padding-top: 120px;
    width: 80%;
    padding-left: 0rem;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__outer__image-right__feature {
    padding-top: 150px;
  }
}
.top-appealpoint__outer__image-right__img {
  width: 35%;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__image-right__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    position: absolute;
    right: 0;
    left: 0;
    top: -200px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__outer__image-right__img {
    top: -170px;
  }
}
.top-appealpoint__outer__image-right__number {
  position: absolute;
  font-family: "Cooper Black", serif;
  font-size: 12rem;
  right: 50px;
  top: -50px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__image-right__number {
    right: 0;
    left: 0;
    top: -300px;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__outer__image-right__number {
    top: -270px;
  }
}
.top-appealpoint__outer__image-left {
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__image-left {
    flex-flow: column;
    align-items: center;
  }
}
.top-appealpoint__outer__image-left__number {
  position: absolute;
  font-family: "Cooper Black", serif;
  font-size: 12rem;
  left: 50px;
  top: -50px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__image-left__number {
    right: 0;
    left: 0;
    top: -220px;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__outer__image-left__number {
    top: -270px;
  }
}
.top-appealpoint__outer__image-left__img {
  width: 30%;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__image-left__img {
    width: 100%;
    max-width: 300px;
    height: auto;
    position: absolute;
    right: 0;
    left: 0;
    top: -130px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__outer__image-left__img {
    top: -170px;
  }
}
.top-appealpoint__outer__image-left__feature {
  width: 58%;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__image-left__feature {
    padding-top: 180px;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__outer__image-left__feature {
    padding-top: 150px;
  }
}
.top-appealpoint__outer__title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__title {
    text-align: center;
    font-size: 2.5;
  }
}
.top-appealpoint__outer__text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 600px) {
  .top-appealpoint__outer__text {
    font-size: 1.5rem;
  }
}
.top-appealpoint__list {
  background: #fff;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 1200px) {
  .top-appealpoint__list {
    display: flex;
    padding: 3.2rem;
  }
}
.top-appealpoint__list-item {
  padding: 2.4rem 1.6rem;
}
@media screen and (min-width: 1200px) {
  .top-appealpoint__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}
@media screen and (max-width: 600px) {
  .top-appealpoint__overflow-clipper {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
  }
  .top-appealpoint__top-dome {
    position: relative;
    z-index: 1;
    background: white;
    overflow: visible;
    margin-top: 300px;
  }
  .top-appealpoint__top-dome::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 140vw;
    height: 50vw;
    background: #FFFFFF;
    border-width: 3px;
    border-style: solid;
    border-bottom: none;
    border-radius: 50% 50% 0 0/100% 100% 0 0;
    box-sizing: border-box;
    z-index: -1;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__top-dome {
    margin-top: 250px;
  }
}
@media screen and (max-width: 600px) {
  .top-appealpoint__bottom-dome {
    position: relative;
    z-index: 1;
    background: white;
    overflow: visible;
    margin-bottom: 150px;
  }
  .top-appealpoint__bottom-dome::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140vw;
    height: 50vw;
    background: #FFFFFF;
    border-width: 3px;
    border-style: solid;
    border-top: none;
    border-radius: 0 0 50% 50%/0 0 100% 100%;
    box-sizing: border-box;
    z-index: -1;
  }
}
@media screen and (max-width: 480px) {
  .top-appealpoint__bottom-dome {
    margin-bottom: 120px;
  }
}

.top-access__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
}
.top-access__heading {
  font-family: "Cooper Black", serif;
  text-align: center;
  margin-bottom: 0.6rem;
  font-size: 5.5rem;
  color: #008CCC;
  padding: 0px;
}
@media screen and (max-width: 600px) {
  .top-access__heading {
    padding: 0rem 3rem;
    white-space: nowrap;
    font-size: 4.5rem;
  }
}
.top-access__sub-text {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 3.2rem;
  text-align: center;
}
.top-access__sub-text span {
  color: #008CCC;
}
@media screen and (max-width: 600px) {
  .top-access__sub-text {
    padding: 0rem 3rem;
  }
}
.top-access__content {
  display: flex;
  width: 100%;
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 600px) {
  .top-access__content {
    flex-direction: column;
  }
}
.top-access__content__feature {
  flex: 1;
  width: 100%;
}
.top-access__content__feature__address {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.top-access__content__feature__address span {
  font-size: 2.4rem;
  font-weight: 500;
}
.top-access__content__feature address {
  font-style: normal;
  font-size: 1.6rem;
}
.top-access__content__feature__list-title {
  font-size: 1.7rem;
  font-weight: 300;
  color: #008CCC;
}
.top-access__content__map {
  flex: 1;
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .top-access__content__map {
    order: -1;
  }
}
.top-access__content__map__responsive {
  flex: 1;
}
.top-access__content__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 600px) {
  .top-access__content__map iframe {
    height: 300px;
  }
}

.top-collective__container {
  width: 100%;
  margin-top: 5rem;
  box-sizing: border-box;
  max-width: 1920px;
  background-image: url("../img/top/sougoishi.png");
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .top-collective__container {
    background-image: url("../img/top/sougoishi_SP.png");
    height: 485px;
  }
}
.top-collective__heading {
  margin: 0 auto 3rem;
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
}
.top-collective__wrapper__inner {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .top-collective__wrapper__inner {
    margin-top: 20px;
  }
}
.top-collective__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .top-collective__wrapper {
    flex-direction: column;
    justify-content: start;
    align-items: top;
    position: relative;
  }
}
.top-collective__list {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin-top: 4rem;
  padding: 0;
}
.top-collective__list li:first-child {
  margin-right: 5rem;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-collective__list {
    padding: 0px 15px;
  }
}
@media screen and (max-width: 600px) {
  .top-collective__list {
    flex-direction: column;
    position: absolute;
    bottom: 30px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .top-collective__list li:first-child {
    margin-right: 0rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-collective__list-item {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .top-collective__list-item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.top-collective__list-link {
  position: relative;
  background: #FFFFFF;
  text-align: center;
  padding: 5rem 0rem;
  min-width: 480px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  display: block;
  font-size: 2.4rem;
  color: #008CCC;
  font-weight: bold;
  border-radius: 20px;
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .top-collective__list-link {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .top-collective__list-link {
    max-width: 90%;
    font-size: 2.2rem;
    padding: 3rem 0rem;
    min-width: auto;
  }
}
.top-collective__list-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../img/banner-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: right 0.3s ease;
}
.top-collective__list-link:hover::after {
  right: -3px;
}
.top-collective__list-link:hover {
  opacity: 0.8;
}

.introduction-message__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  padding: 3rem 15px 0px 15px !important;
}
.introduction-message__container__wrapper {
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 600px) {
  .introduction-message__container__wrapper {
    flex-direction: column;
  }
}
.introduction-message__container__wrapper__item {
  width: 100%;
}
.introduction-message__container__wrapper__item-text {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .introduction-message__container__wrapper__item-text {
    font-size: 1.6rem;
  }
}
.introduction-message__container__wrapper__item-name {
  text-align: right;
  padding: 20px 0px;
}
@media screen and (max-width: 600px) {
  .introduction-message__container__wrapper__item-name {
    text-align: left;
  }
}
.introduction-message__container__wrapper__item-name span {
  font-size: 2.4rem;
}
.introduction-message__container__wrapper__item-title {
  position: relative;
  font-size: 3.2rem;
  color: #008CCC;
  padding: 0px 0px 0px 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .introduction-message__container__wrapper__item-title {
    padding: 60px 0px 0px 0px;
    text-align: center;
  }
}
.introduction-message__container__wrapper__item-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 47px;
  height: 47px;
  background-image: url("../img/introduction/mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .introduction-message__container__wrapper__item-title::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
.introduction-message__container__wrapper__img {
  width: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .introduction-message__container__wrapper__img {
    width: 100%;
    max-width: 300px;
    margin: 0px auto;
  }
}

.introduction-steps__container {
  width: 100%;
  background: #ffe6d3;
  position: relative;
}
.introduction-steps__container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 40%;
  width: 250px;
  height: 250px;
  background-image: url("../img/introduction/steps-pc.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .introduction-steps__container::after {
    top: 0%;
    left: 0px;
    width: clamp(150px, 18vw, 200px);
    height: clamp(150px, 18vw, 200px);
    background-image: url("../img/introduction/steps-sp.svg");
  }
}
.introduction-steps__container__wrapper {
  width: 100%;
  height: 550px;
  display: flex;
  background-image: url("../img/introduction/building-sp.png");
  background-repeat: no-repeat;
  background-size: 50% 100%;
  background-position: left center;
}
@media screen and (max-width: 1024px) {
  .introduction-steps__container__wrapper {
    height: auto;
    background-image: none;
  }
}
.introduction-steps__container__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  display: flex;
  justify-content: flex-end;
  padding: 0px !important;
}
@media screen and (max-width: 1024px) {
  .introduction-steps__container__content {
    padding: 8rem 0px 0px 0px !important;
  }
}
.introduction-steps__container__content__item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .introduction-steps__container__content__item {
    width: 100%;
  }
}
.introduction-steps__container__content__item-outer {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .introduction-steps__container__content__item-outer {
    width: 100%;
  }
}
.introduction-steps__container__content__item-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .introduction-steps__container__content__item-title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.introduction-steps__container__content__item-text {
  font-size: 1.8rem;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .introduction-steps__container__content__item-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .introduction-steps__container__content__item-text {
    padding: 0px 20px 30px 20px;
    box-sizing: border-box;
  }
}
.introduction-steps__container__content__item-img {
  display: none;
}
@media screen and (max-width: 1024px) {
  .introduction-steps__container__content__item-img {
    display: block;
    width: 100%;
  }
}

.introduction-info__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
}
.introduction-info__container__wrapper {
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: stretch;
}
@media screen and (max-width: 600px) {
  .introduction-info__container__wrapper {
    flex-direction: column;
  }
}
.introduction-info__container__wrapper__item {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  background: #d9f4fc;
  padding: 3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .introduction-info__container__wrapper__item {
    padding: 1.5rem;
  }
}
.introduction-info__container__wrapper__item-title {
  border: 2px solid #008CCC;
  margin: 0px auto 30px;
  text-align: center;
  width: 180px;
  color: #008CCC;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 40px;
  padding: 0.6rem 0;
  box-sizing: border-box;
}
.introduction-info__container__wrapper__item-text {
  text-align: right;
}
.introduction-info__container__wrapper__item__list {
  margin: 0px 0px 15px 0px;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .introduction-info__container__wrapper__item__list {
    font-size: 1.5rem;
  }
}
.introduction-info__container__wrapper__item__list-border {
  border-bottom: 1px solid #008CCC;
  padding: 0px 0px 10px 0px;
}
.introduction-info__container__wrapper__item__list-blue {
  color: #008CCC;
}
.introduction-info__container__wrapper__item__list-bold {
  font-size: 3rem;
  font-weight: bold;
}
.introduction-info__container__wrapper__item__list-bottom {
  display: flex;
  align-items: flex-end;
}

.introduction-approach {
  margin: 50px 0px;
}
.introduction-approach__container {
  width: 100%;
  background: #ffe6d3;
  position: relative;
}
.introduction-approach__container__wrapper {
  width: 100%;
  height: 680px;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .introduction-approach__container__wrapper {
    height: auto;
  }
}
.introduction-approach__container__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  display: flex;
  padding: 0px !important;
}
@media screen and (max-width: 1024px) {
  .introduction-approach__container__content {
    padding: 8rem 0px 0px 0px !important;
    flex-direction: column;
  }
}
.introduction-approach__container__content__item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .introduction-approach__container__content__item {
    width: 100%;
  }
  .introduction-approach__container__content__item figure {
    padding: 0px 30px 50px 30px;
  }
}
.introduction-approach__container__content__item-outer {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .introduction-approach__container__content__item-outer {
    width: 100%;
  }
}
.introduction-approach__container__content__item-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .introduction-approach__container__content__item-title {
    text-align: center;
    font-size: 2, 8rem;
  }
}
.introduction-approach__container__content__item-text {
  font-size: 1.8rem;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .introduction-approach__container__content__item-text {
    padding: 0px 20px 30px 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .introduction-approach__container__content__item-text {
    font-size: 1.6rem;
  }
}
.introduction-approach__container__content__item-img {
  display: none;
}
@media screen and (max-width: 1024px) {
  .introduction-approach__container__content__item-img {
    display: block;
    width: 40%;
    margin: 0px auto 30px;
  }
}

.introduction-files__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
}
.introduction-files__container__wrapper {
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: stretch;
}
@media screen and (max-width: 600px) {
  .introduction-files__container__wrapper {
    flex-direction: column;
  }
}
.introduction-files__container__wrapper__item {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  background: #d9f4fc;
  padding: 3rem;
  box-sizing: border-box;
}
.introduction-files__container__wrapper__item-title {
  border: 2px solid #008CCC;
  margin: 0px auto 30px;
  text-align: center;
  width: 180px;
  color: #008CCC;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 40px;
  padding: 0.6rem 0;
  box-sizing: border-box;
}
.introduction-files__container__wrapper__item-text {
  text-align: right;
}
.introduction-files__container__wrapper__item__list {
  margin: 0px;
  position: relative;
  list-style: none;
  width: 100%;
  padding: 0px;
}
.introduction-files__container__wrapper__item__list-link {
  position: relative;
  padding: 0px 0px 12px 40px;
  font-size: 1.2rem;
  color: #1a1a1a;
  border-bottom: 1px solid #008CCC;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.introduction-files__container__wrapper__item__list-link::after {
  content: url("../img/introduction/pdf_icon.svg");
  display: inline-block;
  position: absolute;
  top: -5px;
  left: 0px;
  width: 32px;
  height: 32px;
  z-index: 1;
}
.introduction-files__container__wrapper__item__list-link:hover {
  text-decoration: underline;
}
.introduction-files__container__wrapper__item__list-blue {
  color: #008CCC;
}
.introduction-files__container__wrapper__item__list-bold {
  font-size: 3rem;
  font-weight: bold;
}
.introduction-files__container__wrapper__item__list-bottom {
  display: flex;
  align-items: flex-end;
}

.messages-message__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  padding: 6rem 15px 0px 15px !important;
}
.messages-message__container__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 40px auto 100px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .messages-message__container__wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .messages-message__container__wrapper {
    margin: 40px 0px;
  }
}
.messages-message__container__wrapper::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  border: 13px solid #f0ecfa;
  box-sizing: border-box;
  right: 0;
  z-index: -1;
  border: none;
}
.messages-message__container__wrapper::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  border: 13px solid #b2e8fa;
  box-sizing: border-box;
  right: 0;
  z-index: -1;
}
.messages-message__container__wrapper--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .messages-message__container__wrapper--reverse {
    flex-direction: column;
  }
}
.messages-message__container__wrapper--reverse::before {
  border: none;
  background: #d9f4fc;
  width: 95vw;
  right: auto;
  left: 0;
}
.messages-message__container__wrapper--reverse::after {
  display: none;
}
.messages-message__container__wrapper-img {
  width: 550px;
  margin-top: -80px;
}
@media screen and (max-width: 1024px) {
  .messages-message__container__wrapper-img {
    margin-left: 50px;
  }
}
.messages-message__container__wrapper-img img {
  width: 550px;
}
@media screen and (max-width: 600px) {
  .messages-message__container__wrapper-img {
    width: 100%;
    margin-left: 0px;
  }
  .messages-message__container__wrapper-img img {
    width: 100%;
  }
}
.messages-message__container__wrapper-img--extra {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .messages-message__container__wrapper-img--extra {
    margin-bottom: 0px;
  }
}
.messages-message__container__wrapper__item {
  width: 600px;
  padding: 55px 48px 53px 48px;
}
@media screen and (max-width: 1024px) {
  .messages-message__container__wrapper__item {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .messages-message__container__wrapper__item {
    padding: 30px;
  }
}
.messages-message__container__wrapper__item-title {
  font-size: 3.2rem;
  color: #008CCC;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .messages-message__container__wrapper__item-title {
    font-size: 2.8rem;
  }
}
.messages-message__container__wrapper__item-text {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .messages-message__container__wrapper__item-text {
    font-size: 1.6rem;
  }
}
.messages-message__container__wrapper__item-name {
  text-align: right;
  padding: 20px 0px 0px 0px;
}
.messages-message__container__wrapper__item-name span {
  font-weight: bold;
  display: inline-block;
  padding-left: 10px;
  font-size: 2rem;
}

.environment__container {
  width: 100%;
  background: #ffe6d3;
  position: relative;
}
.environment__container-white {
  background: #fff;
}
.environment__container__wrapper {
  width: 100%;
  height: auto;
  display: flex;
}
.environment__container__content {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0px !important;
}
@media screen and (max-width: 1024px) {
  .environment__container__content-order {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .environment__container__content-reverse {
    flex-direction: column-reverse;
  }
}
.environment__container__content__item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 0px;
}
@media screen and (max-width: 1024px) {
  .environment__container__content__item {
    width: 100%;
  }
}
.environment__container__content__item-outer {
  width: 100%;
}
.environment__container__content__item-outer img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .environment__container__content__item-outer {
    width: 100%;
  }
}
.environment__container__content__item-inner {
  padding: 0px 6rem;
}
@media screen and (max-width: 1024px) {
  .environment__container__content__item-inner {
    padding: 6rem 6rem 0px 6rem;
  }
}
@media screen and (max-width: 600px) {
  .environment__container__content__item-inner {
    padding: 3rem 1rem 0px 1rem;
  }
}
.environment__container__content__item-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .environment__container__content__item-title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.environment__container__content__item-text {
  font-size: 1.8rem;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .environment__container__content__item-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .environment__container__content__item-text {
    padding: 0px 10px 20px 10px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1024px) {
  .environment__container__content__item-img {
    display: block;
    width: 100%;
  }
}

.initial_training__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  position: relative;
}
.initial_training__container__content {
  width: 100%;
  padding-bottom: 4rem;
}
.initial_training__container__content-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0px;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .initial_training__container__content-title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.initial_training__container__content-unit {
  width: 100%;
  display: flex;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .initial_training__container__content-unit {
    flex-direction: column;
  }
}
.initial_training__container__content-unit-title {
  border: 2px solid #008CCC;
  justify-content: center;
  width: 30%;
  min-width: 320px;
  color: #008CCC;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  padding: 0rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .initial_training__container__content-unit-title {
    min-width: auto;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.2rem;
  }
}
.initial_training__container__content-unit-text {
  padding-left: 3rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.initial_training__container__content-unit-text p {
  margin-bottom: 0rem !important;
}
@media screen and (max-width: 600px) {
  .initial_training__container__content-unit-text {
    padding-left: 0rem;
  }
}
.initial_training__container__content-list {
  width: 100%;
  list-style: none;
  padding: 0px 0px 0px 0rem;
}
.initial_training__container__content-list-item {
  position: relative;
  margin-bottom: 1rem;
  padding: 0px 0px 0px 1rem;
}
.initial_training__container__content-list-item::before {
  content: "●";
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 0.6rem;
  color: #008CCC;
}
.initial_training__container__content-list-secondary {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0px 0px 0px 0rem;
}
@media screen and (max-width: 600px) {
  .initial_training__container__content-list-secondary {
    flex-direction: column;
  }
}
.initial_training__container__content-list-item-secondary {
  position: relative;
  margin-bottom: 1rem;
  padding: 0px 0px 0px 1rem;
  margin-right: 2rem;
}
.initial_training__container__content-list-item-secondary::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: #008CCC;
}
.initial_training__container__content-text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  width: 100%;
}
.initial_training__container__content-text strong {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .initial_training__container__content-text strong {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .initial_training__container__content-text {
    padding: 0px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .initial_training__container__content-text {
    font-size: 1.6rem;
    padding: 0px 2rem 2rem 2rem 2rem;
  }
}
.initial_training__container__content__item-img {
  display: none;
}
@media screen and (max-width: 1024px) {
  .initial_training__container__content__item-img {
    display: block;
    width: 40%;
    margin: 0px auto 30px;
  }
}

.late_training__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  position: relative;
}
.late_training__container__content {
  width: 100%;
  padding-bottom: 4rem;
}
.late_training__container__content-inner-bg {
  background: #ffe6d3;
  padding: 3rem 3rem 0px 3rem;
  box-sizing: border-box;
  width: 100%;
  border-radius: 20px;
}
.late_training__container__content-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0px;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .late_training__container__content-title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.late_training__container__content__sub-title {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 2rem;
}
.late_training__container__content__sub-title span {
  color: #008CCC;
}
.late_training__container__content-unit {
  width: 100%;
  display: flex;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .late_training__container__content-unit {
    flex-direction: column;
  }
}
.late_training__container__content-unit-title {
  border: 2px solid #008CCC;
  justify-content: center;
  background: #fff;
  min-width: 320px;
  color: #008CCC;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .late_training__container__content-unit-title {
    min-width: auto;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.2rem;
  }
}
.late_training__container__content-unit-text {
  padding-left: 3rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.late_training__container__content-unit-text p {
  margin-bottom: 0rem !important;
}
@media screen and (max-width: 600px) {
  .late_training__container__content-unit-text {
    padding-left: 0rem;
  }
}
.late_training__container__content-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0px 0px 0px 0rem;
}
@media screen and (max-width: 600px) {
  .late_training__container__content-list {
    flex-direction: column;
  }
}
.late_training__container__content-list-item {
  position: relative;
  margin-bottom: 1rem;
  padding: 0px 0px 0px 1rem;
  margin-right: 2rem;
}
.late_training__container__content-list-item::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: #008CCC;
}
.late_training__container__content-text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  width: 100%;
}
.late_training__container__content-text strong {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .late_training__container__content-text strong {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .late_training__container__content-text {
    padding: 0px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .late_training__container__content-text {
    font-size: 1.6rem;
    padding: 0px 2rem 2rem 2rem 2rem;
  }
}
.late_training__container__content__item-img {
  display: none;
}
@media screen and (max-width: 1024px) {
  .late_training__container__content__item-img {
    display: block;
    width: 40%;
    margin: 0px auto 30px;
  }
}

.other_training__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  position: relative;
}
.other_training__container__content {
  width: 100%;
  padding-bottom: 4rem;
}
.other_training__container__content-comment {
  width: 100%;
  background: #ffe6d3;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 20px;
}
.other_training__container__content-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0px;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .other_training__container__content-title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.other_training__container__content__sub-title {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
  padding: 0px 0px 0px 32px;
}
.other_training__container__content__sub-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/other_training/comment.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.other_training__container__content-unit {
  width: 100%;
  display: flex;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .other_training__container__content-unit {
    flex-direction: column;
  }
}
.other_training__container__content-unit-title {
  border: 2px solid #008CCC;
  justify-content: center;
  min-width: 320px;
  color: #008CCC;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .other_training__container__content-unit-title {
    min-width: auto;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.2rem;
  }
}
.other_training__container__content-unit-text {
  padding-left: 3rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.other_training__container__content-unit-text p {
  margin-bottom: 0rem !important;
}
@media screen and (max-width: 600px) {
  .other_training__container__content-unit-text {
    padding-left: 0rem;
  }
}
.other_training__container__content-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0px 0px 0px 0rem;
}
@media screen and (max-width: 600px) {
  .other_training__container__content-list {
    flex-direction: column;
  }
}
.other_training__container__content-list-item {
  position: relative;
  margin-bottom: 1rem;
  padding: 0px 0px 0px 1rem;
  margin-right: 2rem;
}
.other_training__container__content-list-item::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: #008CCC;
}
.other_training__container__content-text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  width: 100%;
}
.other_training__container__content-text strong {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .other_training__container__content-text strong {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .other_training__container__content-text {
    padding: 0px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .other_training__container__content-text {
    font-size: 1.6rem;
    padding: 0px 2rem 2rem 2rem 2rem;
  }
}
.other_training__container__content__item-img {
  display: none;
}
@media screen and (max-width: 1024px) {
  .other_training__container__content__item-img {
    display: block;
    width: 40%;
    margin: 0px auto 30px;
  }
}

.requirements__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  position: relative;
}
.requirements__container__content {
  width: 100%;
}
.requirements__container__content-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0px;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .requirements__container__content-title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.requirements__container__content-list {
  width: 100%;
  display: flex;
  border-top: 1px solid #008CCC;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .requirements__container__content-list {
    flex-direction: column;
  }
}
.requirements__container__content-list-title {
  width: 20%;
  padding: 2rem 3rem;
  font-size: 2rem;
  background: #d9f4fc;
  font-weight: bold;
  border-bottom: 1px solid #008CCC;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .requirements__container__content-list-title {
    width: 100%;
  }
}
.requirements__container__content-list-text {
  width: 80%;
  padding: 2rem 3rem;
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: 1px solid #008CCC;
  box-sizing: border-box;
}
.requirements__container__content-list-text strong {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .requirements__container__content-list-text {
    width: 100%;
  }
}
.requirements__container__content-list-link {
  text-decoration: underline;
  color: #008CCC;
}
.requirements__container__content-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding: 0px 0px 0px 0rem;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .requirements__container__content-group {
    flex-direction: column;
  }
}
.requirements__container__content-group-item {
  position: relative;
  margin-bottom: 0.5rem;
  padding: 0px 0px 0px 1rem;
}
.requirements__container__content-group-item::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: #008CCC;
}
.requirements__container__content-list-unit {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .requirements__container__content-list-unit {
    flex-direction: column;
  }
}
.requirements__container__content-list-unit-title {
  width: 20%;
  font-size: 1.6rem;
  font-weight: bold;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .requirements__container__content-list-unit-title {
    width: 100%;
  }
}
.requirements__container__content-list-unit-text {
  width: 80%;
  font-size: 1.6rem;
  line-height: 2;
  box-sizing: border-box;
}
.requirements__container__content-list-unit-text strong {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .requirements__container__content-list-unit-text {
    width: 100%;
  }
}

.scholarship__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  position: relative;
}
.scholarship__container__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .scholarship__container__wrapper {
    flex-direction: column;
  }
}
.scholarship__container__wrapper__item {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .scholarship__container__wrapper__item {
    width: 100%;
  }
}
.scholarship__container__content {
  width: 100%;
  padding-bottom: 4rem;
}
.scholarship__container__content-contact {
  width: 100%;
  box-sizing: border-box;
}
.scholarship__container__content-contact-title {
  border-radius: 20px 20px 0px 0px;
  background: #008CCC;
  text-align: center;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 1.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .scholarship__container__content-contact-title {
    font-size: 2rem;
  }
}
.scholarship__container__content-contact-text {
  width: 100%;
  background: #ffe6d3;
  padding: 2rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  border-radius: 0px 0px 20px 20px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .scholarship__container__content-contact-text {
    text-align: left;
  }
}
.scholarship__container__content-contact-text span {
  font-size: 2rem;
  font-weight: bold;
}
.scholarship__container__content-contact-text a {
  color: #008CCC;
  text-decoration: underline;
}
.scholarship__container__content-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0px;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .scholarship__container__content-title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.scholarship__container__content__sub-title {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
  padding: 0px 0px 0px 0px;
}
.scholarship__container__content__sub-title span {
  color: #008CCC;
}
.scholarship__container__content-unit {
  width: 100%;
  display: flex;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .scholarship__container__content-unit {
    flex-direction: column;
  }
}
.scholarship__container__content-unit-title {
  border: 2px solid #008CCC;
  justify-content: center;
  min-width: 240px;
  color: #008CCC;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .scholarship__container__content-unit-title {
    min-width: auto;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.2rem;
  }
}
.scholarship__container__content-unit-text {
  padding-left: 3rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.scholarship__container__content-unit-text p {
  margin-bottom: 0rem !important;
}
@media screen and (max-width: 600px) {
  .scholarship__container__content-unit-text {
    padding-left: 0rem;
  }
}
.scholarship__container__content-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 0px 0px 0px 0rem;
}
@media screen and (max-width: 600px) {
  .scholarship__container__content-list {
    flex-direction: column;
  }
}
.scholarship__container__content-list-item {
  position: relative;
  margin-bottom: 0.5rem;
  padding: 0px 0px 0px 1rem;
  margin-right: 2rem;
}
.scholarship__container__content-list-item::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.6rem;
  color: #008CCC;
}
.scholarship__container__content-text {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 2;
  width: 100%;
}
.scholarship__container__content-text strong {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .scholarship__container__content-text strong {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .scholarship__container__content-text {
    padding: 0px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 600px) {
  .scholarship__container__content-text {
    font-size: 1.6rem;
    padding: 0px 2rem 2rem 2rem 2rem;
  }
}
.scholarship__container__content__item-img {
  display: none;
}
@media screen and (max-width: 1024px) {
  .scholarship__container__content__item-img {
    display: block;
    width: 40%;
    margin: 0px auto 30px;
  }
}

.practice__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
  position: relative;
}
.practice__container__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .practice__container__wrapper {
    flex-direction: column;
  }
}
.practice__container__wrapper__item {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .practice__container__wrapper__item {
    width: 100%;
  }
}
.practice__container__content {
  width: 100%;
  padding-bottom: 4rem;
}
.practice__container__content-contact {
  width: 100%;
  box-sizing: border-box;
}
.practice__container__content-contact-title {
  border-radius: 20px 20px 0px 0px;
  background: #008CCC;
  text-align: center;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 1.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .practice__container__content-contact-title {
    font-size: 2rem;
  }
}
.practice__container__content-contact-text {
  width: 100%;
  background: #ffe6d3;
  padding: 2rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  border-radius: 0px 0px 20px 20px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .practice__container__content-contact-text {
    text-align: left;
  }
}
.practice__container__content-contact-text span {
  font-size: 2rem;
  font-weight: bold;
}
.practice__container__content-contact-text a {
  color: #008CCC;
  text-decoration: underline;
}
.practice__container__content-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0px;
  color: #008CCC;
}
@media screen and (max-width: 1024px) {
  .practice__container__content-title {
    text-align: center;
    font-size: 2.8rem;
  }
}
.practice__container__content__sub-title {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
  padding: 0px 0px 0px 0px;
}
.practice__container__content__sub-title span {
  color: #008CCC;
}
.practice__container__content-unit {
  width: 100%;
  display: flex;
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .practice__container__content-unit {
    flex-direction: column;
  }
}
.practice__container__content-unit-title {
  border: 2px solid #008CCC;
  justify-content: center;
  min-width: 240px;
  color: #008CCC;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .practice__container__content-unit-title {
    min-width: auto;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1.2rem;
  }
}
.practice__container__content-unit-text {
  padding-left: 3rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.practice__container__content-unit-text p {
  margin-bottom: 0rem !important;
}
@media screen and (max-width: 600px) {
  .practice__container__content-unit-text {
    padding-left: 0rem;
  }
}
.practice__container__content-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #008CCC;
}
@media screen and (max-width: 600px) {
  .practice__container__content-list {
    flex-direction: column;
  }
}
.practice__container__content-list-title {
  width: 20%;
  padding: 2rem 3rem;
  font-size: 2rem;
  background: #d9f4fc;
  font-weight: bold;
  border-bottom: 1px solid #008CCC;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .practice__container__content-list-title {
    width: 100%;
  }
}
.practice__container__content-list-text {
  width: 80%;
  padding: 2rem 3rem;
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: 1px solid #008CCC;
  box-sizing: border-box;
}
.practice__container__content-list-text strong {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .practice__container__content-list-text {
    width: 100%;
  }
}
.practice__container__content-list-counter {
  counter-reset: listnum;
  list-style-type: none;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
.practice__container__content-list-counter__item {
  width: 100%;
  position: relative;
  padding: 0px 0px 0.8rem 1.6rem;
}
.practice__container__content-list-counter__item::before {
  content: counter(listnum) ".";
  position: absolute;
  font-weight: 700;
  top: 0px;
  left: 0;
  counter-increment: listnum;
  color: #008CCC;
}

.common-link__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
}
.common-link__list {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}
@media (max-width: 840px) {
  .common-link__list {
    flex-direction: column;
    justify-content: start;
    align-items: top;
    gap: 2rem;
  }
}
.common-link__list-item {
  width: 20%;
}
@media (max-width: 840px) {
  .common-link__list-item {
    width: 100%;
  }
  .common-link__list-item br {
    display: none;
  }
}
.common-link__list-item-link {
  width: 100%;
  display: block;
  position: relative;
  border: 2px;
  border-style: solid;
  border-radius: 50px;
  padding: 0rem 3rem 0rem 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  height: 70px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .common-link__list-item-link {
    font-size: 1.5rem;
  }
}
.common-link__list-item-link:hover::after {
  right: -1px;
}
.common-link__list-item-link:hover {
  opacity: 0.8;
}
.common-link__list-item-link-offial {
  color: #008CCC;
  border-color: #008CCC;
}
.common-link__list-item-link-offial::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/banner-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: right 0.3s ease;
}
.common-link__list-item-link-blog {
  color: #008CCC;
  border-color: #008CCC;
}
.common-link__list-item-link-blog::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/link-icon-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: right 0.3s ease;
}
.common-link__list-item-link-site {
  color: #00ab8d;
  border-color: #00ab8d;
}
.common-link__list-item-link-site::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../img/link-icon-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: right 0.3s ease;
}
.common-link__list-item-link-contact {
  background: #ffe100;
  color: #008CCC;
  padding-left: 0;
  padding-right: 0;
  border: none;
  justify-content: center;
}

.common-catch {
  margin-top: 100px;
  margin-bottom: 50px;
  height: 315px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .common-catch {
    height: auto;
    margin-top: 0px;
    margin-bottom: 30px;
  }
}
.common-catch__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 15px;
}
.common-catch__bottom-clip-container {
  width: 100%;
  max-width: 1000px;
  height: 315px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .common-catch__bottom-clip-container {
    height: 215px;
  }
}
.common-catch__bottom-clip-container::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background-color: #008CCC;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  z-index: 0;
}
@media screen and (max-width: 600px) {
  .common-catch__bottom-clip-container::after {
    aspect-ratio: 2/1;
  }
}
.common-catch__bottom-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .common-catch__bottom-content {
    top: 65%;
  }
}
.common-catch__bottom-heading {
  font-size: 5.5rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .common-catch__bottom-heading {
    font-size: 2.4rem;
  }
}/*# sourceMappingURL=style.css.map */