@charset "UTF-8";
html {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body {
  color: #4c4c4c;
  font-family: "M PLUS Rounded 1c", sans-serif;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body.menu_open_fixed header::after {
  width: 100%;
  height: 100vh;
  border-radius: 0;
  transform: translate(0, 0);
}
html body header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  html body header {
    background-color: transparent;
    position: absolute;
  }
}
html body header::after {
  content: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transform: translate(40%, -50%);
  transition: ease 0.4s;
  background-color: #ffd249;
}
@media screen and (max-width: 991px) {
  html body header::after {
    content: "";
  }
}
html body header .header_inner {
  display: flex;
  align-items: center;
  padding: 0.75rem 3rem;
}
@media screen and (max-width: 1199px) {
  html body header .header_inner {
    padding: 0.625rem 1rem;
  }
}
@media screen and (max-width: 991px) {
  html body header .header_inner {
    width: 100%;
    padding: 0.625rem 1rem 0 1rem;
  }
}
html body header .header_inner .logo_wrapper {
  position: relative;
  z-index: 2;
}
html body header .header_inner .logo_wrapper a {
  display: inline-block;
}
html body header .header_inner .logo_wrapper a img {
  width: 138px;
}
html body header .header_inner .link_en {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
html body header .header_inner .link_en .wpml-ls {
  padding: 0;
}
html body header .header_inner .link_en .wpml-ls a {
  font-size: 0.875rem;
  padding: 0;
}
html body header .header_inner .link_en .external_link_icon {
  width: 15px;
}
html body header .header_inner .pc_nav {
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  html body header .header_inner .pc_nav {
    display: none;
  }
}
html body header .header_inner .pc_nav nav ul {
  display: flex;
  align-items: center;
}
html body header .header_inner .pc_nav nav ul .sp_only {
  display: none;
}
html body header .header_inner .pc_nav nav ul li {
  text-align: center;
}
html body header .header_inner .pc_nav nav ul li a {
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  padding: 0.1rem 1rem;
  letter-spacing: 0.1em;
  border-right: 1px solid #707070;
  position: relative;
}
@media screen and (max-width: 1400px) {
  html body header .header_inner .pc_nav nav ul li a {
    font-size: 0.75rem;
    padding: 0.1rem 0.75rem;
  }
}
@media screen and (max-width: 1199px) {
  html body header .header_inner .pc_nav nav ul li a {
    font-size: 0.625rem;
  }
}
html body header .header_inner .pc_nav nav ul li a:hover::before, html body header .header_inner .pc_nav nav ul li a:hover::after {
  width: calc(50% - 1rem);
}
html body header .header_inner .pc_nav nav ul li a::before, html body header .header_inner .pc_nav nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #fc637e;
  transition: ease 0.4s;
}
html body header .header_inner .pc_nav nav ul li a::before {
  left: 50%;
}
html body header .header_inner .pc_nav nav ul li a::after {
  right: 50%;
}
html body header .header_inner .pc_nav nav ul li.contact_nav a {
  border-right: none;
  padding-right: 0;
}
html body header .header_inner .menu_button_wrapper {
  z-index: 11;
  display: none;
  position: fixed;
  top: 0.625rem;
  right: 1rem;
  /* #menu-open */
}
@media screen and (max-width: 991px) {
  html body header .header_inner .menu_button_wrapper {
    display: block;
  }
}
html body header .header_inner .menu_button_wrapper #menuButton {
  color: #fff;
  font-size: 0.625rem;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 13px 10px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}
html body header .header_inner .menu_button_wrapper #menuButton span {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #fc637e;
  transition: 0.4s;
}
html body header .header_inner .menu_button_wrapper #menuButton span::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fc637e;
  opacity: 1;
  transition: 0.4s;
}
html body header .header_inner .menu_button_wrapper #menuButton span::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fc637e;
  transition: 0.4s;
}
html body header .header_inner .menu_button_wrapper.menu_open #menuButton span {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0, 0) rotate(45deg);
}
html body header .header_inner .menu_button_wrapper.menu_open #menuButton span::before {
  transition: 0.4s;
  opacity: 0;
}
html body header .header_inner .menu_button_wrapper.menu_open #menuButton span::after {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0px, -7px) rotate(90deg);
}
html body header .header_inner .sp_nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: 0.4s ease-in;
  z-index: 10;
  opacity: 0;
}
html body header .header_inner .sp_nav nav {
  height: 100%;
  padding: 4rem 1rem 0;
}
html body header .header_inner .sp_nav nav ul {
  background-color: #fff;
  border-radius: 1.25rem;
}
html body header .header_inner .sp_nav nav ul .sp_only {
  display: block;
}
html body header .header_inner .sp_nav nav ul li {
  padding: 0 1rem;
  opacity: 0;
  transition: 0.6s;
}
html body header .header_inner .sp_nav nav ul li a {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
  padding: 0.75rem 1.25rem;
  position: relative;
  border-bottom: 1px dotted #dddddd;
}
@media screen and (max-width: 767px) {
  html body header .header_inner .sp_nav nav ul li a {
    font-size: 0.875rem;
  }
}
html body header .header_inner .sp_nav nav ul li a:after {
  content: "▶︎";
  color: #fc637e;
  top: 0.75rem;
  right: 0;
  position: absolute;
}
html body header .header_inner .sp_nav nav ul li a span.sp_only {
  display: inline-block;
}
html body header .header_inner .sp_nav.menu_open {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in;
}
html body header .header_inner .sp_nav.menu_open nav ul li {
  opacity: 1;
  transition: 0.6s;
}
html body header .sub_nav {
  background-color: #fc637e;
  padding: 0.5rem 3rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1199px) {
  html body header .sub_nav {
    padding: 0.5rem 1rem;
  }
}
@media screen and (max-width: 991px) {
  html body header .sub_nav {
    display: none;
  }
}
html body header .sub_nav nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
html body header .sub_nav nav ul li a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  background-color: #fff;
  border-radius: 25px;
  padding: 0.3rem 0.75rem;
  transition: ease 0.4s;
}
html body header .sub_nav nav ul li a:hover {
  color: #fff;
  background-color: #fc637e;
}
html body header .sub_nav nav ul li a:hover span {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  html body header .sub_nav nav ul li a {
    font-size: 0.75rem;
  }
}
html body header .sub_nav nav ul li a span {
  color: #fc637e;
  display: inline-block;
  margin-left: 0.2rem;
  transition: ease 0.4s;
}
html body footer .footer_cta_wrapper {
  background-color: #f7f5f5;
}
html body footer .footer_cta_wrapper .footer_cta {
  background-color: #fff;
  padding: 3rem 0;
  border-radius: 5rem 5rem 0 0;
}
@media screen and (max-width: 767px) {
  html body footer .footer_cta_wrapper .footer_cta {
    border-radius: 11rem 0 0 0;
    margin: 0 -1rem;
    padding: 2rem 0;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner {
    flex-direction: column;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image {
    justify-content: center;
    gap: 0.5rem;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_right {
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_right {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_right {
    width: 200px;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_left {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_left {
    flex: none;
    width: 100px;
    justify-content: center;
    padding-bottom: 0;
    gap: 1.5rem;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_left .footer_parts01 img,
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_left .footer_parts02 img {
  width: 96px;
}
@media screen and (max-width: 991px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_left .footer_parts01 img,
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_image .image_left .footer_parts02 img {
    width: 90px;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text {
    text-align: center;
    padding-top: 0;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text p {
  line-height: 1.5;
  margin-bottom: 1rem;
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text p:last-child {
  margin-bottom: 0;
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text p strong {
  color: #13c98e;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text p strong {
    font-size: 1.5rem;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text .download_link_wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text .download_link_wrapper {
    justify-content: center;
    margin-top: 1.5rem;
  }
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text .download_link_wrapper .download_link a {
  display: inline-block;
}
html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text .download_link_wrapper .download_link a img {
  height: 66px;
}
@media screen and (max-width: 991px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text .download_link_wrapper .download_link a img {
    height: 57px;
  }
}
@media screen and (max-width: 575px) {
  html body footer .footer_cta_wrapper .footer_cta .footer_cta_inner .cta_text .download_link_wrapper .download_link a img {
    height: 45px;
  }
}
html body footer .footer_column_link {
  background-color: #fc637e;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  html body footer .footer_column_link {
    padding: 1.5rem 0;
  }
}
html body footer .footer_column_link .column_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 991px) {
  html body footer .footer_column_link .column_link {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer_column_link .column_link {
    flex-direction: column;
    gap: 1rem;
  }
}
html body footer .footer_column_link .column_link .column_link_text p {
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  html body footer .footer_column_link .column_link .column_link_text p {
    font-size: 1.5rem;
  }
}
html body footer .footer_column_link .column_link .column_link_btn a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 1.25rem 2rem;
  transition: ease 0.4s;
}
html body footer .footer_column_link .column_link .column_link_btn a:hover {
  color: #fff;
  background-color: #fc637e;
}
html body footer .footer_column_link .column_link .column_link_btn a:hover .circle_chevron_right {
  fill: #fff;
}
@media screen and (max-width: 991px) {
  html body footer .footer_column_link .column_link .column_link_btn a {
    font-size: 1.5rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body footer .footer_column_link .column_link .column_link_btn a {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 3rem;
    border-radius: 70px;
  }
}
html body footer .footer_column_link .column_link .column_link_btn a img.logo_symbol {
  width: 75px;
}
@media screen and (max-width: 991px) {
  html body footer .footer_column_link .column_link .column_link_btn a img.logo_symbol {
    width: 63px;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer_column_link .column_link .column_link_btn a #circle_chevron_right {
    width: 40px;
  }
}
html body footer .footer_column_link .column_link .column_link_btn a .circle_chevron_right {
  fill: #fc637e;
  transition: ease 0.4s;
}
html body footer .footer_column_link .sp_circle_chevron_right {
  margin-top: 0.75rem;
  text-align: right;
}
html body footer .footer_column_link .sp_circle_chevron_right a {
  display: inline-block;
}
html body footer .footer_column_link .sp_circle_chevron_right a #circle_chevron_right {
  width: 33px;
  height: 33px;
}
html body footer .footer_column_link .sp_circle_chevron_right a .circle_chevron_right {
  fill: #fff;
  transition: ease 0.4s;
}
html body footer .bg_line_pink {
  height: 10px;
  background-color: #fc637e;
}
html body footer .footer_inner {
  display: flex;
  flex-wrap: wrap;
  padding: 3.5rem 0;
}
@media screen and (max-width: 991px) {
  html body footer .footer_inner {
    padding: 2rem 0;
  }
}
html body footer .footer_inner .footer_logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 5rem;
}
@media screen and (max-width: 1199px) {
  html body footer .footer_inner .footer_logo {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer_inner .footer_logo {
    display: none;
  }
}
html body footer .footer_inner .footer_logo .footer_logo_symbol {
  width: 80px;
}
html body footer .footer_inner .footer_logo span {
  font-size: 2.125rem;
  font-weight: 700;
  display: block;
}
html body footer .footer_inner .footer_link_wrapper {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  padding-left: 5rem;
  border-left: 1px solid #4c4c4c;
}
@media screen and (max-width: 1199px) {
  html body footer .footer_inner .footer_link_wrapper {
    gap: 3rem;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 991px) {
  html body footer .footer_inner .footer_link_wrapper {
    padding: 0 1rem;
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer_inner .footer_link_wrapper {
    gap: 1rem;
  }
}
html body footer .footer_inner .footer_link_wrapper .footer_link {
  flex-basis: calc((100% - 10rem) / 3);
}
@media screen and (max-width: 1199px) {
  html body footer .footer_inner .footer_link_wrapper .footer_link {
    flex-basis: calc((100% - 6rem) / 3);
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer_inner .footer_link_wrapper .footer_link {
    flex-basis: 100%;
  }
}
html body footer .footer_inner .footer_link_wrapper .footer_link ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  html body footer .footer_inner .footer_link_wrapper .footer_link ul {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer_inner .footer_link_wrapper .footer_link ul li {
    border-bottom: 1px dotted #dddddd;
    padding: 0 1rem 1rem;
  }
}
html body footer .footer_inner .footer_link_wrapper .footer_link ul li a {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  position: relative;
  padding-right: 1rem;
}
html body footer .footer_inner .footer_link_wrapper .footer_link ul li a:after {
  content: "▶︎";
  color: #fc637e;
  font-size: 1rem;
  position: absolute;
  top: 0;
  right: 0;
}
html body footer .footer_inner .footer_link_wrapper .footer_link .sub_link {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  html body footer .footer_inner .footer_link_wrapper .footer_link .sub_link {
    margin-top: 2rem;
  }
}
html body footer .footer_inner .footer_link_wrapper .footer_link .sub_link ul {
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  html body footer .footer_inner .footer_link_wrapper .footer_link .sub_link ul {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer_inner .footer_link_wrapper .footer_link .sub_link ul li {
    border-bottom: none;
    padding-bottom: 0;
    text-align: center;
  }
}
html body footer .footer_inner .footer_link_wrapper .footer_link .sub_link ul li a {
  font-size: 0.875rem;
  font-weight: normal;
  padding-right: 0;
}
html body footer .footer_inner .footer_link_wrapper .footer_link .sub_link ul li a:after {
  content: none;
}
@media screen and (max-width: 767px) {
  html body footer .footer_inner .footer_link_wrapper .footer_link .sub_link ul li a {
    display: inline-block;
  }
}
html body footer .copyright {
  text-align: center;
  background-color: #4c4c4c;
  padding: 0.5rem 1rem;
}
html body footer .copyright p {
  color: #fff;
  font-size: 0.625rem;
}
html body main {
  padding-top: 102px;
}
@media screen and (max-width: 1199px) {
  html body main {
    padding-top: 96px;
  }
}
@media screen and (max-width: 991px) {
  html body main {
    padding-top: 0;
  }
}
html body .sub_page {
  background-color: #f7f5f5;
}
html body .subvisual.contents {
  padding: 7rem 0 4rem;
}
@media screen and (max-width: 767px) {
  html body .subvisual.contents {
    padding: 4rem 0 3rem;
  }
}
html body .subvisual.contents .title_wrapper {
  margin-bottom: 0;
}
html body .contents_breadcrumb {
  padding-top: 1.25rem;
}
@media screen and (max-width: 991px) {
  html body .contents_breadcrumb {
    padding-top: 4.5rem;
  }
}
html body .contents_breadcrumb .breadcrumb {
  color: #9a9a9a;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  html body .contents_breadcrumb .breadcrumb {
    font-size: 0.625rem;
  }
}
html body .contents_breadcrumb .breadcrumb a {
  border-bottom: 1px solid #9a9a9a;
}
html body .contents_breadcrumb .breadcrumb span.bread-list {
  padding: 0 0.625rem;
}
html body .contents_breadcrumb .breadcrumb span.bread-nolink {
  padding: 0 0.625rem;
}
html body .contents_breadcrumb .breadcrumb span.current-item {
  padding: 0 0.625rem;
}
html body .pagetop {
  position: fixed;
  z-index: 9;
  right: 1rem;
  bottom: 60px;
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 50%;
  padding-top: 15px;
  background-color: #707070;
  text-align: center;
}
@media screen and (max-width: 575px) {
  html body .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 40px;
    padding-top: 12px;
  }
}
html body .pagetop::after {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #fff transparent;
  z-index: -1;
}
@media screen and (max-width: 575px) {
  html body .pagetop::after {
    top: 8px;
  }
}
html body .pagetop span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  html body .pagetop span {
    font-size: 0.625rem;
  }
}
html body .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  html body .pc {
    display: none;
  }
}
html body .contents {
  color: #4c4c4c;
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .contents {
    padding: 3.75rem 0;
  }
}
html body .contents.contents_404, html body .contents.contents_thanks {
  padding-top: 0;
}
html body .contents.contents_404 .sub_title, html body .contents.contents_thanks .sub_title {
  margin-bottom: 2rem;
}
html body .contents.contents_404 .sub_title h2, html body .contents.contents_thanks .sub_title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  html body .contents.contents_404 .sub_title h2, html body .contents.contents_thanks .sub_title h2 {
    font-size: 1.25rem;
  }
}
html body .contents.contents_404 .contents_text, html body .contents.contents_thanks .contents_text {
  text-align: center;
}
html body .contents.contents_404 .contents_text p, html body .contents.contents_thanks .contents_text p {
  font-weight: 700;
}
html body .contents.contents_supervisor {
  padding-top: 0;
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_title {
  background-color: #fc637e;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 0.75rem 1rem;
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_title h2 {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_inner {
  background-color: #fff;
  padding: 2rem 3.5rem;
}
@media screen and (max-width: 767px) {
  html body .contents.contents_supervisor .supervisor_wrapper .contents_inner {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 575px) {
  html body .contents.contents_supervisor .supervisor_wrapper .contents_inner {
    padding: 1.5rem 1rem;
  }
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 0 1rem 2rem;
  border-bottom: 1px solid #dddddd;
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 0 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor .supervisor_image {
  width: 134px;
  flex-shrink: 0;
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor .supervisor_text {
  flex: 1 1 0%;
  min-width: 0;
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor .supervisor_text .supervisor_name {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 575px) {
  html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor .supervisor_text .supervisor_name {
    text-align: center;
  }
}
html body .contents.contents_supervisor .supervisor_wrapper .contents_inner .supervisor .supervisor_text .supervisor_name h3 {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  html body .contents.contents_cta {
    padding: 2rem 0;
  }
}
html body .contents .title_wrapper {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  html body .contents .title_wrapper {
    margin-bottom: 1.5rem;
  }
}
html body .contents .title_wrapper .title_logo {
  margin-bottom: 1rem;
}
html body .contents .title_wrapper .title_logo img {
  width: 81px;
}
@media screen and (max-width: 767px) {
  html body .contents .title_wrapper .title_logo img {
    width: 63px;
  }
}
html body .contents .title_wrapper .title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  html body .contents .title_wrapper .title {
    font-size: 1.75rem;
  }
}
html body .contents p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  html body .contents p {
    font-size: 0.875rem;
  }
}
html body .contents .more {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  html body .contents .more {
    margin-top: 2.5rem;
  }
}
html body .contents .more a {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  background-color: #ffd249;
  border-radius: 30px;
  border: 1px solid #ffd249;
  padding: 1.25rem 2.5rem;
  transition: ease 0.4s;
}
html body .contents .more a:hover {
  color: #ffd249;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  html body .contents .more a {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}
html body .contents .external_link {
  margin-top: 2rem;
}
html body .contents .external_link a {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
html body .cta.cta01 {
  background-color: #55abee;
  border-radius: 1.25rem;
  padding: 2rem 3rem;
}
@media screen and (max-width: 991px) {
  html body .cta.cta01 {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 575px) {
  html body .cta.cta01 {
    padding: 1.5rem 1rem;
  }
}
html body .cta.cta01 .cta_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  html body .cta.cta01 .cta_inner {
    gap: 1rem;
  }
}
html body .cta.cta01 .cta_inner .cta_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 575px) {
  html body .cta.cta01 .cta_inner .cta_text {
    flex-direction: column;
    gap: 0.75rem;
  }
}
html body .cta.cta01 .cta_inner .cta_text .cta_icon {
  flex-basis: 90px;
}
html body .cta.cta01 .cta_inner .cta_text p {
  color: #fff;
  flex-basis: calc(100% - 90px - 2rem);
}
@media screen and (max-width: 575px) {
  html body .cta.cta01 .cta_inner .cta_text p {
    flex-basis: 100%;
    text-align: center;
  }
}
html body .cta.cta01 .cta_inner .download_link_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
html body .cta.cta01 .cta_inner .download_link_wrapper .download_link a {
  display: inline-block;
}
html body .cta.cta01 .cta_inner .download_link_wrapper .download_link a img {
  height: 66px;
}
@media screen and (max-width: 991px) {
  html body .cta.cta01 .cta_inner .download_link_wrapper .download_link a img {
    height: 57px;
  }
}
@media screen and (max-width: 575px) {
  html body .cta.cta01 .cta_inner .download_link_wrapper .download_link a img {
    height: 45px;
  }
}
html body .border-yellow {
  background: linear-gradient(transparent 70%, #ffe51a 70%);
}
html body .award_list_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem 2rem;
}
@media screen and (max-width: 991px) {
  html body .award_list_wrapper {
    gap: 2rem 1rem;
  }
}
html body .award_list_wrapper .award_list {
  flex-basis: calc((100% - 6rem) / 4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 991px) {
  html body .award_list_wrapper .award_list {
    flex-basis: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 575px) {
  html body .award_list_wrapper .award_list {
    flex-basis: 100%;
  }
}
html body .award_list_wrapper .award_list .award_list_title {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  html body .award_list_wrapper .award_list .award_list_title {
    font-size: 0.875rem;
  }
}
html body .column_list_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem 2rem;
}
@media screen and (max-width: 991px) {
  html body .column_list_wrapper {
    gap: 2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  html body .column_list_wrapper {
    gap: 1.5rem 1rem;
  }
}
html body .column_list_wrapper + .more a {
  color: #fc637e;
  background-color: #fff;
  border: 1px solid #fff;
}
html body .column_list_wrapper + .more a:hover {
  color: #fff;
  background-color: #fc637e;
}
html body .column_list_wrapper .column_list {
  flex-basis: calc((100% - 2rem) / 2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  html body .column_list_wrapper .column_list {
    gap: 1rem;
  }
}
@media screen and (max-width: 575px) {
  html body .column_list_wrapper .column_list {
    flex-basis: 100%;
  }
}
html body .column_list_wrapper .column_list:nth-child(1) {
  flex-basis: 100%;
  gap: 2.5rem;
}
@media screen and (max-width: 991px) {
  html body .column_list_wrapper .column_list:nth-child(1) {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  html body .column_list_wrapper .column_list:nth-child(1) {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  html body .column_list_wrapper .column_list:nth-child(1) {
    flex-direction: column;
    gap: 0.75rem;
  }
}
html body .column_list_wrapper .column_list:nth-child(1) .column_image {
  height: 280px;
}
@media screen and (max-width: 991px) {
  html body .column_list_wrapper .column_list:nth-child(1) .column_image {
    width: 50%;
    height: 240px;
  }
}
@media screen and (max-width: 767px) {
  html body .column_list_wrapper .column_list:nth-child(1) .column_image {
    height: 200px;
  }
}
@media screen and (max-width: 575px) {
  html body .column_list_wrapper .column_list:nth-child(1) .column_image {
    width: 100%;
    height: 240px;
  }
}
html body .column_list_wrapper .column_list:nth-child(1) .column_text a .column_title {
  font-size: 1.75rem;
}
@media screen and (max-width: 991px) {
  html body .column_list_wrapper .column_list:nth-child(1) .column_text a .column_title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  html body .column_list_wrapper .column_list:nth-child(1) .column_text a .column_title {
    font-size: 1.125rem;
  }
}
html body .column_list_wrapper .column_list .column_image {
  width: 50%;
  height: 160px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  html body .column_list_wrapper .column_list .column_image {
    width: 45%;
    height: 140px;
  }
}
@media screen and (max-width: 575px) {
  html body .column_list_wrapper .column_list .column_image {
    width: 30%;
    height: 90px;
  }
}
html body .column_list_wrapper .column_list .column_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
html body .column_list_wrapper .column_list .column_text {
  flex: 1 1 0%;
  min-width: 0;
}
html body .column_list_wrapper .column_list .column_text a .column_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  html body .column_list_wrapper .column_list .column_text a .column_title {
    font-size: 1rem;
  }
}
html body .column_list_wrapper .column_list .column_text .label_wrapper {
  font-size: 0.75rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 575px) {
  html body .column_list_wrapper .column_list .column_text .label_wrapper {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  html body .column_list_wrapper .column_list .column_text .label_wrapper time {
    display: block;
    margin-bottom: 0.3rem;
  }
}
html body .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
html body .wrapper.wrapper_middle {
  max-width: 1100px;
}
html body .wrapper.wrapper_small {
  max-width: 980px;
}
html body img {
  height: auto;
  max-width: 100%;
}
html body .cf::before, html body .cf::after {
  display: table;
  clear: both;
  content: "";
}
html body .alpha {
  transition: opacity 250ms;
}
html body .alpha:hover {
  opacity: 0.75;
}

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